/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #dc2626;
    --rose-pink: #fb7185;
    --dark-red: #991b1b;
    --light-rose: #fda4af;
    --bg-dark: #1a0a0a;
    --bg-darker: #0d0404;
    --text-white: #ffffff;
    --text-gray: #d1d5db;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-darker);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Side Dots Navigation */
.dots-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid var(--rose-pink);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot::before {
    content: attr(title);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.dot:hover::before {
    opacity: 1;
}

.dot.active {
    background: var(--primary-red);
    width: 16px;
    height: 16px;
    box-shadow: 0 0 20px var(--primary-red);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px var(--primary-red);
    }
    50% {
        box-shadow: 0 0 30px var(--primary-red), 0 0 40px var(--rose-pink);
    }
}

/* Fullscreen Sections */
.fullscreen-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    scroll-snap-align: start;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    z-index: 1;
    text-align: center;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--dark-red) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 30px var(--primary-red));
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-red), var(--rose-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-red), var(--rose-pink));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.5);
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 50px rgba(220, 38, 38, 0.8);
}

.btn-hero-secondary {
    padding: 1.2rem 3rem;
    background: transparent;
    border: 3px solid var(--rose-pink);
    color: var(--rose-pink);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(251, 113, 133, 0.1);
    transform: translateY(-5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--rose-pink);
}

.scroll-arrow {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Games Section */
.games-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-red), var(--rose-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.game-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(220, 38, 38, 0.3);
}

.game-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover img {
    transform: scale(1.1);
}

.game-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    transform: translateY(40%);
    transition: transform 0.3s ease;
}

.game-card:hover .game-info {
    transform: translateY(0);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.5);
    border-color: var(--primary-red);
}

.game-info h3 {
    font-size: 1.8rem;
    color: var(--rose-pink);
    margin-bottom: 0.5rem;
}

.game-info p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.btn-game {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary-red), var(--rose-pink));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-game:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 25px rgba(220, 38, 38, 0.6);
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--bg-darker) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(220, 38, 38, 0.1);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(251, 113, 133, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--rose-pink);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.4);
    background: rgba(220, 38, 38, 0.2);
}

.feature-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

.feature-card h3 {
    font-size: 2rem;
    color: var(--rose-pink);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Promotions Section */
.promotions-section {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.promo-card {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid var(--rose-pink);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(251, 113, 133, 0.6);
}

.promo-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.promo-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-promo {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-red);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.5);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--dark-red) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(251, 113, 133, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--rose-pink);
    transform: translateY(-10px);
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.author {
    color: var(--rose-pink);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red), var(--rose-pink));
}

.cta-section h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: white;
    color: var(--primary-red);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-large:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Footer Section */
.footer-section {
    background: var(--bg-darker);
    border-top: 2px solid var(--primary-red);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-column h4 {
    color: var(--rose-pink);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-column p {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--rose-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(251, 113, 133, 0.2);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .dots-nav {
        right: 10px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 14px;
        height: 14px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .games-grid,
    .features-grid,
    .promo-cards,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
