/* 
    by Fozzy  
    https://t.me/fozzy_dev  
*/

body {
    font-family: 'Rubik', sans-serif;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a) !important;
    color: white;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
} 
 
.container {
    width: 100%;
    flex-grow: 1;
}

.header {
    background-color: rgba(26, 26, 26, 0.9);
    padding: 0 10px;
    border-bottom: 1px #ff5733 solid;
}

.logo-text {
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(90deg, #FF5733, #FFC300);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    user-select: none;
    text-transform: uppercase;
}

.icon-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.icon-buttons .btn {
    background-color: #444;
    border: none;
    padding: 6px 12px;
    font-size: 16px;
    color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.icon-buttons .btn:hover {
    background-color: #ff5733;
}

@media (max-width: 991.98px) {
    .icon-buttons {
        justify-content: center !important;
    }
    .icon-buttons .btn {
        width: 100% !important;
        max-width: none !important;
        margin: 5px 0 !important;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        box-sizing: border-box;
        justify-content: center;
        border-radius: 5px;
    }
    .icon-buttons .btn.ms-lg-2 {
        margin-left: 0 !important;
    }
    .navbar-nav {
        width: 100%;
    }
}

.navbar-toggler {
    border-radius: 5px;
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.collapse:not(.show) {
    display: none;
}

@media (max-width: 575.98px) {
    .logo-text {
        font-size: 32px;
    }
}

.text-theme {
    color: #ff5733;
}

.table-dark-custom {
    color: #aaa;
    background-color: transparent;
    font-size: 15px;
    width: 100%;
}

.table-dark-custom th,
.table-dark-custom td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-dark-custom thead th {
    background-color: #444;
    color: #fff;
    text-align: left;
    font-weight: 600;
}

.table-dark-custom tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.text-info {
    color: #03a9f4;
}

.text-success {
    color: #4caf50;
}

.features-block {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: nowrap;
}

.feature-item {
    flex: 0 0 calc((100% - 40px) / 3);
    background: #333;
    border-radius: 5px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.feature-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ff5733;
}

.feature-item p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .features-block {
        flex-wrap: wrap;
    }
    .feature-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.project-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 25px;
    background-color: #ff5733;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.project-btn:hover {
    background-color: #45a045;
    text-decoration: none;
}

.project-card {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    align-items: center;
    margin-bottom: 20px;
    flex-direction: row;
}

.project-image {
    max-width: 250px;
    margin: 0 auto;
    overflow: hidden;
}

@keyframes bounceVertical {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-13px);
    }
}

.animated-bounce {
    animation: bounceVertical 4s ease-in-out infinite;
    display: block;
    width: 100%;
}

.project-text {
    flex: 1;
}

.project-text h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #ff5733;
}

.project-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 10px;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.advert-banner {
    width: 470px;
    height: 62px;
    background-color: #555;
    border: 1px solid #ff5733;
    position: relative;
    overflow: hidden;
}

.advert-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plus-button {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ff5733;
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 0 5px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.plus-button:hover {
    background-color: #c0392b;
}

@media (max-width: 767px) {
    .advert-banner {
        width: 100%;
        max-width: 350px;
        margin: auto;
        height: auto;
    }

    .advert-banner img {
        height: auto;
    }
}

.btn-theme.active,
.btn-danger.active {
    background-color: #ff5733;
}

.item {
    background-color: #333;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-title {
    font-size: 1.0em;
    color: #ff5733;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    width: 80%;
}

.favicon-container {
    width: 24px;
    height: 24px;
    overflow: hidden;
    background: #555;
    border-radius: 5px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favicon {
    width: 60%;
    height: 60%;
    object-fit: cover;
}

.title-and-small {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-title-text {
    font-size: 1.2em;
    color: inherit;
}

.text-small {
    font-size: 0.7em;
    color: #bbb;
    margin-top: 5px;
}

.item button {
    background-color: #ff5733;
    color: white;
    border: none;
    padding: 5px 20px;
    border-radius: 5px;
    //margin-left: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.item button:hover {
    background-color: #c0392b;
}

button:hover {
    filter: brightness(80%);
}

.footer {
    border-top: 1px #ff5733 solid;
    background-color: rgba(26, 26, 26, 0.9);
    padding: 20px;
    text-align: center;
    color: #777;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer p {
    margin: 0;
}

.btn-theme {
    background-color: #FF5733;
    border-color: #FF5733;
    color: #fff;
    transition: 0.3s;
}

.btn-theme:hover {
    background-color: #e14e2b;
    border-color: #e14e2b;
    color: #fff;
}

.statistics-container {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}

.stat-item {
    background-color: #444;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    color: #aaa;
    flex: 1 1 0;
    min-width: 0;
    max-width: 25%;
    box-sizing: border-box;
}

.stat-item img {
    width: 40px;
    height: 40px;
}

.stat-item h4 {
    margin-top: 10px;
    font-weight: 300;
    color: #fff;
}

.stat-item p {
    font-size: 14px;
    color: #aaa;
    margin: 0 5px;
}

@media (max-width: 767px) {
    .statistics-container {
        flex-wrap: wrap;
        gap: 15px;
    }
    .stat-item {
        max-width: 48%;
        min-width: auto;
    }
}

.dark-pagination .page-item .page-link {
    background-color: #2b2b2b;
    color: #fff;
    border: 1px solid #444;
    margin: 0 5px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.dark-pagination .page-item .page-link:hover {
    background-color: #444;
    color: #fff;
}

.dark-pagination .page-item.active .page-link {
    background-color: #ffb347;
    color: #000;
    font-weight: bold;
    border-color: #ffb347;
}

.review-card {
    background: linear-gradient(to right, #1c1c1e, #2c2c2e);
    border: 1px solid #444;
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    transition: 0.3s ease;
}

.review-img {
    max-height: 250px;
    border-radius: 10px;
    border: 1px solid #555;
}

.form-dark {
    background: #1e1e1e;
    color: #fff;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
}

.form-dark textarea,
.form-dark input[type="file"] {
    background-color: #2d2d2d;
    color: #fff;
    border: 1px solid #444;
}

.form-dark input[type="submit"] {
    background-color: #ffb347;
    color: #000;
    font-weight: bold;
}

.form-dark input[type="submit"]:hover {
    background-color: #ffc266;
}

.contact-card {
    background: linear-gradient(to right, #1c1c1e, #2c2c2e);
    border: 1px solid #444;
    border-radius: 12px;
    color: #fff;
}
 
.contact-label {
    font-size: 0.9rem;
}

.contact-link {
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.form-container {
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
}

.registration-header {
    font-size: 24px;
    color: #ff5733;
    margin-bottom: 10px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
}

.form-control {
    background-color: #444;
    color: white;
    border: 1px solid #555;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
}

.form-control:focus {
    border-color: #ff5733;
    outline: none;
}

.form-control::placeholder {
    color: white;
}

.form-control:focus::placeholder {
    color: #aaa;
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    color: #aaa;
}

.form-check-label {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password {
    font-size: 14px;
    color: #aaa;
    text-decoration: none;
    float: right;
}

.forgot-password:hover {
    color: #ff5733;
}

@media (max-width: 768px) {
    .item {
        padding: 15px;
    }

    .form-control {
        font-size: 14px;
        padding: 8px;
    }

    .btn-success {
        font-size: 14px;
        padding: 10px;
    }
}
