@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --bg-dark: #050505;
    --bg-card: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --primary-red: #ff3e3e;
    --accent-glow: rgba(255, 62, 62, 0.4);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* --- Global Enhancements --- */
body {
    background-color: #030303;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(200, 0, 0, 0.03), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 62, 62, 0.02), transparent 25%);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Background Effects --- */
.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.bg-glow {
    position: fixed;
    top: -20%;
    left: 50%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 62, 62, 0.15), transparent 70%);
    transform: translateX(-50%);
    z-index: -2;
    pointer-events: none;
    animation: pulse 10s infinite alternate;
}

.shard {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: -1;
}

.shard-1 {
    top: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    transform: rotate(15deg);
    clip-path: polygon(0 0, 100% 20%, 80% 100%, 0 80%);
}

.shard-2 {
    bottom: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    transform: rotate(-10deg);
    clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 80%);
}

.shard-3 {
    top: 40%;
    left: 20%;
    width: 300px;
    height: 300px;
    opacity: 0.5;
    transform: rotate(45deg);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: translateX(-50%) scale(0.9);
    }

    100% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.1);
    }
}

/* --- Header --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(5, 5, 5, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-toggle {
    display: none;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary-red);
}

.nav-menu ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--text-main);
}

/* --- Buttons --- */
.btn-primary {
    background: var(--primary-red);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 62, 62, 0.3);
}

.btn-primary,
.btn-glow,
.btn-xl {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: translateZ(0);
    /* Hardware acceleration */
}

@keyframes subtle-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 62, 62, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 62, 62, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 62, 62, 0);
    }
}

.btn-primary:hover,
.btn-glow:hover {
    animation: subtle-pulse 1.5s infinite;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 62, 62, 0.5);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    padding-top: 80px;
    /* Offset for fixed header */
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
}

.hero h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-shadow: 0 0 80px rgba(255, 62, 62, 0.15);
}

.text-gradient {
    background: linear-gradient(180deg, var(--primary-red) 0%, #8a0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-glow {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 0 30px rgba(255, 62, 62, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(255, 62, 62, 0.6);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Scroll Ind */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    opacity: 0.6;
    font-size: 0.8rem;
    animation: bounce 2s infinite;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border: 2px solid white;
    border-radius: 12px;
    position: relative;
}

.mouse-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: white;
    border-radius: 2px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* --- Features --- */
.features-section {
    padding: 8rem 5%;
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-tag {
    color: var(--primary-red);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.4), rgba(10, 10, 10, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 62, 62, 0.1), transparent 60%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.feature-card:hover .card-glow {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(255, 62, 62, 0.4);
    box-shadow: 0 20px 40px -10px rgba(255, 62, 62, 0.1);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 62, 62, 0.2), rgba(255, 62, 62, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    box-shadow: 0 0 20px rgba(255, 62, 62, 0.15);
    border: 1px solid rgba(255, 62, 62, 0.2);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- Games Section --- */
.games-section {
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

.section-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: -1;
    pointer-events: none;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    height: 420px;
    perspective: 1000px;
}

.game-card-inner {
    width: 100%;
    height: 100%;
    background: #080808;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    /* Sharp tech look */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 1), inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.game-card:hover .game-card-inner {
    border-color: var(--primary-red);
    box-shadow: 0 0 30px rgba(255, 62, 62, 0.2), inset 0 0 0 1px rgba(255, 62, 62, 0.1);
    transform: translateY(-5px);
}

.game-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 0;
    filter: grayscale(100%) contrast(1.2) brightness(0.6);
}

.samp-bg {
    background: linear-gradient(to bottom, transparent, #111), url('https://libertycity.net/uploads/posts/2016-01/1452601979_sa-mp-001.jpg');
    background-size: cover;
}

.crmp-bg {
    background: linear-gradient(to bottom, transparent, #111), url('https://i.ytimg.com/vi/1_M5wWwF7O8/maxresdefault.jpg');
    background-size: cover;
}

.game-card:hover .game-bg {
    filter: grayscale(0%) contrast(1.1) brightness(0.8);
    transform: scale(1.05);
    /* Zoom in less, smoother */
    opacity: 0.5;
}

.game-content {
    position: relative;
    z-index: 2;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.game-tag {
    font-size: 0.75rem;
    background: rgba(255, 62, 62, 0.15);
    padding: 4px 10px;
    border-radius: 2px;
    color: #ff5e5e;
    font-weight: 700;
    border: 1px solid rgba(255, 62, 62, 0.3);
}

.game-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.game-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.game-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.game-card.disabled .game-card-inner {
    border-style: dashed;
    opacity: 0.7;
}

.btn-disabled {
    background: transparent;
    border: 1px solid #333;
    color: #555;
    cursor: not-allowed;
    padding: 0.5rem 1.2rem;
}

/* --- Banner Info --- */
.info-banner {
    padding: 6rem 5%;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 62, 62, 0.05) 100%);
}

.banner-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.banner-content p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.btn-xl {
    background: white;
    color: black;
    padding: 1.2rem 4rem;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-xl:hover {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 62, 62, 0.4);
    transform: translateY(-3px);
}

/* --- FAQ Optimized Animation --- */
.faq-section {
    padding: 6rem 5%;
    background: rgba(255, 255, 255, 0.01);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    transition: background 0.3s;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    user-select: none;
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--primary-red);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* The Grid Trick for Smooth Height Animation */
.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
}

.faq-item.active .faq-content {
    grid-template-rows: 1fr;
}

.faq-inner {
    overflow: hidden;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-inner p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    /* Padding inside the collapsible area */
    margin: 0;
}

/* --- Footer --- */
footer {
    padding: 5rem 5% 2rem;
    background: #020202;
    border-top: 1px solid #111;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid #222;
}

.social-icon:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid #111;
    font-size: 0.85rem;
    color: #444;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1.5rem;
        background: rgba(5, 5, 5, 0.98);
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 2000;
        /* Ensure above everything */
        position: relative;
    }

    .mobile-menu-toggle span {
        width: 100%;
        height: 2px;
        background-color: white;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
    }

    /* Active State (X icon) */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: #050505;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        padding: 2rem;
    }

    .nav-menu.active {
        transform: translateX(0);
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
        width: 100%;
    }

    .nav-link {
        font-size: 1.8rem;
        font-weight: 600;
        display: block;
        color: rgba(255, 255, 255, 0.8);
    }

    .nav-link:hover {
        color: var(--primary-red);
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero {
        padding-top: 150px;
        height: auto;
        min-height: 100vh;
        padding-bottom: 4rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 3rem;
    }

    .btn-lg {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .game-card {
        height: auto;
        min-height: 350px;
    }

    .section-bg-text {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* --- Legal Pages Styles --- */
.offer-section {
    padding: 8rem 8%;
    min-height: 80vh;
    position: relative;
    z-index: 10;
}

.offer-container {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    backdrop-filter: blur(12px);
    border-radius: 4px;
    color: var(--text-muted);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.offer-container h1 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    text-align: center;
}

.offer-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.offer-container h2 {
    color: #fff;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    border-left: 3px solid var(--primary-red);
    padding-left: 1rem;
}

.offer-container h3 {
    color: #e0e0e0;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.offer-container p,
.offer-container li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.offer-container ul {
    list-style-type: none;
    padding-left: 0;
}

.offer-container ul li {
    padding-left: 1.5rem;
    position: relative;
}

.offer-container ul li::before {
    content: '•';
    color: var(--primary-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.last-update {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.6;
    text-align: right;
}

@media (max-width: 768px) {
    .offer-section {
        padding: 6rem 1.5rem;
    }

    .offer-container {
        padding: 2rem 1.5rem;
    }

    .offer-container h1 {
        font-size: 1.8rem;
    }
}