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

:root {
    --primary-color: #0066cc;
    --primary-dark: #004399;
    --primary-light: #0080ff;
    --accent-blue: #00a8ff;
    --secondary-color: #001a4d;
    --success-color: #00d4aa;
    --danger-color: #ff3333;
    --warning-color: #ffaa00;
    --bg-dark: #0a1628;
    --bg-darker: #050d1a;
    --bg-light: #0f2847;
    --bg-lighter: #1a4d7a;
    --text-primary: #e6f2ff;
    --text-secondary: #8fa3bf;
    --border-color: #1a3a5c;
    --shadow: 0 12px 40px rgba(0, 51, 102, 0.4);
    --shadow-glow: 0 0 30px rgba(0, 102, 204, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 51, 102, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #050d1a 0%, #0a1628 50%, #0f2847 100%);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    letter-spacing: 0.3px;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 15px;
}

@media (min-width: 480px) {
    .container {
        padding: 20px;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 25px;
    }
}

header {
    background: linear-gradient(180deg, rgba(5, 13, 26, 0.95) 0%, rgba(15, 40, 71, 0.8) 100%);
    border-bottom: 2px solid var(--primary-color);
    padding: 20px 0 30px;
    text-align: center;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

header h1 {
    font-size: 1.8em;
    background: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

header p {
    color: var(--text-secondary);
    font-size: 0.85em;
    font-weight: 500;
}

@media (min-width: 480px) {
    header {
        padding: 25px 0 35px;
        margin-bottom: 30px;
    }
    
    header h1 {
        font-size: 2.2em;
        margin-bottom: 10px;
    }
    
    header p {
        font-size: 0.9em;
    }
}

@media (min-width: 768px) {
    header {
        padding: 30px 0 40px;
        margin-bottom: 40px;
    }
    
    header h1 {
        font-size: 2.8em;
    }
    
    header p {
        font-size: 0.95em;
    }
}

footer.footer {
    background: linear-gradient(180deg, rgba(15, 40, 71, 0.8) 0%, rgba(5, 13, 26, 0.95) 100%);
    border-top: 2px solid var(--primary-color);
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
    backdrop-filter: blur(10px);
    position: relative;
}

footer.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

footer.footer p {
    color: var(--text-secondary);
    font-size: 0.8em;
    margin: 0;
    letter-spacing: 0.4px;
    font-weight: 500;
}

footer.footer p:hover {
    color: var(--accent-blue);
    transition: color 0.3s ease;
}

@media (min-width: 480px) {
    footer.footer {
        padding: 20px 0;
    }
    
    footer.footer p {
        font-size: 0.85em;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 768px) {
    footer.footer {
        padding: 30px 0;
    }
    
    footer.footer p {
        font-size: 0.9em;
        letter-spacing: 0.5px;
    }
}

.voting-section {
    background: linear-gradient(135deg, rgba(15, 40, 71, 0.7) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
}

.voting-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    opacity: 0.5;
}

.voting-section:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

@media (min-width: 480px) {
    .voting-section {
        padding: 30px;
        margin-bottom: 30px;
        border-radius: 10px;
    }
}

@media (min-width: 768px) {
    .voting-section {
        padding: 40px;
        margin-bottom: 40px;
        border-radius: 12px;
    }
}

.code-input-group {
    margin-bottom: 20px;
    text-align: center;
}

.code-input-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9em;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
}

.code-input-group input {
    width: 100%;
    max-width: 100%;
    padding: 14px 20px;
    font-size: 1.1em;
    letter-spacing: 3px;
    text-align: center;
    border: 2px solid var(--border-color);
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.8) 0%, rgba(15, 40, 71, 0.8) 100%);
    color: var(--text-primary);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

@media (min-width: 480px) {
    .code-input-group {
        margin-bottom: 25px;
    }
    
    .code-input-group label {
        margin-bottom: 12px;
        font-size: 1em;
        letter-spacing: 0.8px;
    }
    
    .code-input-group input {
        max-width: 280px;
        padding: 13px 18px;
        font-size: 1.1em;
        letter-spacing: 2.5px;
        border-radius: 7px;
    }
}

@media (min-width: 768px) {
    .code-input-group {
        margin-bottom: 30px;
    }
    
    .code-input-group label {
        margin-bottom: 15px;
        font-size: 1.1em;
        letter-spacing: 1px;
    }
    
    .code-input-group input {
        max-width: 300px;
        padding: 15px 20px;
        font-size: 1.2em;
        letter-spacing: 3px;
        border-radius: 8px;
    }
}

.code-input-group input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 25px rgba(0, 168, 255, 0.4);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15) 0%, rgba(0, 168, 255, 0.15) 100%);
}

.code-input-group input::placeholder {
    color: var(--text-secondary);
}

.verify-btn {
    margin-top: 12px;
    padding: 12px 35px;
    font-size: 0.95em;
    background: linear-gradient(135deg, #0066cc 0%, #004399 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.verify-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;
}

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

@media (min-width: 480px) {
    .verify-btn {
        margin-top: 14px;
        padding: 11px 35px;
        font-size: 0.95em;
        border-radius: 7px;
        letter-spacing: 0.8px;
    }
}

@media (min-width: 768px) {
    .verify-btn {
        margin-top: 15px;
        padding: 12px 40px;
        font-size: 1em;
        border-radius: 8px;
        letter-spacing: 1px;
    }
}

.verify-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.5);
    background: linear-gradient(135deg, #0080ff 0%, #004399 100%);
}

.verify-btn:active {
    transform: translateY(0);
}

.verify-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.message {
    margin: 20px auto;
    max-width: 600px;
    padding: 18px 24px;
    border-radius: 12px;
    font-weight: 700;
    display: none;
    z-index: 100;
    backdrop-filter: blur(10px);
    border: 1px solid;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: toastScaleIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 0.95em;
    line-height: 1.5;
}

@keyframes toastScaleIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes toastScaleOut {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(0.85);
        opacity: 0;
    }
}

.message.error {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.15) 0%, rgba(204, 0, 0, 0.1) 100%);
    border-color: rgba(255, 51, 51, 0.5);
    color: #ff8888;
}

.message.error::before {
    content: '✕';
    font-size: 1.3em;
    font-weight: 800;
    color: #ff3333;
    flex-shrink: 0;
}

.message.success {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 168, 200, 0.1) 100%);
    border-color: rgba(0, 212, 170, 0.5);
    color: #44ffdd;
}

.message.success::before {
    content: '✓';
    font-size: 1.3em;
    font-weight: 800;
    color: #00d4aa;
    flex-shrink: 0;
}

.message.hide {
    animation: toastScaleOut 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}


.options-section {
    display: none;
    animation: fadeIn 0.4s ease;
}

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

.options-section.active {
    display: block;
}

.options-section h2 {
    margin-bottom: 25px;
    font-size: 1.5em;
    text-align: center;
    background: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

@media (min-width: 480px) {
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 25px;
    }
}

@media (min-width: 768px) {
    .options-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        margin-bottom: 30px;
    }
}

.option-card {
    padding: 18px;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.6) 0%, rgba(15, 40, 71, 0.6) 100%);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (min-width: 480px) {
    .option-card {
        padding: 20px;
        border-radius: 12px;
    }
}

@media (min-width: 768px) {
    .option-card {
        padding: 22px;
        border-radius: 14px;
    }
}

.option-card:hover {
    border-color: var(--accent-blue);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2) 0%, rgba(0, 168, 255, 0.1) 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.option-card:hover::before {
    opacity: 1;
}

.option-card.selected {
    border-color: var(--accent-blue);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.3) 0%, rgba(0, 168, 255, 0.2) 100%);
    box-shadow: 0 0 25px rgba(0, 168, 255, 0.4);
    transform: scale(1.02);
}

.option-card input[type="radio"] {
    display: none;
}

.option-text {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.submit-vote-btn {
    width: 100%;
    padding: 14px;
    font-size: 1em;
    background: linear-gradient(135deg, #00d4aa 0%, #00a885 100%);
    color: #0a1628;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

@media (min-width: 480px) {
    .submit-vote-btn {
        padding: 13px;
        font-size: 1em;
        border-radius: 7px;
        letter-spacing: 0.8px;
    }
}

@media (min-width: 768px) {
    .submit-vote-btn {
        padding: 15px;
        font-size: 1.1em;
        border-radius: 8px;
        letter-spacing: 1px;
    }
}

.submit-vote-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
    background: linear-gradient(135deg, #00ffcc 0%, #00d4aa 100%);
}

.submit-vote-btn:active {
    transform: translateY(-1px);
}

.submit-vote-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(135deg, #666666 0%, #444444 100%);
}

/* STATS SECTION */
.stats-section {
    background: linear-gradient(135deg, rgba(15, 40, 71, 0.7) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    margin-top: 20px;
}

@media (min-width: 480px) {
    .stats-section {
        padding: 30px;
        margin-top: 30px;
        border-radius: 10px;
    }
}

@media (min-width: 768px) {
    .stats-section {
        padding: 40px;
        margin-top: 40px;
        border-radius: 12px;
    }
}

.stats-section h2 {
    margin-bottom: 30px;
    font-size: 1.8em;
    text-align: center;
    background: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.stats-section h3 {
    margin-bottom: 20px;
    color: var(--accent-blue);
    font-size: 1.2em;
}

.stats-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.8) 0%, rgba(15, 40, 71, 0.8) 100%);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.stat-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    transform: translateY(-2px);
}

.stat-card h3 {
    font-size: 0.85em;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card .value {
    font-size: 2.5em;
    font-weight: 800;
    background: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-item {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.6) 0%, rgba(15, 40, 71, 0.6) 100%);
    border: 1px solid var(--border-color);
    padding: 18px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.result-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.2);
}

.result-item-name {
    font-weight: 700;
    font-size: 1.05em;
    color: var(--text-primary);
    flex: 1;
}

.result-item-bar-container {
    flex: 2;
    margin: 0 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
    height: 32px;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
}

.result-item-bar {
    height: 100%;
    background: linear-gradient(90deg, #0066cc 0%, #00a8ff 100%);
    border-radius: 20px;
    transition: width 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9em;
    padding: 0 15px;
    min-width: 40px;
    box-shadow: 0 0 15px rgba(0, 168, 255, 0.4);
}

.result-item-count {
    text-align: right;
    min-width: 100px;
    font-weight: 700;
}

.result-item-count .votes {
    font-size: 1.4em;
    color: var(--accent-blue);
}

.result-item-count .percentage {
    font-size: 0.85em;
    color: var(--text-secondary);
}

/* SPINNER */
.spinner {
    border: 3px solid rgba(0, 102, 204, 0.2);
    border-top: 3px solid var(--accent-blue);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* TOP10 RESULTS */
.result-item-top10 {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.7) 0%, rgba(15, 40, 71, 0.7) 100%);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.result-item-top10:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    border-color: var(--accent-blue);
}

.top10-rank {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 80px;
}

.rank-number {
    font-size: 1.4em;
    font-weight: 800;
    color: var(--accent-blue);
}

.top10-content {
    flex: 1;
}

.top10-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.05em;
}

.top10-bar-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
    height: 28px;
    border: 1px solid var(--border-color);
}

.top10-bar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.85em;
    border-radius: 20px;
    transition: width 0.3s ease;
}

.top10-percentage {
    padding: 0 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.top10-stats {
    text-align: right;
    min-width: 70px;
}

.top10-votes {
    font-size: 1.6em;
    font-weight: 800;
    color: var(--accent-blue);
}

.top10-label {
    font-size: 0.8em;
    color: var(--text-secondary);
}

/* CODE BOX */
.code-box {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2) 0%, rgba(0, 168, 255, 0.1) 100%);
    border: 2px solid var(--primary-color);
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-weight: 800;
    font-size: 1.3em;
    color: var(--accent-blue);
    letter-spacing: 2px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 168, 255, 0.2);
}

/* LOGOUT BUTTON */
.logout-btn {
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.3) 0%, rgba(204, 0, 0, 0.3) 100%);
    color: #ff6666;
    border: 2px solid #ff3333;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.logout-btn:hover {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.5) 0%, rgba(204, 0, 0, 0.5) 100%);
    box-shadow: 0 6px 20px rgba(255, 51, 51, 0.3);
    transform: translateY(-2px);
}

/* ADMIN TOAST NOTIFICATIONS */
.admin-toast-message {
    margin: 20px auto;
    max-width: 600px;
    padding: 18px 24px;
    border-radius: 12px;
    font-weight: 700;
    z-index: 100;
    backdrop-filter: blur(10px);
    border: 1px solid;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: toastScaleIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 0.95em;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-toast-message.error {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.15) 0%, rgba(204, 0, 0, 0.1) 100%);
    border-color: rgba(255, 51, 51, 0.5);
    color: #ff8888;
}

.admin-toast-message.error::before {
    content: '✕';
    font-size: 1.3em;
    font-weight: 800;
    color: #ff3333;
    flex-shrink: 0;
}

.admin-toast-message.success {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 168, 200, 0.1) 100%);
    border-color: rgba(0, 212, 170, 0.5);
    color: #44ffdd;
}

.admin-toast-message.success::before {
    content: '✓';
    font-size: 1.3em;
    font-weight: 800;
    color: #00d4aa;
    flex-shrink: 0;
}

.admin-toast-message.hide {
    animation: toastScaleOut 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }

    .voting-section,
    .stats-section {
        padding: 25px;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .stats-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .result-item {
        flex-wrap: wrap;
        gap: 12px;
    }

    .result-item-bar-container {
        flex: 1 1 100%;
        margin: 10px 0;
    }

    .result-item-count {
        flex: 1 1 100%;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 12px;
    }

    header h1 {
        font-size: 1.5em;
    }

    .voting-section,
    .stats-section {
        padding: 18px;
        border-radius: 10px;
    }

    .code-input-group input {
        max-width: 100%;
        font-size: 1em;
        letter-spacing: 2px;
    }

    .stats-summary {
        grid-template-columns: 1fr;
    }

    .result-item {
        padding: 14px;
    }

    .stat-card .value {
        font-size: 2em;
    }
}
