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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: #ffffff;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background GIF */
.background-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: hidden;
}

.background-gif img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.1;
}

/* Main Content */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Logo */
.logo-container {
    margin-bottom: 20px;
}

.logo-container img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

/* Headline */
.headline {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

/* Subtext */
.subtext {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Discord Button */
.discord-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.discord-btn:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 1.8rem;
    }
    
    .subtext {
        font-size: 0.75rem;
    }
    
    .logo-container img {
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 1.5rem;
    }
    
    .subtext {
        font-size: 0.7rem;
    }
    
    .logo-container img {
        max-width: 180px;
    }
}