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

body {
    font-family: 'Orbitron', monospace;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 210, 63, 0.05) 0%, transparent 50%);
}

.background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.header {
    text-align: center;
    margin-top: 20px;
    animation: fadeInDown 1.5s ease-out;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.title {
    font-size: 65px;
    color: #060606;
    font-weight: 900;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Creepster', cursive;
    text-shadow: 
        -2px -2px 0 #ffffff,
        2px -2px 0 #ffffff,
        -2px 2px 0 #ffffff,
        2px 2px 0 #ffffff,
        -3px -3px 0 #ffffff,
        3px -3px 0 #ffffff,
        -3px 3px 0 #ffffff,
        3px 3px 0 #ffffff;
}

.title-image {
    height: 80px;
    width: auto;
    margin-bottom: 5px;
    animation: slideInDown 1.5s ease-out 0.5s both;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 400;
    margin-top: 5px;
    animation: fadeIn 2s ease-out 0.5s both;
    text-shadow: 
        -1px -1px 0 #000000,
        1px -1px 0 #000000,
        -1px 1px 0 #000000,
        1px 1px 0 #000000;
}

.slogan {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff6b35;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeIn 2s ease-out 1s both, textPulse 3s ease-in-out infinite;
    font-family: 'Creepster', cursive;
    text-shadow: 
        -1px -1px 0 #000000,
        1px -1px 0 #000000,
        -1px 1px 0 #000000,
        1px 1px 0 #000000;
}

.main-content {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

.coming-soon {
    margin-bottom: 15px;
}

.coming-soon-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        -2px -2px 0 #000000,
        2px -2px 0 #000000,
        -2px 2px 0 #000000,
        2px 2px 0 #000000,
        -3px -3px 0 #000000,
        3px -3px 0 #000000,
        -3px 3px 0 #000000,
        3px 3px 0 #000000;
    margin-bottom: 10px;
    animation: slideInUp 1.5s ease-out 1s both;
    letter-spacing: 3px;
    font-family: 'Creepster', cursive;
}

.coming-soon-subtitle {
    font-size: 1.5rem;
    color: #ffd23f;
    font-weight: 700;
    margin-bottom: 10px;
    animation: slideInLeft 1.5s ease-out 1.5s both;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        -2px -2px 0 #000000,
        2px -2px 0 #000000,
        -2px 2px 0 #000000,
        2px 2px 0 #000000;
}

.description {
    font-size: 1.3rem;
    color: #ffffff;
    max-width: 500px;
    line-height: 1.4;
    animation: slideInRight 1.5s ease-out 2s both;
    text-align: center;
    margin: 0 auto;
    text-shadow: 
        -2px -2px 0 #000000,
        2px -2px 0 #000000,
        -2px 2px 0 #000000,
        2px 2px 0 #000000;
}

.social-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    animation: bounceIn 1.5s ease-out 2.5s both;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-shadow: 
        -1px -1px 0 #000000,
        1px -1px 0 #000000,
        -1px 1px 0 #000000,
        1px 1px 0 #000000;
}

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

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

.discord-btn {
    background: linear-gradient(45deg, #5865f2, #7289da);
    color: white;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

.discord-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
}

.youtube-btn {
    background: linear-gradient(45deg, #ff0000, #ff4444);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.youtube-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
}

.footer {
    text-align: center;
    padding: 10px;
    color: #888888;
    font-size: 0.8rem;
    animation: fadeIn 2s ease-out 3s both;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    text-shadow: 
        -1px -1px 0 #000000,
        1px -1px 0 #000000,
        -1px 1px 0 #000000,
        1px 1px 0 #000000;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}



@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.5), 0 0 30px rgba(255, 107, 53, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 107, 53, 0.8), 0 0 40px rgba(255, 107, 53, 0.5);
    }
}

@keyframes textPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes neonFlicker {
    0%, 100% {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #ff6b35, 0 0 35px #ff6b35, 0 0 40px #ff6b35;
    }
    50% {
        text-shadow: 0 0 2px #fff, 0 0 5px #fff, 0 0 8px #fff, 0 0 12px #ff6b35, 0 0 18px #ff6b35, 0 0 25px #ff6b35;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header {
        margin-top: 30px;
    }
    
    .title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .slogan {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .coming-soon-subtitle {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .social-buttons {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 300px;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
        font-size: 1rem;
    }
    

}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .coming-soon-subtitle {
        font-size: 1rem;
    }
    
    .description {
        font-size: 0.9rem;
    }
    
    .social-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    

}

/* Additional gaming-style effects */
.container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: pulseBackground 4s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.1;
    }
}