:root {
    --bg-dark: #050505;
    --bg-card: rgba(20, 20, 20, 0.7);
    --bg-card-hover: rgba(30, 30, 30, 0.9);
    --primary-gradient: linear-gradient(135deg, #ff4d00, #ff0000);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border-glow: rgba(255, 77, 0, 0.3);
    --neon-green: #39ff14;
    --container-width: 1200px;
    --padding-mobile: 15px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    background-color: var(--bg-dark);
    background: radial-gradient(circle at 50% 0%, #2a0a0a, #050505 60%);
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    min-height: 100vh;
}

h1, h2, h3, .brand-name {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    line-height: 0.9;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--padding-mobile);
    width: 100%;
}

.navbar {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 10vw, 5rem);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 77, 0, 0.2);
    word-wrap: break-word;
}

.hero-text .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 400px;
}

.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 77, 0, 0.5);
    box-shadow: 0 10px 40px rgba(255, 77, 0, 0.15);
    background: var(--bg-card-hover);
}

.hero-card-wrapper .featured-card {
    border: 1px solid var(--border-glow);
    box-shadow: 0 0 30px rgba(255, 77, 0, 0.1);
}

.logo-area {
    margin-bottom: 20px;
}

.brand-name {
    font-size: 3rem;
    font-weight: 700;
    word-break: break-word;
}

.brand-name.lykitys { color: #ff8c00; }
.brand-name.mainio { color: #ffffff; letter-spacing: -2px; }
.brand-name.raketti { color: #ff00de; }
.brand-name.jackburst { color: #00e5ff; line-height: 0.8; }

.offer-big {
    font-size: 4rem;
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
}

.offer-medium {
    font-family: 'Teko', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.highlight {
    display: block;
    font-size: 2rem;
    color: var(--text-muted);
}

.offer-details {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1rem;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(255, 77, 0, 0.6);
    filter: brightness(1.2);
}

.btn-glow {
    animation: pulse-glow 2s infinite;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    transform: rotate(5deg);
    z-index: 10;
}

.badge.new { background: var(--neon-green); color: black; }
.badge.exclusive { background: white; color: red; border: 2px solid red; }
.badge.crypto { background: #5e17eb; color: white; border: 1px solid #a372ff; }

.card-stars {
    color: #ffd700; 
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.offers-section {
    padding: 60px 0;
}

.offers-section + .offers-section {
    padding-top: 0; 
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--text-muted);
    padding: 0 10px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.footer {
    background: #000;
    padding: 60px 0;
    border-top: 1px solid #222;
    text-align: center;
    color: #555;
}

.footer h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #888;
}

.disclaimer-text {
    font-size: 0.8rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    padding: 0 20px;
}

.footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.age-limit {
    border: 1px solid #555;
    padding: 5px;
    border-radius: 50%;
    margin-right: 10px;
}

.hidden-element {
    opacity: 0;
    transform: translateY(50px); 
    transition: all 0.8s ease-out; 
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 77, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 77, 0, 0); }
}

@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3.5rem; 
    }

    .hero-text .subtitle {
        margin: 0 auto 40px auto;
    }

    .hero {
        padding-top: 80px;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 2.8rem;
        line-height: 1;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 30px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 25px 20px;
        min-width: 0;
    }

    .brand-name {
        font-size: 2.2rem;
    }
    
    .offer-big {
        font-size: 2.5rem;
    }
    
    .offer-medium {
        font-size: 1.8rem;
    }

    .highlight {
        font-size: 1.5rem;
    }

    .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .navbar .logo {
        font-size: 1.8rem;
    }
}
