* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-image: url('../public/dcbanner.png   ');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 31, 31, 0.85) 0%, rgba(26, 47, 47, 0.85) 50%, rgba(15, 20, 25, 0.9) 100%);
    backdrop-filter: blur(8px);
    z-index: 0;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    animation: fadeIn 0.6s ease-in;
    position: relative;
    z-index: 1;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                0 0 80px rgba(74, 222, 128, 0.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease-in;
    filter: drop-shadow(0 0 20px rgba(74, 222, 128, 0.5));
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    filter: drop-shadow(0 0 30px rgba(74, 222, 128, 0.3));
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #cbd5e1;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.button-container {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.discord-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 8px;
    background-color: #4ade80;
    color: #0f1419;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.discord-btn:hover {
    background-color: #22d3ee;
    transform: translateY(-2px);
}

.discord-btn:active {
    transform: translateY(0);
}

.message {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: none;
    font-size: 0.95rem;
    width: 100%;
    backdrop-filter: blur(10px);
}

.message.show {
    display: block;
}

.message.success {
    background-color: rgba(74, 222, 128, 0.2);
    border: 1px solid rgba(74, 222, 128, 0.4);
    color: #4ade80;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
}

.message.error {
    background-color: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

@media (max-width: 768px) {
    .container { padding: 1.5rem; }
    .logo { width: 80px; }
    h1 { font-size: 2rem; }
    .subtitle { font-size: 1rem; padding: 0 1rem; }
    .discord-btn { width: 100%; }
}
