* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
}

.min-h-screen {
    min-height: 100vh;
}

.bg-gradient {
    background: linear-gradient(135deg, #581c87 0%, #be185d 50%, #dc2626 100%);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('./1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    padding: 0 1rem;
    max-width: 64rem;
    margin: 0 auto;
}

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

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.gradient-text {
    background: linear-gradient(to right, #f472b6, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.play-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, #ec4899, #9333ea);
    color: white;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
}

.play-button:hover {
    background: linear-gradient(to right, #db2777, #7c3aed);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.play-icon {
    transition: transform 0.3s ease;
}

.play-button:hover .play-icon {
    transform: scale(1.1);
}

.button-overlay {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-button:hover .button-overlay {
    opacity: 1;
}

.hero-features {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.star-icon {
    color: #fbbf24;
}

.heart-icon {
    color: #f87171;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
}

.pink-text {
    color: #f472b6;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.gamepad-bg {
    background: linear-gradient(to right, #ec4899, #9333ea);
}

.heart-bg {
    background: linear-gradient(to right, #9333ea, #ec4899);
}

.trophy-bg {
    background: linear-gradient(to right, #dc2626, #ec4899);
}

.feature-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.feature-description {
    color: #d1d5db;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-content {
    opacity: 1;
}

.gallery-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.gallery-subtitle {
    font-size: 0.875rem;
    color: #d1d5db;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(to right, #db2777, #7c3aed);
}

.cta-container {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.yellow-text {
    color: #fde047;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #7c3aed;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
}

.cta-button:hover {
    background: #f3f4f6;
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-button:hover .play-icon {
    transform: scale(1.1);
}

.cta-button-overlay {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: rgba(124, 58, 237, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover .cta-button-overlay {
    opacity: 1;
}

.cta-warning {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 0;
}

.footer-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .play-button, .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
}