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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    min-height: 100vh;
}

.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #ffffff 100%);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,100 50,0 100,100" fill="rgba(255,255,255,0.1)"/></svg>') repeat-x;
    background-size: 60px 100%;
    opacity: 0.3;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #8B0000, #DC143C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav a.selected {
    background: linear-gradient(45deg, #1e3c72, #DC143C);
    border: 2px solid rgba(220, 20, 60, 0.6);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    transform: translateY(-1px);
}

.language-switcher {
    display: flex;
    gap: 3px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.language-button {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 0.85rem;
    border: 1px solid transparent;
    position: relative;
    min-width: 40px;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.language-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.language-button.active {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    border: 1px solid rgba(220, 20, 60, 0.9);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.language-button.active:hover {
    background: linear-gradient(135deg, #FF1744 0%, #DC143C 100%);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.05);
}

.language-button.inactive {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.language-button.inactive:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero {
    text-align: center;
    margin: 40px 0;
    padding: 60px 20px;
    background: linear-gradient(45deg, rgba(139, 0, 0, 0.2), rgba(220, 20, 60, 0.2));
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🏔️';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    opacity: 0.3;
}

.hero::after {
    content: '🍺';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.3;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #1e3c72, #DC143C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero p {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin: 50px 0 30px;
    color: #DC143C;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-description.address {
    margin-top: 1em;
    white-space: pre;
}

.results-info {
    text-align: center;
    margin-bottom: 30px;
    color: #cccccc;
    font-size: 1.1rem;
    background: rgba(30, 60, 114, 0.2);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(30, 60, 114, 0.3);
}

.concerts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.concert-card {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(30, 60, 114, 0.3);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.concert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298, #DC143C);
}

.concert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 60, 114, 0.3);
    border-color: rgba(220, 20, 60, 0.5);
}

.band-name {
    font-size: 1.6rem;
    font-weight: bold;
    color: #DC143C;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.venue {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.venue::before {
    content: "🏛️";
    margin-right: 10px;
}

.date {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.date::before {
    content: "📅";
    margin-right: 10px;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #32CD32;
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.price::before {
    content: "💰";
    margin-right: 10px;
}

.genre-tag {
    display: inline-block;
    background: linear-gradient(45deg, rgba(30, 60, 114, 0.3), rgba(220, 20, 60, 0.2));
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-top: 12px;
    border: 1px solid rgba(30, 60, 114, 0.4);
}

.city-tag {
    display: inline-block;
    background: rgba(30, 60, 114, 0.4);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-left: 10px;
    border: 1px solid rgba(30, 60, 114, 0.6);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.2), rgba(255, 255, 255, 0.1));
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid rgba(30, 60, 114, 0.3);
    transition: all 0.3s ease;
    font-weight: bold;
}

.pagination a:hover {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.4), rgba(220, 20, 60, 0.2));
    border-color: #DC143C;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 60, 114, 0.3);
}

.pagination .current {
    background: linear-gradient(45deg, #1e3c72, #DC143C);
    border-color: #DC143C;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.pagination .disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination .disabled:hover {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.2), rgba(255, 255, 255, 0.1));
    transform: none;
    box-shadow: none;
}

.footer {
    margin-top: 80px;
    padding: 40px 0;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    text-align: center;
    border-top: 3px solid rgba(220, 20, 60, 0.5);
}

.footer p {
    color: #ffffff;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Added footer menu styles to satisfy the "always add CSS styling for new UI controls" rule */
.footer-menu {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.footer-link {
    color: #ffffff; /* brighter to signal interactivity */
    text-decoration: underline; /* always show underline so it's clearly a link */
    text-underline-offset: 2px;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(220, 20, 60, 0.85); /* brand accent for clarity */
    font-size: 0.9rem; /* smaller link as requested */
    padding: 6px 8px; /* maintain adequate hit area */
    border-radius: 4px;
    border: 1px solid transparent;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: #ffffff; /* stronger underline on hover for clarity */
}

.footer-link:focus-visible {
    outline: 2px solid #ffffff; /* accessible focus ring */
    outline-offset: 2px;
}

.footer-link:active {
    opacity: 0.85;
}

.footer-link[aria-disabled="true"],
.footer-link.disabled {
    opacity: 0.6;
    pointer-events: none;
}

.footer-sep {
    color: rgba(255,255,255,0.6);
}

/* Added footer disclaimer styles to satisfy the "always add CSS styling for new UI controls" rule */
.footer-disclaimer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 15px 0 10px 0;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-disclaimer:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-disclaimer:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .footer-menu {
        gap: 6px;
    }
    .footer-link {
        font-size: 0.9rem;
        padding: 6px 6px;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        margin: 12px 0 8px 0;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        gap: 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .concerts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .concert-card {
        padding: 20px;
    }

    .pagination {
        gap: 8px;
    }

    .pagination a,
    .pagination span {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
}


/* Global link styles added to satisfy the "always add CSS styling for new UI controls" rule
   Improves contrast/readability of links on dark background throughout the site */
a {
    color: #f2f2f2; /* high contrast on dark bg */
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(220, 20, 60, 0.85); /* brand accent, consistent with theme */
    transition: color 0.2s ease, text-decoration-color 0.2s ease, background-color 0.2s ease;
}

/* Keep visited links readable without low-contrast purple */
/*a:visited {*/
/*    color: #e9e9e9;*/
/*    text-decoration-color: rgba(220, 20, 60, 0.7);*/
/*}*/

a:hover {
    color: #ffffff;
    text-decoration-color: #ffffff; /* stronger underline on hover */
}

a:focus-visible {
    outline: 2px solid #ffffff; /* accessible focus ring */
    outline-offset: 2px;
    border-radius: 2px;
}

a:active {
    opacity: 0.9;
}

/* Disabled state support when used with accessibility attributes or utility classes */
a[aria-disabled="true"],
a.disabled {
    opacity: 0.6;
    pointer-events: none;
    text-decoration-color: rgba(255, 255, 255, 0.4);
}
