* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --bg-dark: #0a0e27;
    --bg-darker: #050810;
    --text-primary: #e0e0ff;
    --text-muted: #8892b0;
    --accent-purple: #7c3aed;
    --accent-blue: #00d4ff;
    --accent-green: #10b981;
    --accent-pink: #ec4899;
    --accent-orange: #f97316;
    --border-color: #1e2749;
    --card-bg: #0f1629
}

body {
    background: linear-gradient(135deg, #0a0e27 0%, #1a0e3a 25%, #050810 50%, #1a0e3a 75%, #0a0e27 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgb(236 72 153 / .05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: pulse 8s ease-in-out infinite
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgb(124 58 237 / .1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgb(0 212 255 / .1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1
}

.tint-overlay {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(60% 60% at 90% 90%, rgb(10 10 30 / .6) 0%, #fff0 70%);
    pointer-events: none;
    z-index: 2
}

body>.readability-tint {
    display: none
}

body .tint-overlay {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(60% 60% at 90% 90%, rgb(10 10 30 / .6) 0%, #fff0 70%);
    pointer-events: none;
    z-index: 2
}

nav,
main,
section,
footer,
.container,
.hero,
.features,
.stats,
.faq,
.about,
.newsletter {
    position: relative;
    z-index: 3
}

@keyframes pulse {

    0%,
    100% {
        opacity: .5
    }

    50% {
        opacity: 1
    }
}

:root {
    --sammy-scale: 0.70
}

@media (max-width:480px) {
    .tint-overlay {
        background: radial-gradient(65% 65% at 50% 70%, rgb(10 10 30 / .35) 0%, #fff0 70%)
    }
}

@media (min-aspect-ratio:21/9) {
    :root {
        --sammy-scale: 0.62
    }
}

.tint-overlay {
    z-index: 2
}

nav,
main,
section,
footer,
.container,
.hero,
.features,
.stats,
.faq,
.about,
.newsletter {
    z-index: 3;
    position: relative
}

@media (max-width:768px) {
    .background-image {
        display: none
    }
}

@media (max-width:1200px) {
    .background-image {
        width: 350px;
        height: 350px
    }
}

@media (max-width:768px) {
    .background-image {
        display: none
    }
}

nav {
    background: rgb(15 22 41 / .9);
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, var(--accent-purple), var(--accent-blue), var(--accent-pink)) 1;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgb(0 212 255 / .1)
}

nav .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .5rem;
    animation: glow 2s ease-in-out infinite
}

@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 10px rgb(0 212 255 / .3)
    }

    50% {
        text-shadow: 0 0 20px rgb(124 58 237 / .5)
    }
}

.logo:hover {
    transform: scale(1.05)
}

nav .nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center
}

nav .nav-links li a {
    font-size: 23px;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    transition: width 0.3s
}

.nav-links a:hover::after {
    width: 100%
}

.nav-links a:hover {
    color: var(--accent-blue);
    text-shadow: 0 0 10px rgb(0 212 255 / .5)
}

.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1
}

.hero-content {
    animation: fadeInDown 0.8s ease-out
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple), var(--accent-pink), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite
}

@keyframes titleGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgb(0 212 255 / .5))
    }

    50% {
        filter: drop-shadow(0 0 20px rgb(124 58 237 / .8))
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 700
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    background: linear-gradient(135deg, rgb(124 58 237 / .1), rgb(0 212 255 / .1));
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px)
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem
}

.btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / .2), transparent);
    transition: left 0.5s
}

.btn:hover::before {
    left: 100%
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: #fff;
    box-shadow: 0 10px 40px rgb(0 212 255 / .4);
    border: 2px solid var(--accent-blue)
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgb(0 212 255 / .6);
    border-color: var(--accent-pink);
    text-shadow: 0 0 10px rgb(236 72 153 / .5)
}

.stats {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgb(124 58 237 / .15), rgb(0 212 255 / .1));
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--accent-blue), var(--accent-purple)) 1;
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgb(0 212 255 / .2);
    position: relative;
    z-index: 1
}

.stat-item {
    padding: 2rem 1rem;
    border-radius: 12px;
    background: rgb(124 58 237 / .1);
    transition: all 0.3s;
    border: 1px solid var(--border-color)
}

.stat-item:hover {
    background: linear-gradient(135deg, rgb(124 58 237 / .2), rgb(0 212 255 / .15));
    border-color: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgb(0 212 255 / .3)
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    margin-bottom: .5rem
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem
}

.features {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    animation: titlePulse 2s ease-in-out infinite
}

@keyframes titlePulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.02)
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem
}

.feature-card {
    background: linear-gradient(135deg, rgb(15 22 41 / .8), rgb(124 58 237 / .1));
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgb(0 212 255 / .1), transparent);
    opacity: 0;
    transition: opacity 0.3s
}

.feature-card:hover::before {
    opacity: 1
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.feature-card:hover {
    background: linear-gradient(135deg, rgb(15 22 41 / .95), rgb(124 58 237 / .2));
    border-color: var(--accent-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(0 212 255 / .3)
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
    animation: bounce 2s ease-in-out infinite
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .8rem;
    color: var(--text-primary)
}

.feature-text {
    color: var(--text-muted);
    line-height: 1.7
}

.tips {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem
}

.tip-card {
    background: linear-gradient(135deg, rgb(236 72 153 / .1), rgb(249 115 22 / .1));
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--accent-pink), var(--accent-orange)) 1;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden
}

.tip-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(236 72 153 / .2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s
}

.tip-card:hover::before {
    opacity: 1
}

.tip-card:hover {
    border-image: linear-gradient(135deg, var(--accent-orange), var(--accent-pink)) 1;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(249 115 22 / .3)
}

.tip-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    margin-bottom: .5rem
}

.tip-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .8rem;
    color: var(--text-primary)
}

.tip-text {
    color: var(--text-muted);
    line-height: 1.7
}

.faq {
    max-width: 900px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1
}

.faq-item {
    background: linear-gradient(135deg, rgb(124 58 237 / .1), rgb(0 212 255 / .05));
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s
}

.faq-item:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgb(0 212 255 / .2)
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    user-select: none;
    background: linear-gradient(135deg, rgb(124 58 237 / .1), rgb(0 212 255 / .05))
}

.faq-question:hover {
    background: linear-gradient(135deg, rgb(124 58 237 / .2), rgb(0 212 255 / .1))
}

.faq-icon {
    color: var(--accent-blue);
    transition: transform 0.3s
}

.faq-item.active .faq-icon {
    transform: rotate(180deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
    color: var(--text-muted)
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem
}

.about {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgb(124 58 237 / .15), rgb(0 212 255 / .1));
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--accent-blue), var(--accent-purple)) 1;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px)
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8
}

.about-features {
    list-style: none;
    margin-top: 1.5rem
}

.about-features li {
    padding: .8rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: .8rem;
    transition: all 0.3s
}

.about-features li:hover {
    color: var(--accent-blue);
    padding-left: 1rem
}

.about-features li:before {
    content: "✓";
    color: var(--accent-green);
    font-weight: 700;
    font-size: 1.2rem
}

.contact {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue), var(--accent-pink));
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgb(0 212 255 / .3);
    position: relative;
    z-index: 1;
    overflow: hidden
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(255 255 255 / .1) 0%, transparent 70%);
    animation: rotate 20s linear infinite
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.contact-title {
    font-size: 2rem;
    margin-bottom: .75rem;
    color: #fff;
    position: relative;
    z-index: 2
}

.contact-subtitle {
    color: rgb(255 255 255 / .9);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2
}

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    position: relative;
    z-index: 2
}

.contact-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem
}

.contact-form input,
.contact-form textarea {
    padding: .9rem 1rem;
    border-radius: 10px;
    border: 2px solid rgb(255 255 255 / .25);
    background: rgb(0 0 0 / .15);
    color: #fff;
    font-family: 'Rajdhani', sans-serif
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgb(255 255 255 / .7)
}

.contact-form button {
    justify-self: center
}

.contact-address {
    margin-top: 1rem;
    color: rgb(255 255 255 / .9);
    font-style: normal;
    position: relative;
    z-index: 2
}

.contact-address a {
    color: #fff;
    text-decoration: underline
}

@media (max-width:768px) {
    .contact-form .row {
        grid-template-columns: 1fr
    }
}

#toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(20px);
    min-width: 220px;
    max-width: 90vw;
    padding: 12px 16px;
    border-radius: 10px;
    color: #0a0e27;
    background: #c9f1ff;
    box-shadow: 0 12px 30px rgb(0 0 0 / .25);
    font-weight: 700;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity .22s ease, transform .22s ease
}

#toast.success {
    background: #bbf7d0;
    color: #052e1a
}

#toast.error {
    background: #fecaca;
    color: #3f0b0b
}

#toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}

@media (prefers-reduced-motion:reduce) {
    #toast {
        transition: none
    }
}

footer {
    background: rgb(15 22 41 / .95);
    border-top: 2px solid;
    border-image: linear-gradient(90deg, var(--accent-purple), var(--accent-blue), var(--accent-pink)) 1;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-muted);
    margin-top: 3rem;
    position: relative;
    z-index: 1
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s
}

.footer-links a:hover {
    color: var(--accent-blue);
    text-shadow: 0 0 10px rgb(0 212 255 / .5)
}

@media (max-width:768px) {
    .hero-title {
        font-size: 2rem
    }

    .hero-subtitle {
        font-size: 1.2rem
    }

    .cta-buttons {
        flex-direction: column
    }

    .btn {
        width: 100%
    }

    .about-content {
        grid-template-columns: 1fr
    }

    .nav-links {
        display: flex;
        gap: 2rem;
        margin: 0;
        align-items: center
    }

    .stats {
        grid-template-columns: 1fr
    }

    .newsletter-form {
        flex-direction: column
    }

    .section-title {
        font-size: 2rem
    }
}

:root {
    --sammy-scale: 0.80
}

.background-image {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw;
    height: 100vh;
    width: 100svw;
    height: 100svh;
    background-image: url(/Games/steal%20a%20brainrot/sammy/Sammy.jpg) !important;
    background-repeat: no-repeat !important;
    background-position: 50% 50% !important;
    background-size: calc(100vmin * var(--sammy-scale)) !important;
    opacity: .18;
    pointer-events: none;
    z-index: 0
}

@media (max-width:1024px) {
    .background-image {
        display: block !important
    }
}

@media (max-width:360px) {
    :root {
        --sammy-scale: 0.95
    }
}

@media (min-width:361px) and (max-width:480px) {
    :root {
        --sammy-scale: 0.92
    }
}

@media (min-width:481px) and (max-width:599px) {
    :root {
        --sammy-scale: 0.90
    }
}

@media (min-width:600px) and (max-width:767px) {
    :root {
        --sammy-scale: 0.88
    }
}

@media (min-width:768px) and (max-width:1023px) {
    :root {
        --sammy-scale: 0.84
    }
}

@media (min-width:1024px) and (max-width:1439px) {
    :root {
        --sammy-scale: 0.80
    }
}

@media (min-width:1440px) and (max-width:1919px) {
    :root {
        --sammy-scale: 0.76
    }
}

@media (min-width:1920px) {
    :root {
        --sammy-scale: 0.72
    }
}

@media (min-aspect-ratio:21/9) {
    :root {
        --sammy-scale: 0.68
    }
}

.navbar-premium {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgb(15 22 41 / .98) 0%, rgb(10 14 39 / .98) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #fff0;
    border-image: linear-gradient(90deg, var(--accent-purple), var(--accent-blue), var(--accent-pink)) 1;
    box-shadow: 0 20px 60px rgb(0 212 255 / .2), inset 0 1px 0 rgb(255 255 255 / .1);
    transition: all 0.3s ease
}

.navbar-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    box-shadow: 0 0 20px var(--accent-blue)
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: .8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    gap: 2rem
}

.logo-premium {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 900;
    position: relative;
    padding: .4rem .8rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgb(124 58 237 / .2), rgb(0 212 255 / .2));
    border: 1px solid rgb(0 212 255 / .3);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0
}

.logo-premium:hover {
    background: linear-gradient(135deg, rgb(124 58 237 / .3), rgb(0 212 255 / .3));
    border-color: var(--accent-pink);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgb(236 72 153 / .5)
}

.logo-icon {
    font-size: 1.4rem
}

.logo-text {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    font-size: 1.1rem
}

.logo-badge {
    font-size: .6rem;
    padding: .2rem .4rem;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
    color: #fff;
    border-radius: 12px;
    font-weight: 700
}

.nav-menu-container {
    flex: 1;
    display: flex;
    justify-content: center
}

.nav-links-premium {
    display: flex;
    list-style: none;
    gap: .3rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center
}

.nav-item {
    position: relative
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .6rem .9rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-size: .85rem;
    border: 1px solid #fff0
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(0 212 255 / .2), rgb(124 58 237 / .2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1
}

.nav-link:hover::before {
    opacity: 1
}

.nav-link:hover {
    color: var(--accent-blue);
    text-shadow: 0 0 10px rgb(0 212 255 / .6);
    transform: translateY(-2px);
    border-color: var(--accent-blue)
}

.nav-link.active {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: #fff;
    box-shadow: 0 8px 20px rgb(0 212 255 / .4);
    text-shadow: 0 0 10px rgb(0 0 0 / .3);
    border-color: #fff0
}

.nav-badge {
    font-size: .55rem;
    padding: .15rem .35rem;
    background: rgb(236 72 153 / .8);
    color: #fff;
    border-radius: 10px;
    font-weight: 700
}

.nav-link i {
    font-size: .95rem
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .6rem;
    flex-shrink: 0
}

.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    padding: .6rem 1rem;
    background: linear-gradient(135deg, rgb(0 212 255 / .2), rgb(124 58 237 / .2));
    border: 2px solid var(--accent-blue);
    border-radius: 6px;
    color: var(--accent-blue);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: .8rem;
    white-space: nowrap;
    min-height: 38px
}

.nav-icon-btn:hover {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: #fff;
    border-color: var(--accent-pink);
    box-shadow: 0 8px 20px rgb(0 212 255 / .4);
    transform: translateY(-2px)
}

.nav-icon-btn i {
    font-size: 1rem
}

.game-mode-btn.active {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange)) !important;
    border-color: var(--accent-orange) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgb(236 72 153 / .5) !important
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
    padding: .5rem
}

.hamburger-menu span {
    width: 22px;
    height: 2.5px;
    background: var(--accent-blue);
    border-radius: 2px;
    transition: all 0.3s ease
}

.hamburger-menu:hover span {
    background: var(--accent-pink)
}

.navbar-border {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), var(--accent-purple), transparent);
    width: 100%
}

@media (max-width:1024px) {
    .navbar-container {
        gap: 1rem;
        padding: .8rem 1.5rem
    }

    .nav-link {
        padding: .5rem .7rem;
        font-size: .75rem
    }

    .nav-icon-btn {
        padding: .5rem .8rem;
        font-size: .7rem
    }

    .logo-premium {
        font-size: 1rem
    }

    .logo-text {
        font-size: .9rem
    }
}

@media (max-width:768px) {
    .navbar-container {
        padding: .7rem 1rem;
        gap: .8rem
    }

    .hamburger-menu {
        display: flex
    }

    .nav-menu-container {
        position: fixed;
        top: 58px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgb(15 22 41 / .99), rgb(10 14 39 / .99));
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
        flex: none
    }

    .nav-menu-container.active {
        max-height: 450px;
        overflow-y: auto
    }

    .nav-links-premium {
        flex-direction: column;
        gap: 0;
        padding: .5rem 0;
        width: 100%
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: .8rem 1.5rem;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--border-color);
        font-size: .9rem
    }

    .nav-link:hover {
        padding-left: 2rem
    }

    .logo-premium {
        font-size: .95rem;
        padding: .3rem .6rem;
        gap: .3rem
    }

    .logo-text {
        font-size: .9rem
    }

    .logo-icon {
        font-size: 1.1rem
    }

    .logo-badge {
        font-size: .5rem;
        padding: .15rem .3rem
    }

    .nav-right {
        gap: .4rem
    }

    .nav-icon-btn {
        padding: .5rem .7rem;
        font-size: .7rem;
        min-height: auto
    }

    .nav-icon-btn span {
        display: none
    }

    @media (max-width:480px) {
        .navbar-container {
            padding: .6rem .8rem
        }

        .logo-premium {
            font-size: .85rem;
            padding: .25rem .5rem
        }

        .logo-badge {
            display: none
        }

        .nav-right {
            gap: .3rem
        }

        .nav-icon-btn {
            padding: .4rem .6rem;
            font-size: .6rem;
            border-width: 1.5px
        }

        .navbar-right button:empty,
        nav button:empty {
            display: none !important
        }
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -.5rem
}

.col {
    flex: 1 1 100%;
    padding: 0 .5rem
}

nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    list-style: none
}

.nav-link {
    padding: .5rem 1rem;
    text-decoration: none;
    white-space: nowrap;
    font-size: .9rem
}

.card {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px
}

button,
.btn {
    padding: .75rem 1.5rem;
    font-size: 1rem;
    border-radius: 6px;
    width: 100%;
    max-width: 300px;
    touch-action: manipulation
}

h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem)
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2rem)
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem)
}

p {
    font-size: clamp(0.9rem, 2vw, 1rem)
}

a,
button,
input {
    min-height: 44px;
    min-width: 44px
}

@media (max-width:480px) {
    .nav-menu {
        flex-direction: column;
        width: 100%
    }

    .nav-link {
        width: 100%;
        text-align: center
    }
}

@media (min-width:768px) {
    .container {
        padding: 0 2rem
    }

    .col {
        flex: 1 1 50%
    }

    .col-3 {
        flex: 1 1 33.333%
    }

    button,
    .btn {
        width: auto
    }
}

@media (min-width:1025px) {
    .container {
        padding: 0 3rem
    }
}

.text-center {
    text-align: center
}

.w-full {
    width: 100%
}

.hidden-mobile {
    display: none
}

@media (min-width:768px) {
    .hidden-mobile {
        display: block
    }

    .hidden-desktop {
        display: none
    }
}

@media (max-width:768px) {
    body {
        overflow-x: hidden
    }

    .container {
        padding: 0 15px
    }

    section {
        width: 100%;
        max-width: 100vw
    }
}
@media (max-width: 768px) {
  /* Fix "What We Offer" section */
  .features-grid {
    grid-template-columns: 1fr !important;
    padding: 0 1rem !important;
  }
  
  .feature-card {
    text-align: center !important;
    padding: 1.5rem !important;
    margin: 0 auto !important;
    max-width: 100% !important;
  }
  
  .feature-title {
    text-align: center !important;
  }
  
  .feature-text {
    text-align: center !important;
  }
  
  .feature-icon {
    margin: 0 auto 1rem auto !important;
    display: block !important;
  }
  
  /* Fix footer alignment */
  footer {
    text-align: center !important;
    padding: 2rem 1rem !important;
  }
  
  .footer-content {
    text-align: center !important;
  }
  
  .footer-links {
    justify-content: center !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
  }
  
  footer p {
    text-align: center !important;
    font-size: 0.85rem !important;
    padding: 0 1rem !important;
    line-height: 1.6 !important;
  }
  
  /* Fix tips section */
  .tips-grid {
    grid-template-columns: 1fr !important;
    padding: 0 1rem !important;
  }
  
  .tip-card {
    text-align: center !important;
    padding: 1.5rem !important;
  }
  
  /* Fix FAQ section */
  .faq {
    padding: 2rem 1rem !important;
  }
  
}
