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

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 234, 255, 0.3);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #00eaff;
    text-shadow: 0 0 10px #00eaff;
}

.nav-studio-logo {
    height: 80px;
    filter: drop-shadow(0 0 10px #00eaff);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.hero-logo {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.02);
}

.steam-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #1B2838;
    color: #ffffff;
    padding: 25px 50px;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(102, 192, 244, 0.6);
    border: 2px solid #66C0F4;
}

.steam-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(102, 192, 244, 0.9);
    background: #0C1A23;
}

.steam-icon {
    font-size: 2rem;
    color: #ffffff;
}

.sprites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    justify-items: center;
    max-width: 1000px;
    margin: 60px auto 0;
}

.sprite-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 0 30px #00eaff);
    transition: all 0.3s ease;
}

.sprite-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 50px #da0ef5);
}

/* Section Styles */
.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

/* About Section */
.about-section {
    min-height: 100vh;
    padding: 120px 0;
    background: linear-gradient(180deg, #0f3460 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
}

.about-section h2 {
    font-size: 3.5rem;
    color: #00eaff;
    text-shadow: 0 0 30px #00eaff;
    margin-bottom: 50px;
    font-weight: bold;
}

.about-text {
    font-size: 1.4rem;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* Features Section */
.features-section {
    min-height: 100vh;
    padding: 120px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(218, 14, 245, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 234, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: spookyGlow 8s ease-in-out infinite alternate;
}

@keyframes spookyGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.features-section h2 {
    font-size: 3.5rem;
    color: #da0ef5;
    text-shadow: 0 0 30px #da0ef5;
    margin-bottom: 80px;
    font-weight: bold;
    animation: flicker 4s infinite alternate;
}

@keyframes flicker {
    0%, 100% { 
        text-shadow: 0 0 30px #da0ef5, 0 0 60px #da0ef5;
        opacity: 1;
    }
    25% { 
        text-shadow: 0 0 20px #da0ef5, 0 0 40px #da0ef5;
        opacity: 0.8;
    }
    50% { 
        text-shadow: 0 0 35px #da0ef5, 0 0 70px #da0ef5;
        opacity: 1;
    }
    75% { 
        text-shadow: 0 0 15px #da0ef5, 0 0 30px #da0ef5;
        opacity: 0.9;
    }
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    position: relative;
    flex-wrap: wrap;
}

.feature-card {
    background: rgba(0, 234, 255, 0.1);
    border: 2px solid #00eaff;
    border-radius: 15px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    width: 220px;
    min-height: 180px;
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(218, 14, 245, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.feature-card:hover::before {
    animation: ghostlySwipe 0.6s ease-out;
}

@keyframes ghostlySwipe {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.feature-card:hover {
    transform: translateY(-8px) rotate(2deg);
    box-shadow: 0 15px 35px rgba(0, 234, 255, 0.5), 0 0 50px rgba(0, 234, 255, 0.3);
    border-color: #32cd32;
    background: rgba(0, 234, 255, 0.2);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #00eaff;
    margin-bottom: 15px;
    text-shadow: 0 0 15px #00eaff;
    transition: all 0.3s ease;
    font-weight: bold;
}

.feature-card:hover h3 {
    color: #32cd32;
    text-shadow: 0 0 20px #32cd32;
    animation: spookyPulse 1.5s infinite;
}

@keyframes spookyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.feature-card p {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #ffffff;
}

/* Floating Ghost Effects */
.floating-ghost {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.floating-ghost:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-ghost:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-ghost:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-30px) rotate(2deg);
        opacity: 0.4;
    }
}

/* Register Section */
.register-section {
    min-height: 100vh;
    padding: 120px 0;
    background: linear-gradient(180deg, #16213e 0%, #0f3460 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.studio-banner {
    text-align: center;
    margin-bottom: 80px;
}

.studio-banner-logo {
    width: 100%;
    max-width: 800px;
    height: auto;
    filter: drop-shadow(0 0 40px #00eaff);
    transition: transform 0.3s ease;
}

.studio-banner-logo:hover {
    transform: scale(1.02);
}

.newsletter-section h2 {
    font-size: 3.5rem;
    color: #00eaff;
    text-shadow: 0 0 30px #00eaff;
    margin-bottom: 30px;
    font-weight: bold;
}

.newsletter-text {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
    justify-content: center;
}

.email-input {
    flex: 1;
    padding: 18px 25px;
    font-size: 1.1rem;
    border: 2px solid #00eaff;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: #888888;
}

.email-input:focus {
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.5);
    border-color: #da0ef5;
}

.signup-button {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    background: linear-gradient(45deg, #da0ef5, #b008cc);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(218, 14, 245, 0.5);
    white-space: nowrap;
}

.signup-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(218, 14, 245, 0.8);
}

.contact-info {
    font-size: 1.1rem;
    color: #888888;
    margin-top: 40px;
}

.contact-info a {
    color: #00eaff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #da0ef5;
    text-shadow: 0 0 10px #da0ef5;
}

/* Footer */
.footer {
    background: #000000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 234, 255, 0.3);
}

.footer p {
    color: #888888;
    font-size: 1rem;
}

.studio-link {
    color: #00eaff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.studio-link:hover {
    color: #da0ef5;
    text-shadow: 0 0 10px #da0ef5;
}



/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 1rem;
    }
    
    .nav-studio-logo {
        height: 30px;
    }
    
    .hero-logo {
        max-width: 95%;
    }
    
    .sprites-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sprite-image {
        max-width: 90%;
    }
    
    .studio-banner-logo {
        max-width: 95%;
    }
    
    .about-section h2,
    .features-section h2,
    .newsletter-section h2 {
        font-size: 2.5rem;
    }
    
    .about-text {
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .email-input {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .section-content {
        padding: 0 20px;
    }
    
    .features-grid {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .feature-card {
        width: 280px;
    }
    
    .floating-ghost {
        display: none;
    }
    
    .hero-section {
        padding: 100px 20px 40px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .about-section,
    .features-section,
    .register-section {
        min-height: auto;
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .steam-button {
        padding: 20px 30px;
        font-size: 1.3rem;
        gap: 15px;
    }
    
    .steam-icon {
        font-size: 1.6rem;
    }
    
    .about-section,
    .features-section,
    .register-section {
        padding: 60px 0;
    }
    
    .studio-banner {
        margin-bottom: 40px;
    }
    
    .footer {
        padding: 30px 20px;
    }
    

    
    .about-section h2,
    .features-section h2,
    .newsletter-section h2 {
        font-size: 2rem;
    }
}