* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -ms-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #000000;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 6.5rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
    opacity: 0;
    transition: letter-spacing 0.8s ease;
}

.logo.expanded {
    letter-spacing: 0.15em;
}

.logo-white {
    color: #ffffff;
}

.logo-gold {
    color: #FFB800;
}

.message {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
    font-family: 'Courier New', monospace;
    opacity: 0;
    text-transform: uppercase;
}

.submessage {
    font-size: 1rem;
    font-weight: 500;
    color: #FFB800;
    margin-bottom: 3rem;
    letter-spacing: 0.12em;
    font-family: 'Courier New', monospace;
    opacity: 0;
    text-transform: uppercase;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FFB800;
    color: #000000;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(255, 184, 0, 0.15);
    transform: scale(0.8);
    border: 2px solid #FFB800;
    cursor: pointer;
    opacity: 0;
}

.discord-button:hover {
    background: #000000;
    color: #FFB800;
    border-color: #FFB800;
    transform: scale(1);
    box-shadow: 0 2px 12px rgba(255, 184, 0, 0.2);
}

.discord-button:active {
    transform: scale(0.96);
}

@media (hover: none) and (pointer: coarse) {
    .discord-button {
        -webkit-tap-highlight-color: rgba(255, 184, 0, 0.3);
        touch-action: manipulation;
    }
    
    .discord-button:active {
        transform: scale(0.92);
        background: #FFA500;
        transition: all 0.1s ease;
    }
}

.discord-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0);
    transition: filter 0.2s ease;
}

.discord-button:hover .discord-icon {
    filter: brightness(0) saturate(100%) invert(72%) sepia(89%) saturate(1000%) hue-rotate(1deg) brightness(103%) contrast(101%);
}

@media (max-width: 768px) {
    .logo {
        font-size: 3.5rem;
    }
    
    .message {
        font-size: 1.3rem;
    }
    
    .submessage {
        font-size: 0.9rem;
    }
    
    .discord-button {
        font-size: 1rem;
        padding: 16px 40px;
    }
    
    .discord-icon {
        width: 24px;
        height: 24px;
    }
}