<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #FFD54F;
    --primary-dark: #FFC107;
    --secondary-color: #FFECB3;
    --accent-color: #FF9800;
    --text-color: #212121;
    --text-secondary: #757575;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --background-color: #FFFDE7;
    --card-color: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 600;
}

.emoji {
    font-size: 1.2em;
    margin-left: 8px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    box-shadow: var(--shadow);
    color: #333;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-text {
    flex: 1;
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
}

.language-toggle {
    margin-left: auto;
}

.lang-btn {
    background-color: var(--secondary-color);
    color: #333;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.lang-btn i {
    margin-right: 5px;
}

.lang-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

footer {
    text-align: center;
    margin-top: 40px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Page Styles */
.page {
    display: none;
    animation: fadeIn 0.5s ease;
}

.page.active {
    display: block;
}

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

/* Form Styles */
.form-container {
    max-width: 500px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: var(--card-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--primary-dark);
}

.input-group {
    display: flex;
    margin-bottom: 10px;
}

input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus {
    outline: none;
    border-color: var(--primary-dark);
    box-shadow: 0 0 5px rgba(255, 193, 7, 0.3);
}

button {
    background-color: var(--primary-dark);
    color: #333;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.input-group button {
    border-radius: 0 8px 8px 0;
}

button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.error {
    color: var(--error-color);
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Top Rankings Styles */
.top-rankings {
    background-color: var(--card-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.rankings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 15px;
}

.live-indicator {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--success-color);
}

.pulse {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--success-color);
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(0.95); opacity: 1; }
}

.category {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.category h3 {
    text-align: left;
    background-color: var(--secondary-color);
    padding: 15px;
    margin-bottom: 0;
    font-size: 1.1rem;
    color: #333;
}

.category-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--primary-dark);
    color: #333;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 0.9rem;
    font-weight: bold;
}

.ranking-list {
    margin-top: 0;
}

.ranking-item {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.ranking-item:hover {
    background-color: #fafafa;
}

.ranking-item:last-child {
    border-bottom: none;
}

/* Teams Container Styles (Voting Page) */
.teams-container {
    background-color: var(--card-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.search-box:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.search-box .search-icon {
    color: var(--text-secondary);
    margin-right: 10px;
    font-size: 1.2rem;
}

#team-search {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 1rem;
    color: var(--text-color);
}

#team-search::placeholder {
    color: var(--text-secondary);
}

#team-search:focus {
    outline: none;
}

.search-info {
    position: absolute;
    top: 100%;
    left: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 5px;
    display: none;
}

.search-box:hover .search-info {
    display: block;
}

.category-voting .category-section {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.category-section h2 {
    text-align: left;
    background-color: var(--secondary-color);
    padding: 15px;
    margin-bottom: 0;
    font-size: 1.1rem;
    color: #333;
}

.teams-in-category {
    margin-top: 0;
}

.team-card {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.team-card:hover {
    background-color: #fafafa;
}

.team-card:last-child {
    border-bottom: none;
}

.team-card h3 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.vote-btn {
    background-color: var(--primary-dark);
    color: #333;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.vote-btn:hover {
    background-color: var(--accent-color);
}

.no-teams-message, .no-results-message {
    padding: 15px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: var(--card-color);
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.4s;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-content h2 {
    color: #333;
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.modal-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.modal-buttons button {
    width: 48%;
    padding: 12px;
}

#cancel-vote {
    background-color: #e0e0e0;
    color: #333;
}

#cancel-vote:hover {
    background-color: #d5d5d5;
}

/* Criteria Modal Styles (also applied to Thank You modal) */
.modal-content.criteria {
    border: 2px solid var(--primary-dark);
    background: var(--card-color);
    padding: 40px;
    max-width: 600px;
}

.criteria h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-dark);
    padding-bottom: 10px;
    text-align: left;
}

.criteria-intro {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.criteria-list {
    list-style: none;
    counter-reset: criteria-counter;
    padding-left: 0;
    margin-bottom: 20px;
}

.criteria-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.criteria-list li:before {
    counter-increment: criteria-counter;
    content: counter(criteria-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background-color: var(--primary-dark);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.criteria-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 10px;
    font-style: italic;
}

.close-criteria-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-dark);
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.close-criteria-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .rankings-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-box {
        max-width: 90%;
    }
    
    .modal-content {
        width: 90%;
        margin: 20% auto;
    }

    .modal-content.criteria {
        padding: 20px;
    }

    .criteria h2 {
        font-size: 1.5rem;
    }

    .criteria-list li {
        font-size: 0.9rem;
        padding-left: 35px;
    }

    .criteria-list li:before {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .header-content {
        flex-direction: column;
        gap: 10px;
    }

    .language-toggle {
        margin-left: 0;
    }
}</pre></body></html>