@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@font-face {
    font-family: 'Trajan Pro';
    src: local('Trajan Pro'), local('TrajanPro-Regular');
    /* Fallback if font isn't installed locally */
    font-weight: normal;
    font-style: normal;
}

:root {
    --gold: #D4AF37;
    --gold-hover: #EBD6AD;
    --panel-bg: rgba(15, 15, 15, 0.95);
    --border-color: rgba(212, 175, 55, 0.2);
}

body {
    background: linear-gradient(135deg, #111 0%, #000 100%);
    background-size: cover;
    background-attachment: fixed;
    color: #CCC;
    font-family: 'Roboto', sans-serif;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden; /* Removes the scroll wheel */
}

/* Premium Dashboard Container */
.premium-dashboard {
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0,0,0,0.9), inset 0 0 20px rgba(212, 175, 55, 0.05);
    width: 100%;
    max-width: 900px; /* Increased from 600px */
    padding: 30px 40px;
    position: relative;
    overflow: hidden;
    display: flex; /* Added for split layout */
    flex-direction: row;
    gap: 40px;
}

.dashboard-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dashboard-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255,255,255,0.05);
    padding-left: 40px;
}

.premium-dashboard::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Typography */
.gold-text {
    font-family: 'Trajan Pro', serif;
    color: var(--gold);
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 5px; /* Reduced from 10px */
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.subtitle {
    text-align: center;
    font-size: 11px; /* Reduced from 12px */
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 20px; /* Reduced from 30px */
}

/* Form Styles */
.premium-input {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
    color: #FFF;
    padding: 12px 20px; /* Reduced padding */
    border-radius: 6px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-sizing: border-box;
    margin-bottom: 10px; /* Reduced margin */
}

.premium-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    background: rgba(0,0,0,0.6);
}

.premium-input::placeholder {
    color: #555;
    text-transform: uppercase;
}

/* Buttons */
.btn-premium {
    background: linear-gradient(180deg, #D4AF37 0%, #B8860B 100%);
    border: none;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px; /* Reduced padding */
    border-radius: 6px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 13px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.2);
}

.btn-premium:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

/* Voting Sites Grid */
.vote-grid {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Reduced from 15px */
    margin-top: 15px; /* Reduced from 20px */
}

.site-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 15px 20px; /* Reduced padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none !important;
    transition: all 0.2s;
    cursor: pointer;
    color: #FFF;
}

.site-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold);
    transform: translateY(-2px);
    color: #FFF;
}

.site-name {
    font-weight: bold;
    font-size: 15px; /* Slightly smaller */
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-name i {
    color: var(--gold);
}

.site-reward {
    font-size: 9px; /* Slightly smaller */
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* Cooldown Card */
.site-card.cooldown {
    background: rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.02);
    cursor: not-allowed;
    opacity: 0.6;
}

.site-card.cooldown:hover {
    transform: none;
    background: rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.02);
}

.cooldown-timer {
    font-family: monospace;
    color: #ff4d4d;
    font-size: 13px; /* Slightly smaller */
    font-weight: bold;
}

/* Stats Section */
.stats-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    text-align: center;
}

.stat-label {
    font-size: 10px;
    color: #666;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.stat-value {
    color: var(--gold);
    font-size: 28px;
    font-weight: bold;
    font-family: 'Trajan Pro', serif;
}

.stat-value.highlight {
    color: #FFF;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

hr {
    border-color: rgba(255,255,255,0.05);
    margin: 30px 0;
}
