@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    min-height: 100vh;
    background-image:
        radial-gradient(circle at 20% 80%, #1a1a2e 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #16213e 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, #0f3460 0%, transparent 50%);
}

.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
}

/* Sticky Header Container */
.sticky-header {
    position: -webkit-sticky; /* Safari support */
    position: sticky;
    top: 0;
    z-index: 9999; /* Much higher z-index */
    margin-bottom: 2rem;
    padding: 1rem 2rem;
    background: rgba(15, 23, 42, 0.98); /* More opaque */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); /* Safari support */
    border: 1px solid #1e293b;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    pointer-events: auto;
    /* iOS specific fixes */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    /* Mobile specific fixes */
    min-height: 60px; /* Ensure minimum height */
    width: 100%;
    box-sizing: border-box;
}

/* Language Selector */
.language-selector {
    display: inline-block;
}

/* Mobile Navigation Buttons */
.mobile-nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.mobile-nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10000; /* Even higher z-index */
}

.mobile-nav-buttons .admin-login-btn,
.mobile-nav-buttons .dashboard-btn,
.mobile-nav-buttons .logout-btn {
    padding: 1rem 2rem; /* Larger padding */
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem; /* Larger font */
    position: relative;
    z-index: 10001; /* Highest z-index */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    /* Mobile specific */
    min-height: 50px; /* Larger touch target */
    min-width: 120px; /* Larger touch target */
    flex-shrink: 0; /* Don't shrink */
    white-space: nowrap; /* Don't wrap text */
}

.mobile-nav-buttons .admin-login-btn {
    background: #f59e0b;
    color: white;
}

.mobile-nav-buttons .dashboard-btn {
    background: #2563eb;
    color: white;
}

.mobile-nav-buttons .logout-btn {
    background: #dc2626;
    color: white;
}

.mobile-nav-buttons .admin-login-btn:hover,
.mobile-nav-buttons .dashboard-btn:hover,
.mobile-nav-buttons .logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-nav-buttons .admin-login-btn:hover {
    background: #d97706;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.mobile-nav-buttons .dashboard-btn:hover {
    background: #1d4ed8;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.mobile-nav-buttons .logout-btn:hover {
    background: #b91c1c;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.language-selector select {
    padding: 0.5rem 1rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid #334155;
    border-radius: 0.5rem;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    padding-left: 2.5rem;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="15" viewBox="0 0 20 15"><rect width="20" height="5" fill="%23000000"/><rect y="5" width="20" height="5" fill="%23DD0000"/><rect y="10" width="20" height="5" fill="%23FFCE00"/></svg>');
    background-repeat: no-repeat;
    background-position: 0.5rem center;
    background-size: 20px 15px;
}

.language-selector select:hover {
    border-color: #00d4ff;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.1);
}

.language-selector select:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.header-section {
    text-align: center;
    margin-bottom: 3rem;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1.2rem;
    color: #8892b0;
    font-weight: 300;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.control-panel {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid #1e293b;
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

.control-group {
    margin-bottom: 1.5rem;
}

.control-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.custom-select {
    width: 100%;
    padding: 1rem;
    background: #1e293b;
    border: 2px solid #334155;
    border-radius: 0.75rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.custom-select:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

/* Location Control Layout */
.location-control {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.location-select {
    flex: 1;
}

.location-btn {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 140px;
}

.location-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.location-btn:disabled {
    background: #374151;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.location-btn.loading {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    position: relative;
    overflow: hidden;
}

.location-btn.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: loading-sweep 1.5s infinite;
}

@keyframes loading-sweep {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Horizontal Time Tabs */
.time-tabs {
    display: flex;
    background: #1e293b;
    border: 2px solid #334155;
    border-radius: 0.75rem;
    padding: 0.25rem;
    gap: 0.25rem;
}

.time-tab {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.time-tab:hover {
    background: #334155;
    color: #e2e8f0;
    transform: translateY(-1px);
}

.time-tab.active {
    background: linear-gradient(135deg, #00d4ff, #0891b2);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.time-tab.active:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 212, 255, 0.4);
}

.tab-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.tab-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.refresh-btn {
    width: 100%;
    padding: 2rem;
    background: linear-gradient(135deg, #00d4ff, #0891b2);
    border: none;
    border-radius: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1.5rem;
}

.refresh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.stats-panel {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid #1e293b;
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

.admin-panel {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid #1e293b;
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.admin-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.admin-login-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.admin-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.dashboard-btn {
    background: linear-gradient(135deg, #00d4ff, #0891b2);
}

.dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.logout-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    height: 100%;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #8892b0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.leaderboard-container {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid #1e293b;
    border-radius: 1rem;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.leaderboard-header {
    padding: 2rem;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-bottom: 1px solid #334155;
}

.active-filters {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.last-sync {
    font-size: 0.9rem;
    color: #64748b;
}

.rankings-list {
    max-height: 600px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.rankings-list::-webkit-scrollbar {
    width: 6px;
}

.rankings-list::-webkit-scrollbar-track {
    background: #1e293b;
}

.rankings-list::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 3px;
}

.rank-entry {
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
    transition: all 0.2s ease;
    position: relative;
}

.rank-entry:hover {
    background: rgba(0, 212, 255, 0.05);
    border-left: 4px solid #00d4ff;
}

.rank-entry:last-child {
    border-bottom: none;
}

.position {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.position.gold {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.position.silver {
    color: #c0c0c0;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.position.bronze {
    color: #cd7f32;
    text-shadow: 0 0 20px rgba(205, 127, 50, 0.3);
}

.player-data {
    padding-left: 1rem;
}

.player-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.player-meta {
    font-size: 0.9rem;
    color: #8892b0;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.location-tag {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.time-result {
    font-family: 'Courier New', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: right;
}

.trophy-icon {
    font-size: 2rem;
    margin-left: 1rem;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #64748b;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #8892b0;
}

.empty-description {
    font-size: 1rem;
    line-height: 1.6;
}


.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* Notification Bubble Styles */
.notification-bubble {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00d4ff, #0891b2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
    z-index: 100000; /* Much higher than sticky header (99999) */
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    text-align: center;
}

.notification-bubble.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.notification-bubble.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-icon {
    font-size: 1.5rem;
    animation: bounce 0.6s ease-in-out;
}

.notification-text {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.notification-subtitle {
    font-size: 0.85rem;
    opacity: 0.9;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}

/* Mobile First Responsive Design */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .admin-panel {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 1rem;
        max-width: 100%;
    }

    .sticky-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .language-selector {
        order: -1;
        text-align: center;
        width: 100%;
    }

    .mobile-nav-buttons {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .main-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .header-section {
        margin-bottom: 2rem;
        margin-top: 1rem;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .admin-panel {
        grid-column: 1;
        order: -1; /* Admin panel kommt zuerst */
    }
    
    .admin-buttons {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .admin-btn {
        flex: 1;
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .control-panel {
        padding: 1.5rem;
    }

    .control-group {
        margin-bottom: 1rem;
    }

    .custom-select {
        padding: 1rem;
        font-size: 1rem;
    }

    .location-control {
        flex-direction: column;
        gap: 0.75rem;
    }

    .location-btn {
        width: 100%;
        min-width: auto;
        padding: 1rem;
        font-size: 1rem;
    }

    .time-tabs {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .time-tab {
        padding: 1rem;
        justify-content: flex-start;
        border-radius: 0.75rem;
        min-height: 44px;
        touch-action: manipulation;
    }

    .tab-text {
        font-size: 1rem;
    }

    .refresh-btn {
        padding: 1rem;
        font-size: 1rem;
        min-height: 44px;
        touch-action: manipulation;
    }

    .stats-panel {
        padding: 1.5rem;
    }

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

    .stat-card {
        padding: 1rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .leaderboard-container {
        margin-top: 1rem;
    }

    .leaderboard-header {
        padding: 1.5rem;
    }

    .active-filters {
        font-size: 1.2rem;
    }

    .last-sync {
        font-size: 0.8rem;
    }

    .rankings-list {
        max-height: 500px;
        -webkit-overflow-scrolling: touch;
    }

    .rank-entry {
        grid-template-columns: 50px 1fr auto;
        padding: 1rem;
        gap: 0.75rem;
        min-height: 60px;
    }

    .position {
        font-size: 1.5rem;
    }

    .player-data {
        padding-left: 0.5rem;
    }

    .player-name {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .player-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .location-tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }

    .time-result {
        font-size: 1.5rem;
    }

    .trophy-icon {
        display: none;
    }


    .notification-bubble {
        top: 5rem; /* Below the sticky header */
        left: 1rem;
        right: 1rem;
        transform: none;
        max-width: none;
        padding: 1rem;
        z-index: 100000; /* Ensure it's above sticky header */
    }

    .notification-bubble.show {
        transform: none;
    }

    .notification-bubble.hide {
        transform: none;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
    .main-container {
        padding: 0.5rem;
    }

    .sticky-header {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .control-panel {
        padding: 1rem;
    }

    .stats-panel {
        padding: 1rem;
    }
    
    .admin-panel {
        padding: 1rem;
    }
    
    .admin-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .admin-btn {
        padding: 0.75rem;
        font-size: 0.75rem;
    }

    .leaderboard-header {
        padding: 1rem;
    }

    .active-filters {
        font-size: 1rem;
    }

    .rank-entry {
        grid-template-columns: 40px 1fr auto;
        padding: 0.75rem;
        gap: 0.5rem;
        min-height: 50px;
    }

    .position {
        font-size: 1.25rem;
    }

    .player-name {
        font-size: 1rem;
    }

    .time-result {
        font-size: 1.25rem;
    }

    .time-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding: 0.25rem;
        gap: 0.25rem;
        -webkit-overflow-scrolling: touch;
    }

    .time-tab {
        min-width: 80px;
        padding: 0.75rem 0.5rem;
        flex-direction: column;
        gap: 0.25rem;
        justify-content: center;
    }

    .tab-icon {
        font-size: 1.2rem;
    }

    .tab-text {
        font-size: 0.75rem;
    }

}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .sticky-header {
        flex-direction: row;
        justify-content: space-between;
    }

    .mobile-nav-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .header-section {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }

    .main-title {
        font-size: 2rem;
    }


    .time-tabs {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .time-tab {
        min-width: 100px;
        padding: 0.75rem 1rem;
        flex-direction: row;
        justify-content: center;
    }

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

    .rank-entry {
        grid-template-columns: 60px 1fr auto;
        padding: 0.75rem 1rem;
    }

    .position {
        font-size: 1.5rem;
    }

    .time-result {
        font-size: 1.75rem;
    }
}

/* Mobile-specific sticky header fixes */
@media (max-width: 768px) {
    .sticky-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        margin-bottom: 0 !important;
        border-radius: 0 !important;
        padding: 1rem !important;
    }
    
    .main-container {
        padding-top: 80px !important;
    }
    
    .mobile-nav-buttons {
        gap: 0.5rem;
    }
    
    .mobile-nav-buttons .admin-login-btn,
    .mobile-nav-buttons .dashboard-btn,
    .mobile-nav-buttons .logout-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-height: 44px;
        min-width: 100px;
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    .time-tab {
        touch-action: manipulation;
    }

    .location-btn {
        touch-action: manipulation;
    }

    .refresh-btn {
        touch-action: manipulation;
    }

    .rank-entry {
        touch-action: manipulation;
    }

    .custom-select {
        -webkit-appearance: none;
        appearance: none;
        touch-action: manipulation;
    }

    /* Improve scrolling performance */
    .rankings-list {
        scroll-behavior: smooth;
    }

    /* Better spacing for mobile */
    .control-panel {
        margin-bottom: 1rem;
    }

    .stats-panel {
        margin-bottom: 1rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 1px solid #2a2a3e;
    margin-top: 3rem;
    padding: 2rem 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-link {
    color: #8892b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.footer-link:hover {
    color: #00d4ff;
}

.cookie-settings-btn {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    font-size: 0.9rem !important;
}

.footer-text {
    color: #6b7280;
    font-size: 0.85rem;
}

.footer-text p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}

/* iOS Sticky Header Fallback */
@supports not (position: sticky) {
    .sticky-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
    }
    
    body {
        padding-top: 80px !important;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .sticky-header {
        position: -webkit-sticky;
        position: sticky;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}