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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated background overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(100, 255, 218, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    animation: backgroundShift 12s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes backgroundShift {
    0% {
        background: 
            radial-gradient(circle at 20% 80%, rgba(100, 255, 218, 0.08) 0%, transparent 60%),
            radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.06) 0%, transparent 60%),
            radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    }
    25% {
        background: 
            radial-gradient(circle at 70% 30%, rgba(100, 255, 218, 0.06) 0%, transparent 55%),
            radial-gradient(circle at 30% 70%, rgba(0, 188, 212, 0.08) 0%, transparent 55%),
            radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 55%);
    }
    50% {
        background: 
            radial-gradient(circle at 60% 90%, rgba(100, 255, 218, 0.07) 0%, transparent 50%),
            radial-gradient(circle at 10% 30%, rgba(0, 188, 212, 0.07) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.035) 0%, transparent 50%);
    }
    75% {
        background: 
            radial-gradient(circle at 30% 20%, rgba(100, 255, 218, 0.09) 0%, transparent 65%),
            radial-gradient(circle at 90% 80%, rgba(0, 188, 212, 0.05) 0%, transparent 65%),
            radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.045) 0%, transparent 65%);
    }
    100% {
        background: 
            radial-gradient(circle at 80% 10%, rgba(100, 255, 218, 0.05) 0%, transparent 70%),
            radial-gradient(circle at 20% 90%, rgba(0, 188, 212, 0.09) 0%, transparent 70%),
            radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.025) 0%, transparent 70%);
    }
}

/* Floating geometric shapes */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.08;
    animation: floatShape 8s ease-in-out infinite;
    backdrop-filter: blur(1px);
}

.shape:nth-child(1) {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(100, 255, 218, 0.15), rgba(100, 255, 218, 0.05), transparent);
    border-radius: 50%;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.shape:nth-child(2) {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.12), rgba(0, 188, 212, 0.04), transparent);
    border-radius: 30%;
    top: 50%;
    right: 15%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.shape:nth-child(3) {
    width: 150px;
    height: 150px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02), transparent);
    border-radius: 20%;
    bottom: 25%;
    left: 25%;
    animation-delay: 8s;
    animation-duration: 10s;
}

.shape:nth-child(4) {
    width: 180px;
    height: 180px;
    background: linear-gradient(225deg, rgba(100, 255, 218, 0.1), transparent);
    border-radius: 40%;
    top: 30%;
    right: 35%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.shape:nth-child(5) {
    width: 120px;
    height: 120px;
    background: linear-gradient(315deg, rgba(0, 188, 212, 0.09), transparent);
    border-radius: 60%;
    bottom: 15%;
    right: 20%;
    animation-delay: 6s;
    animation-duration: 11s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.08;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg) scale(1.2);
        opacity: 0.12;
    }
    50% {
        transform: translateY(-10px) translateX(-15px) rotate(180deg) scale(0.8);
        opacity: 0.06;
    }
    75% {
        transform: translateY(20px) translateX(25px) rotate(270deg) scale(1.1);
        opacity: 0.1;
    }
}

/* Animated background particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

/* Main container */
.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
}

/* Logo styles */
.logo-container {
    margin-bottom: 2rem;
    position: relative;
}

.logo {
    width: 400px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1)); }
    100% { filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2)); }
}

/* Header social links (under logo) */
.header-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.3s both;
    margin: 0 auto;
    margin-top: 30px;;
}

.header-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.header-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.2), transparent);
    transition: left 0.3s ease;
}

.header-social-link:hover::before {
    left: 100%;
}

.header-social-link:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: #64ffda;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.1);
}

.header-discord-link {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
}

.header-discord-link:hover {
    background: linear-gradient(135deg, #5865F2 0%, #64ffda 100%);
}

.header-steam-link {
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
}

.header-steam-link:hover {
    background: linear-gradient(135deg, #1b2838 0%, #64ffda 100%);
}

.header-social-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.header-social-link:hover .header-social-icon {
    transform: scale(1.2);
}

/* Typography */
.studio-name {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a8a8a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: #b0b0b0;
    margin-bottom: 2rem;
    max-width: 700px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.highlight {
    color: #64ffda;
    font-weight: 600;
}

/* Status indicator */
.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem 0;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #64ffda;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(100, 255, 218, 0.7);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(100, 255, 218, 0);
    }
}

.status-text {
    font-family: "Space Mono", monospace;
    font-size: 0.9rem;
    color: #64ffda;
    font-weight: 400;
}

/* Progress bar */
.progress-container {
    width: 100%;
    max-width: 400px;
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
    font-family: "Space Mono", monospace;
}

.progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #64ffda 0%, #00bcd4 100%);
    border-radius: 2px;
    animation: progressLoad 3s ease-out 1.5s both;
    width: 0%;
}

@keyframes progressLoad {
    0% { width: 0%; }
    100% { width: 75%; }
}

/* Games showcase */
.games-section {
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.games-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

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

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: gameCardFloat 6s ease-in-out infinite;
}

.game-card:nth-child(1) {
    animation-delay: 0s;
}

.game-card:nth-child(2) {
    animation-delay: 3s;
}

.game-card:nth-child(3) {
    animation-delay: 6s;
}

@keyframes gameCardFloat {
    0%, 100% { transform: translateY(0px) rotateZ(0deg); }
    50% { transform: translateY(-5px) rotateZ(0.5deg); }
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.1), transparent);
    transition: left 0.8s ease;
}

.game-card:hover::before {
    left: 100%;
}

.game-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(100, 255, 218, 0.3);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.1);
}

.game-logo {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.game-card:hover .game-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 25px rgba(100, 255, 218, 0.2));
}

.game-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-align: center;
}

.game-status {
    font-size: 0.85rem;
    color: #64ffda;
    text-align: center;
    margin-bottom: 1rem;
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-description {
    font-size: 0.9rem;
    color: #b0b0b0;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.game-tag {
    background: rgba(100, 255, 218, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.3);
    color: #64ffda;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.game-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.game-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.2), transparent);
    transition: left 0.3s ease;
}

.game-link:hover::before {
    left: 100%;
}

.game-link:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: #64ffda;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.1);
}

.steam-link {
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
}

.steam-link:hover {
    background: linear-gradient(135deg, #1b2838 0%, #64ffda 100%);
}

.website-link {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, rgba(0, 188, 212, 0.1) 100%);
}

.link-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.game-link:hover .link-icon {
    transform: scale(1.2);
}

/* Pre-alpha announcement */
.pre-alpha-announcement {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, rgba(0, 188, 212, 0.1) 100%);
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pre-alpha-announcement::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.pre-alpha-text {
    font-size: 0.85rem;
    color: #64ffda;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 1;
}

.highlight-text {
    color: #ffffff;
    font-weight: 600;
}

/* Coming soon badge */
.coming-soon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
}

/* Social links */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 1.5s both;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: #64ffda;
    transform: translateY(-2px);
}        /* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 3;
}

footer a {
    color: #64ffda;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }
    
    .logo {
        width: 160px;
    }
    
    .header-social-links {
        gap: 0.75rem;
    }
    
    .header-social-link {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 320px;
    }
    
    .header-social-links {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
        gap: 0.75rem;
    }
    
    .header-social-link {
        width: 100%;
        justify-content: center;
    }
    
    .status-indicator {
        padding: 0.75rem 1.5rem;
    }
    
    .progress-container {
        max-width: 300px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
