html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,*:after,*:before {
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    background: #000;
}

.header {
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 50%, #16213e 100%);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-signin {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-signin:hover {
    color: #ffd700;
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.btn-signup {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

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

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

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 999;
}

.mobile-nav-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.mobile-nav-menu {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-nav-menu li {
    margin: 30px 0;
    transform: translateY(30px);
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

.mobile-nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-menu li:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-menu li:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-menu li:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav-menu li:nth-child(5) { animation-delay: 0.5s; }
.mobile-nav-menu li:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    padding: 20px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-menu a:hover::before {
    left: 0;
}

.mobile-nav-menu a:hover {
    color: #000;
    transform: scale(1.05);
}

.mobile-auth-btn {
    margin-top: 20px !important;
}

.mobile-auth-btn.signin-mobile {
    background: transparent !important;
    border: 2px solid #ffd700 !important;
    color: #ffd700 !important;
}

.mobile-auth-btn.signin-mobile:hover {
    background: rgba(255, 215, 0, 0.1) !important;
    color: #ffd700 !important;
}

.mobile-auth-btn.signup-mobile {
    background: linear-gradient(45deg, #ffd700, #ffed4e) !important;
    border: 2px solid #ffd700 !important;
    color: #000 !important;
}

.mobile-auth-btn.signup-mobile::before {
    background: linear-gradient(45deg, #ffed4e, #ffd700) !important;
}

/* Floating animation for mobile nav */
.mobile-nav-overlay::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.mobile-nav-overlay::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(147, 112, 219, 0.1), transparent);
    border-radius: 50%;
    bottom: 20%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu,
    .auth-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 70px;
        padding: 0 15px;
    }

    .mobile-nav-menu a {
        font-size: 1.3rem;
        padding: 15px 30px;
    }

    .mobile-auth-btn {
        font-size: 1.1rem !important;
        padding: 12px 25px !important;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
        padding: 0 10px;
    }

    .mobile-nav-menu a {
        font-size: 1.1rem;
        padding: 12px 25px;
        letter-spacing: 1px;
    }

    .mobile-nav-menu li {
        margin: 18px 0;
    }

    .mobile-auth-btn {
        font-size: 1rem !important;
        padding: 10px 20px !important;
        margin-top: 15px !important;
    }
}

.banner {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
    background: url("../images/bg.webp") no-repeat center center;
    background-size: contain;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border-radius: 12px;

    @media (max-width: 768px) {
        background: url("../images/small-bg.webp") no-repeat center center;
        background-size: cover;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: floating 8s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #9370db, #ba55d3);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #ff6347, #ffa500);
    top: 30%;
    right: 25%;
    animation-delay: 4s;
}

.shape:nth-child(4) {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    bottom: 30%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
    }
    50% {
        transform: translateY(-40px) translateX(-5px) rotate(180deg);
    }
    75% {
        transform: translateY(-20px) translateX(-10px) rotate(270deg);
    }
}

.contents {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 800px;
    width: 100%;
}

.welcome-text {
    color: #fff;
    font-weight: bold;
    font-size: clamp(22px, 2vw, 18px);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.main-title {
    color: #ffd700 !important;
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 10px;
    background-size: 200% 200%;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
}

@keyframes goldShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subtitle {
    color: #ffffff;
    font-size: clamp(16px, 3vw, 24px);
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 15px 40px;
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
            0 5px 15px rgba(255, 215, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow:
            0 8px 25px rgba(255, 215, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.small-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(12px, 1.5vw, 14px);
    margin-top: 15px;
    font-style: italic;
}

.cashback-info {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(20, 20, 40, 0.95);
    padding: 12px 25px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 350px;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.crown {
    color: #ffd700;
    font-size: 18px;
}

.cashback-text {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .banner {
        min-height: 350px;
        padding: 30px 15px;
    }

    .cashback-info {
        bottom: -12px;
        padding: 10px 20px;
        gap: 12px;
        max-width: 300px;
    }

    .cashback-text {
        font-size: 12px;
    }

    .crown {
        font-size: 16px;
    }
}

@media (max-width: 480px) {

    .banner {
        min-height: 300px;
        padding: 20px 10px;
    }

    .contents {
        max-width: 100%;
    }

    .cashback-info {
        bottom: -10px;
        padding: 8px 18px;
        gap: 10px;
        max-width: 280px;
    }
}

.footer {
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    padding: 60px 0 0 0;
    border-radius: 12px;
    margin-top: 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section {
    padding: 0 10px;
}

.footer-title {
    color: #ffd700;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    position: relative;
}

.footer-links a:hover {
    color: #ffd700;
    padding-left: 10px;
    transform: translateX(5px);
}

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

.footer-links a:hover::before {
    width: 6px;
}

.footer-bottom {
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 30px 0;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid transparent;
}

.footer-bottom-links a:hover {
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.6;
}

.footer-copyright p {
    margin: 0;
}

/* Footer mobile responsiveness */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0 0;
    }

    .footer-container {
        gap: 30px;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-links a {
        font-size: 15px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .footer-bottom-links a {
        display: inline-block;
    }
}

@media (max-width: 480px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .footer-section {
        padding: 0;
        text-align: center;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-links a {
        font-size: 14px;
        padding: 8px 0;
    }

    .footer-bottom {
        padding: 25px 0;
    }

    .footer-bottom-content {
        padding: 0 15px;
    }
}

.gamification-block {
    max-width: 1180px;
    margin: 20px auto;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 12px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}

.gamification-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(147, 112, 219, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.content-section {
    z-index: 2;
    position: relative;
}

.gamification-block .main-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
            0 5px 15px rgba(255, 215, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow:
            0 8px 25px rgba(255, 215, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
    margin-top: 5px;
}

.feature-content h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.5;
}

.image-section {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Floating decorative elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-star {
    position: absolute;
    color: #ffd700;
    font-size: 16px;
    animation: twinkle 3s ease-in-out infinite;
}

.floating-star:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.floating-star:nth-child(2) {
    top: 60%;
    left: 10%;
    animation-delay: 1s;
}

.floating-star:nth-child(3) {
    top: 30%;
    right: 20%;
    animation-delay: 2s;
}

.floating-star:nth-child(4) {
    bottom: 25%;
    right: 15%;
    animation-delay: 1.5s;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .gamification-block {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
        text-align: center;
    }

    .image-section {
        order: -1;
    }

    .main-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .gamification-block {
        padding: 30px 20px;
        gap: 30px;
    }

    .features {
        gap: 25px;
    }

    .feature {
        gap: 15px;
    }

    .feature-icon {
        font-size: 28px;
    }

    .feature-content h3 {
        font-size: 18px;
    }

    .feature-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .gamification-block {
        padding: 25px 15px;
        gap: 25px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }

    .features {
        gap: 20px;
    }

    .feature {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .feature-icon {
        font-size: 36px;
        margin-top: 0;
    }
}

.content {
    max-width: 1200px;
    margin: 20px auto;
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 50%, #16213e 100%);
    border-radius: 12px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(147, 112, 219, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.content > * {
    position: relative;
    z-index: 2;
}

.content h2 {
    color: #ffd700;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 25px;
    margin-top: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    border-left: 4px solid #ffd700;
    padding-left: 20px;
    line-height: 1.3;
}

.content h2:first-child {
    margin-top: 0;
}

.content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.content p:last-of-type {
    margin-bottom: 30px;
}

.content strong {
    color: #ffd700;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content ul {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.content ul li {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.content ul li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 16px;
    top: 2px;
}

.content ol {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
    counter-reset: ordered-list;
}

.content ol li {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 40px;
    position: relative;
    counter-increment: ordered-list;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.content ol li::before {
    content: counter(ordered-list);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.content table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.content table td,
.content table th {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(14px, 1.6vw, 16px);
}

.content table td:first-child,
.content table th:first-child {
    border-left: 3px solid #ffd700;
}

.content table tr:first-child td {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content table tr:hover {
    background: rgba(255, 215, 0, 0.05);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

.content table tr:last-child td {
    border-bottom: none;
}

/* Table scroll wrapper for mobile */
.table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

/* Responsive Design */
@media (max-width: 768px) {

    .content {
        padding: 40px 25px;
    }

    .content h2 {
        margin-top: 40px;
        padding-left: 15px;
        border-left-width: 3px;
    }

    .content p {
        text-align: left;
    }

    .content ul li {
        padding-left: 25px;
    }

    .content ol li {
        padding-left: 35px;
    }

    .content ol li::before {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .content table {
        min-width: 500px;
    }

    .content table td,
    .content table th {
        padding: 12px 15px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 15px;
    }

    .content h2 {
        margin-top: 30px;
        padding-left: 12px;
    }

    .content ul li {
        padding-left: 22px;
    }

    .content ol li {
        padding-left: 32px;
    }

    .content table {
        min-width: 400px;
    }

    .content table td,
    .content table th {
        padding: 10px 12px;
    }
}