/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #e0e0e0;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container and layout */
.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    text-align: center;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Logo section */
.logo-section {
    margin-bottom: 3rem;
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.game-title {
    font-size: 1rem;
    color: #8a8a8a;
    font-weight: 400;
    margin-bottom: 0;
    font-style: italic;
}

/* Main content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.description {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Progress indicator */
.progress-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4a4a4a 0%, #6a6a6a 50%, #8a8a8a 100%);
    border-radius: 3px;
    width: 65%;
    position: relative;
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.progress-text {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

/* Contact section */
.contact-section {
    background: rgba(15, 15, 15, 0.6);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-description {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.discord-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(88, 101, 242, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(88, 101, 242, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.discord-contact:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.4);
    transform: translateY(-2px);
}

.discord-icon {
    width: 28px;
    height: 28px;
    color: #5865f2;
}

.contact-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

.contact-value {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
}

/* Background animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

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

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    transform: scale(0.8);
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: -10s;
    transform: scale(1.2);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
        opacity: 0.8;
    }
    66% {
        transform: translateY(20px) rotate(240deg);
        opacity: 0.3;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .content {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .logo {
        font-size: 2.8rem;
    }
    
    .game-title {
        font-size: 0.9rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .discord-contact {
        padding: 0.8rem 1.2rem;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-element {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1.5rem 1rem;
        margin: 1rem;
    }
    
    .logo {
        font-size: 2.2rem;
    }
    
    .game-title {
        font-size: 0.8rem;
    }
    
    .title {
        font-size: 1.6rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .main-content {
        gap: 2rem;
    }
    
    .contact-section {
        padding: 1.5rem;
    }
    
    .discord-contact {
        width: 100%;
        justify-content: center;
    }
}

/* Dark theme enhancements */
@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(135deg, #000000 0%, #111111 50%, #050505 100%);
    }
    
    .content {
        background: rgba(10, 10, 10, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .contact-section {
        background: rgba(5, 5, 5, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.03);
    }
}