/* --- RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif; 
}

body {
    background-color: #060e1f; 
    color: #ffffff;
    display: flex;
    justify-content: center;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
}

.main-container {
    width: 100%;
    max-width: 480px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px; 
}

h2 {
    font-size: 2.2rem;
    color: #e5c36f; 
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: center;
}

p {
    font-size: 1rem;
    color: #a8b2c1; 
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
}

section {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- HEADER SECTION --- */
header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.header-logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.main-logo {
    max-width: 80%; 
    height: auto;
}

.subtitle {
    font-size: 0.9rem;
    color: #00cccc; 
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.main-title {
    font-size: 3.5rem;
    color: #e5c36f; 
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.status-indicator {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #ff3333; 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-dot {
    height: 10px;
    width: 10px;
    background-color: #ff3333;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 10px #ff3333; 
}

/* --- BUTTONS --- */
.action-buttons {
    flex-direction: column;
    gap: 15px;
}

.btn {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.2s ease;
    width: 100%;
    max-width: 300px;
}

.btn i {
    font-size: 1.4rem;
}

.btn-discord {
    background-color: #e5c36f; 
    color: #060e1f;
}

.btn-discord:hover {
    background-color: #d4ac50;
}

.btn-server {
    background-color: #0d1a33; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a8b2c1;
}

.btn-server i {
    color: #00cccc; 
}

.btn-server:hover {
    background-color: #1a2c4d;
}

/* --- SERVER CONNECTION PANEL --- */
.server-connection-panel .connection-card {
    background-color: #0d1a33;
    border: 1px solid #e5c36f; 
    border-radius: 10px;
    width: 100%;
    padding: 20px;
    box-shadow: 0 0 15px rgba(229, 195, 111, 0.1);
}

.connection-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 12px 0;
}

.connection-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.connection-label {
    font-size: 0.8rem;
    color: #00cccc; 
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.connection-value {
    font-size: 1.8rem;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace; 
    font-weight: bold;
}

.copy-btn {
    background: none;
    border: none;
    color: #e5c36f; 
    font-size: 1.2rem;
    cursor: pointer;
    grid-column: 2;
    grid-row: 1 / span 2; 
    margin-left: 15px;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.copy-btn:hover {
    background-color: rgba(229, 195, 111, 0.1);
}

/* --- DISCORD LIVE PANEL --- */
.discord-live-panel {
    align-items: center;
}

.discord-header-badge {
    background-color: rgba(229, 195, 111, 0.1);
    border: 1px solid rgba(229, 195, 111, 0.2);
    color: #e5c36f;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
}

.discord-header-badge i {
    font-size: 0.9rem;
}

/* --- FOOTER --- */
footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #e5c36f; 
    font-size: 1rem;
    margin-top: 20px;
}

.footer-anchor {
    font-size: 1.2rem;
}