* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #061e22;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 107px;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.top-bar {
    background-color: #0a2b31;
    height: 70px;
    display: flex;
    align-items: center;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    width: 200px;
    height: 40px;
    background-image: url('../img/logo.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
}

.logo-text {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.auth-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    min-width: 90px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-login {
    background: linear-gradient(135deg, #006559, #007a6b);
    color: #36e1b9;
    border: none;
}

.btn-login:hover {
    background: linear-gradient(135deg, #007a6b, #008c7d);
    color: #4df5d1;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(54, 225, 185, 0.2);
}

.btn-login:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(54, 225, 185, 0.15);
}

.btn-join {
    background: linear-gradient(135deg, #E8C464, #f0d478);
    color: #0a2b31;
    border: none;
    font-weight: 800;
}

.btn-join:hover {
    background: linear-gradient(135deg, #f0d478, #f5dc8c);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(232, 196, 100, 0.4);
}

.btn-join:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(232, 196, 100, 0.3);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 196, 100, 0.3);
}

.btn:focus:not(:focus-visible) {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-login:focus {
    box-shadow: 0 0 0 3px rgba(54, 225, 185, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-join:focus {
    box-shadow: 0 0 0 3px rgba(232, 196, 100, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
}

.language-selector {
    display: flex;
    align-items: center;
}

.flag {
    width: 35px;
    height: 25px;
    background-image: url('../img/australia.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 4px;
}

.nav-bar {
    background-color: #051214;
    height: 37px;
    display: flex;
    align-items: center;
}

.main-nav {
    width: 100%;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    text-decoration: none;
    color: #0f8d80;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 0;
    cursor: pointer;
}

.nav-link:hover {
    color: #fed676;
}

.nav-icon {
    font-size: 14px;
    opacity: 0.8;
}

.nav-link:hover .nav-icon {
    opacity: 1;
}

.nav-link.active {
    color: #fed676;
}

.nav-link.active .nav-icon {
    opacity: 1;
}

.main-content {
    margin-top: 107px;
    padding: 30px 0;
}

.game-section {
    margin-bottom: 40px;
    position: relative;
}

.games-container {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
    margin: 0 -50px;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(232, 196, 100, 0.9);
    border: none;
    border-radius: 50%;
    color: #061e22;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-btn:hover {
    background: #E8C464;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(232, 196, 100, 0.4);
}

.scroll-btn-left {
    left: 30px;
}

.scroll-btn-right {
    right: 30px;
}

.scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.scroll-btn:disabled:hover {
    transform: translateY(-50%);
    background: rgba(232, 196, 100, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.section-title {
    color: #E8C464;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.section-count {
    color: #a0a0a0;
    font-size: 16px;
    font-weight: 400;
}

.view-all-btn {
    margin-left: auto;
    background: transparent;
    color: #E8C464;
    border: 1px solid #E8C464;
    padding: 6px 16px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-btn:hover {
    background: #E8C464;
    color: #061e22;
    transform: translateY(-1px);
}

.games-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 20px;
    padding-top: 10px;
    padding-right: 40px;
    padding-left: 40px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask: linear-gradient(to right, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%);
    -webkit-mask: linear-gradient(to right, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%);
    position: relative;
}

.games-grid::-webkit-scrollbar {
    display: none;
}

.game-card {
    background: #0a2b31;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-width: 200px;
    flex-shrink: 0;
}

.game-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.game-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.game-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin: 12px 15px 5px 15px;
    line-height: 1.3;
}

.game-provider {
    color: #a0a0a0;
    font-size: 12px;
    margin: 0 15px 15px 15px;
    font-weight: 400;
}

.cloned-card {
    cursor: pointer;
}


.scroll-dots {
    display: none;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(232, 196, 100, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-dot:hover {
    background: rgba(232, 196, 100, 0.6);
    transform: scale(1.1);
}

.scroll-dot.active {
    background: #E8C464;
    transform: scale(1.3);
}

@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 11px;
    }
    
    .games-grid {
        padding-right: 30px;
        padding-left: 30px;
        mask: linear-gradient(to right, transparent 0%, black 30px, black calc(100% - 30px), transparent 100%);
        -webkit-mask: linear-gradient(to right, transparent 0%, black 30px, black calc(100% - 30px), transparent 100%);
    }
    
    .scroll-btn-left {
        left: 35px;
    }
    
    .scroll-btn-right {
        right: 35px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .scroll-dot {
        width: 7px;
        height: 7px;
    }
    
    .scroll-dot.active {
        transform: scale(1.25);
    }
}

@media (max-width: 768px) {
    .scroll-btn {
        display: none !important;
    }
    
    .games-container {
        padding: 0;
        margin: 0;
    }
    
    .header {
        height: 60px;
    }
    
    .top-bar {
        height: 60px;
    }
    
    .nav-bar {
        display: none;
    }
    
    .top-bar-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        gap: 10px;
    }
    
    .logo {
        width: 160px;
        height: 35px;
        flex-shrink: 0;
    }
    
    .header-right {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 1;
    }
    
    .auth-buttons {
        gap: 12px;
        flex-shrink: 0;
    }
    
    .btn:hover {
        transform: translateY(-0.5px);
    }
    
    .btn {
        padding: 12px 18px;
        font-size: 12px;
        min-width: 80px;
        letter-spacing: 0.6px;
    }
    
    .main-content {
        margin-top: 60px;
        padding: 40px 0;
    }
    
    .games-grid {
        gap: 15px;
        padding-right: 20px;
        padding-left: 20px;
        mask: linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%);
        -webkit-mask: linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%);
    }
    
    .scroll-btn-left {
        left: 35px;
    }
    
    .scroll-btn-right {
        right: 35px;
    }
    
    .game-card {
        min-width: 150px;
    }
    

    .section-title {
        font-size: 20px;
    }

    .section-count {
        font-size: 14px;
    }

    .view-all-btn {
        padding: 5px 14px;
        font-size: 11px;
    }

    .game-image {
        height: 180px;
    }

    .game-title {
        font-size: 13px;
        margin: 10px 12px 4px 12px;
    }

    .game-provider {
        font-size: 11px;
        margin: 0 12px 12px 12px;
    }
}

@media (max-width: 600px) {
    .language-selector {
        display: none;
    }
}

@media (max-width: 480px) {
    .games-container {
        padding: 0;
        margin: 0;
    }
    
    .top-bar-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        gap: 8px;
        padding: 0;
    }
    
    .top-bar {
        height: 60px;
    }
    
    .logo {
        width: 140px;
        height: 30px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 11px;
        min-width: 75px;
        letter-spacing: 0.5px;
    }
    
    .auth-buttons {
        gap: 8px;
    }
    
    .main-content {
        margin-top: 60px;
        padding: 30px 0;
    }

    .games-grid {
        gap: 12px;
        padding-right: 15px;
        padding-left: 15px;
        mask: linear-gradient(to right, transparent 0%, black 15px, black calc(100% - 15px), transparent 100%);
        -webkit-mask: linear-gradient(to right, transparent 0%, black 15px, black calc(100% - 15px), transparent 100%);
    }
    
    .game-card {
        min-width: 130px;
    }

    .section-header {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .view-all-btn {
        margin-left: auto;
    }

    .game-section {
        margin-bottom: 40px;
    }
    
    .scroll-btn {
        display: none !important;
    }
    
    .scroll-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
    }
    
    .scroll-dot {
        width: 6px;
        height: 6px;
    }
    
    .scroll-dot:hover {
        background: rgba(232, 196, 100, 0.3);
        transform: scale(1);
    }
    
    .scroll-dot.active {
        transform: scale(1.2);
    }

    .section-title {
        font-size: 18px;
    }

    .section-count {
        font-size: 12px;
    }

    .view-all-btn {
        padding: 4px 10px;
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    .section-title {
        font-size: 16px;
    }

    .section-count {
        font-size: 11px;
    }

    .view-all-btn {
        padding: 3px 8px;
        font-size: 9px;
    }
}

@media (max-width: 320px) {
    .section-title {
        font-size: 14px;
    }

    .section-count {
        font-size: 10px;
    }

    .view-all-btn {
        padding: 2px 6px;
        font-size: 8px;
    }
}

.info-content {
    padding: 0 30px;
    margin-top: 40px;
}

.info-content .container {
    max-width: 1200px;
    background-color: #0d3e43;
    border-radius: 20px;
    padding: 40px 110px;
}

.info-content h1,
.info-content h2,
.info-content h3 {
    color: #fed676;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.info-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.info-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.info-content p {
    color: #36e1b9;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

@media (max-width: 768px) {
    .info-content {
        padding: 0 10px;
        margin-top: 0px;
    }
    
    .info-content .container {
        padding: 25px;
        border-radius: 15px;
    }
    
    .info-content h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .info-content h2 {
        font-size: 1.5rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .info-content h3 {
        font-size: 1.3rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    .info-content p {
        font-size: 0.9rem;
        text-align: left;
    }
}

.faq-title {
    color: #fed676;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 30px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #061e22;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(232, 196, 100, 0.1);
}

.faq-item:hover {
    border-color: rgba(232, 196, 100, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(232, 196, 100, 0.05), transparent);
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(232, 196, 100, 0.1), transparent);
}

.faq-question span,
.faq-question h3 {
    color: #fed676;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    margin: 0 !important;
    padding: 0 !important;
    border: none;
    background: none;
    display: inline;
    vertical-align: baseline;
}

.faq-icon {
    color: #fed676;
    font-size: 1.5rem;
    font-weight: 300;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(254, 214, 118, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(254, 214, 118, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: rgba(54, 225, 185, 0.03);
    padding: 0 30px;
}

.faq-answer.active {
    max-height: 300px;
    padding: 10px 30px 25px 30px;
}

.faq-answer p {
    color: #36e1b9;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.5rem;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    
    .faq-question {
        padding: 20px;
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }
    
    .faq-question span,
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .faq-icon {
        margin-left: 0;
        margin-top: 2px;
        width: 25px;
        height: 25px;
        font-size: 1.3rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer.active {
        max-height: 400px;
        padding: 10px 20px 20px 20px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.3rem;
        margin-top: 20px;
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question span,
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-icon {
        width: 22px;
        height: 22px;
        font-size: 1.2rem;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-answer.active {
        padding: 10px 15px 15px 15px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
}

.info-content ol,
.faq-answer ol {
    margin: 20px 0;
    padding-left: 0;
    counter-reset: list-counter;
    list-style: none;
}

.info-content ol li,
.faq-answer ol li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 45px;
    color: #36e1b9;
    font-size: 1rem;
    line-height: 1.7;
    counter-increment: list-counter;
}

.info-content ol li::before,
.faq-answer ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #E8C464, #f0d478);
    color: #061e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(232, 196, 100, 0.3);
}

.info-content ol li strong,
.faq-answer ol li strong {
    color: #fed676;
    font-weight: 600;
}

.info-content ul,
.faq-answer ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.info-content ul li,
.faq-answer ul li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 35px;
    color: #36e1b9;
    font-size: 1rem;
    line-height: 1.7;
}

.info-content ul li::before,
.faq-answer ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #E8C464, #f0d478);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(232, 196, 100, 0.2);
}

.info-content ul li strong,
.faq-answer ul li strong {
    color: #fed676;
    font-weight: 600;
}

.info-content .table-wrapper,
.faq-answer .table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 12px;
    background: rgba(6, 30, 34, 0.8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    scrollbar-width: thin;
    scrollbar-color: #E8C464 rgba(232, 196, 100, 0.1);
}

.info-content .table-wrapper::-webkit-scrollbar,
.faq-answer .table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.info-content .table-wrapper::-webkit-scrollbar-track,
.faq-answer .table-wrapper::-webkit-scrollbar-track {
    background: rgba(232, 196, 100, 0.1);
    border-radius: 4px;
}

.info-content .table-wrapper::-webkit-scrollbar-thumb,
.faq-answer .table-wrapper::-webkit-scrollbar-thumb {
    background: #E8C464;
    border-radius: 4px;
}

.info-content .table-wrapper::-webkit-scrollbar-thumb:hover,
.faq-answer .table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #f0d478;
}

.info-content table,
.faq-answer table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
}

.info-content table th,
.faq-answer table th {
    background: linear-gradient(135deg, #E8C464, #f0d478);
    color: #061e22;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.info-content table th:first-child,
.faq-answer table th:first-child {
    border-top-left-radius: 8px;
}

.info-content table th:last-child,
.faq-answer table th:last-child {
    border-top-right-radius: 8px;
}

.info-content table td,
.faq-answer table td {
    padding: 12px 20px;
    color: #36e1b9;
    font-size: 0.9rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(232, 196, 100, 0.1);
    transition: background-color 0.3s ease;
}

.info-content table tr:hover td,
.faq-answer table tr:hover td {
    background: rgba(232, 196, 100, 0.05);
}

.info-content table tr:last-child td,
.faq-answer table tr:last-child td {
    border-bottom: none;
}

.info-content table tr:last-child td:first-child,
.faq-answer table tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

.info-content table tr:last-child td:last-child,
.faq-answer table tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

.info-content table strong,
.faq-answer table strong {
    color: #fed676;
    font-weight: 600;
}

@media (max-width: 768px) {
    .info-content ol li,
    .faq-answer ol li {
        padding-left: 40px;
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .info-content ol li::before,
    .faq-answer ol li::before {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .info-content ul li,
    .faq-answer ul li {
        padding-left: 30px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .info-content ul li::before,
    .faq-answer ul li::before {
        top: 10px;
        width: 6px;
        height: 6px;
    }
    
    .info-content table,
    .faq-answer table {
        min-width: 500px;
    }
    
    .info-content table th,
    .faq-answer table th {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    
    .info-content table td,
    .faq-answer table td {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .info-content ol li,
    .faq-answer ol li {
        padding-left: 35px;
        font-size: 0.85rem;
    }
    
    .info-content ol li::before,
    .faq-answer ol li::before {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }
    
    .info-content ul li,
    .faq-answer ul li {
        padding-left: 25px;
        font-size: 0.85rem;
    }
    
    .info-content table,
    .faq-answer table {
        min-width: 400px;
    }
    
    .info-content table th,
    .faq-answer table th {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .info-content table td,
    .faq-answer table td {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

.author-section {
    padding: 40px 30px;
    margin-top: 20px;
}

.author-section .container {
    max-width: 1200px;
    background: linear-gradient(135deg, #0d3e43, #0a2b31);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(232, 196, 100, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.author-card {
    display: flex;
    align-items: center;
    gap: 40px;
}

.author-avatar {
    flex-shrink: 0;
}

.avatar-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fed676;
}

.author-info {
    flex: 1;
}

.author-name {
    color: #fed676;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.author-title {
    color: #36e1b9;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-description {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

.author-social {
    display: flex;
    align-items: center;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fed676;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 20px;
    border: 2px solid #fed676;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(254, 214, 118, 0.05);
}

.linkedin-link:hover {
    background: #fed676;
    color: #061e22;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 196, 100, 0.3);
}

.linkedin-link svg {
    transition: transform 0.3s ease;
}

.linkedin-link:hover svg {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .author-section {
        padding: 30px 10px;
        margin-top: 15px;
    }
    
    .author-section .container {
        padding: 30px 25px;
        border-radius: 15px;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .avatar-image {
        width: 100px;
        height: 100px;
    }
    
    .author-name {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }
    
    .author-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .author-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .linkedin-link {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .author-section {
        padding: 25px 10px;
    }
    
    .author-section .container {
        padding: 25px 20px;
    }
    
    .author-card {
        gap: 20px;
    }
    
    .avatar-image {
        width: 80px;
        height: 80px;
    }
    
    .author-name {
        font-size: 1.4rem;
    }
    
    .author-title {
        font-size: 0.9rem;
    }
    
    .author-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .linkedin-link {
        font-size: 0.85rem;
        padding: 8px 14px;
        gap: 8px;
    }
}

.footer {
    background-color: #051214;
    margin-top: 60px;
    padding: 50px 0 30px;
    border-top: 1px solid rgba(232, 196, 100, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 120px;
    margin-bottom: 40px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: 250px;
    height: 50px;
    background-image: url('../img/logo.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
}

.footer-email {
    color: #36e1b9;
    font-size: 16px;
    font-weight: 500;
}

.footer-payments {
    border-top: 1px solid rgba(232, 196, 100, 0.1);
    border-bottom: 1px solid rgba(232, 196, 100, 0.1);
    padding: 30px 0;
    margin: 30px 0;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.payment-icon {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-column-title {
    color: #E8C464;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #36e1b9;
    transform: translateX(5px);
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #E8C464;
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(232, 196, 100, 0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-18 {
    background: linear-gradient(135deg, #E8C464, #f0d478);
    color: #061e22;
    font-weight: 800;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 32px;
}

.badge-text {
    color: #36e1b9;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.badge-text a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.badge-text a:hover {
    color: #E8C464;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.badge-text:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -12px;
    color: #a0a0a0;
}

.footer-legal-text {
    max-width: 900px;
}

.footer-legal-text p {
    color: #a0a0a0;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}

.footer-privacy {
    text-align: center;
}

.footer-privacy .footer-link {
    color: #36e1b9;
    font-size: 13px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-privacy .footer-link:hover {
    color: #E8C464;
    transform: none;
}

.footer-privacy .footer-link::before {
    display: none;
}

@media (max-width: 1024px) {
    .footer-main {
        gap: 40px;
    }
    
    .footer-links {
        gap: 30px;
    }
    
    .footer-logo {
        width: 220px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 25px;
        margin-top: 40px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }
    
    .footer-logo-section {
        align-items: center;
        text-align: center;
    }
    
    .footer-payments {
        padding: 25px 0;
        margin: 25px 0;
    }
    
    .footer-logo {
        width: 200px;
        height: 40px;
        background-position: center;
    }
    
    .footer-links {
        gap: 30px;
        text-align: center;
    }
    
    .footer-column {
        align-items: center;
    }
    
    .footer-badges {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-legal-text {
        text-align: center;
    }
    
    .footer-link:hover {
        transform: none;
    }
    
    .footer-link::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-main {
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-column {
        align-items: center;
    }
    
    .footer-logo {
        width: 180px;
        height: 36px;
    }
    
    .footer-payments {
        padding: 20px 0;
        margin: 20px 0;
    }
    
    .payment-methods {
        justify-content: center;
        gap: 12px;
    }
    
    .payment-icon {
        height: 25px;
    }
    
    .footer-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .badge-text:not(:last-child)::after {
        display: none;
    }
    
    .footer-legal-text p {
        font-size: 11px;
    }
    
    .footer-bottom {
        gap: 20px;
    }
}

blockquote {
    background: linear-gradient(135deg, rgba(232, 196, 100, 0.08), rgba(54, 225, 185, 0.05));
    border-left: 4px solid #E8C464;
    margin: 25px 0;
    padding: 20px 25px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-style: italic;
    color: #36e1b9;
    font-size: 1.1rem;
    line-height: 1.7;
}


blockquote p {
    margin: 0;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

blockquote p:not(:last-child) {
    margin-bottom: 15px;
}

blockquote cite {
    display: block;
    text-align: right;
    margin-top: 15px;
    font-style: normal;
    color: #fed676;
    font-size: 0.9rem;
    font-weight: 600;
}

blockquote cite::before {
    content: '— ';
    color: #E8C464;
}

@media (max-width: 768px) {
    blockquote {
        margin: 20px 0;
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    
    blockquote cite {
        font-size: 0.85rem;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    blockquote {
        margin: 15px 0;
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    
    blockquote cite {
        font-size: 0.8rem;
        margin-top: 10px;
    }
}

.info-content a,
.faq-answer a {
    color: #E8C464;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.info-content a:hover,
.faq-answer a:hover {
    color: #fed676;
}

.article-img {
    max-width: 800px;
    max-height: 500px;
    width: auto;
    height: auto;
    border-radius: 12px;
    margin: 25px auto;
    display: block;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .article-img {
        max-width: 100%;
        max-height: 400px;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .article-img {
        max-width: 100%;
        max-height: 300px;
        margin: 15px auto;
        border-radius: 8px;
    }
}