/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;900&display=swap');

:root {
    --brand: #f91e52;
    --bg-dark: #000000;
    --bg-body: #0b0c10;
    --bg-card: #1f2833;
    --text-primary: #ffffff;
    --text-secondary: #c5c6c7;
    --accent: #45f3ff;
    --white: #ffffff;
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--white);
}

/* Header & Navbar */
header {
    background-color: var(--bg-dark);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--brand);
    box-shadow: 0 4px 20px rgba(249, 30, 82, 0.15);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-area a {
    background-color: var(--bg-dark);
    color: var(--white);
    font-weight: 900;
    font-size: 26px;
    letter-spacing: 2px;
    padding: 5px 15px;
    border: 2px solid var(--white);
    display: inline-block;
    transition: transform var(--transition-speed) ease;
}

.logo-area a:hover {
    transform: scale(1.05);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

nav ul li a {
    color: var(--brand);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 12px;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background-color: var(--white);
    transform: scaleX(0);
    transition: transform var(--transition-speed) ease;
}

nav ul li a:hover {
    color: var(--white);
}

nav ul li a:hover::after {
    transform: scaleX(1);
}

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

.lang-switch {
    display: flex;
    gap: 10px;
}

.lang-btn {
    opacity: 0.6;
    transition: opacity var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.lang-btn.active, .lang-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lang-btn img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-top a {
    color: var(--brand);
    font-size: 18px;
    margin-left: 10px;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.social-top a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

/* Floating Sidebar & Whatsapp */
.floating-socials {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-socials a {
    width: 45px;
    height: 45px;
    background-color: var(--bg-dark);
    border: 1px solid var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 20px;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.floating-socials a:hover {
    background-color: var(--brand);
    color: var(--white);
    transform: scale(1.1) translateX(5px);
    box-shadow: 0 0 15px var(--brand);
}

.whatsapp-sticky {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: all var(--transition-speed) ease;
}

.whatsapp-sticky:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

/* Home Slider */
.slider-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.slider-container {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.slide iframe {
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0.7;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    z-index: 10;
}

.slide-content h2 {
    font-size: 55px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 3px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 20px;
    color: var(--brand);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 30px;
    pointer-events: none;
    z-index: 15;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--brand);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    pointer-events: auto;
    transition: all var(--transition-speed) ease;
}

.slider-arrow:hover {
    background-color: var(--brand);
    transform: scale(1.1);
    box-shadow: 0 0 10px var(--brand);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 15;
}

.slider-dot {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid var(--brand);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.slider-dot.active, .slider-dot:hover {
    background-color: var(--brand);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--brand);
}

/* Page Titles and Sections */
section {
    padding: 60px 0;
    position: relative;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--brand);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--white);
    margin: 10px auto 0;
}

/* Carousels & Grid Systems */
.carousel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Cards & Content Items */
.card {
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(249, 30, 82, 0.15);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(249, 30, 82, 0.2);
}

/* Blog / News Grid (3-column) */
.news-track .card {
    min-width: calc((100% - 40px) / 3);
}

@media (max-width: 900px) {
    .news-track .card { min-width: calc((100% - 20px) / 2); }
}
@media (max-width: 600px) {
    .news-track .card { min-width: 100%; }
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 2px solid var(--brand);
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-date {
    font-size: 12px;
    color: var(--brand);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    flex-grow: 1;
}

.btn-brand {
    background-color: var(--brand);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-speed) ease;
    display: inline-block;
}

.btn-brand:hover {
    background-color: var(--white);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* 4-column Track (Albums, Podcasts, Gallery widgets) */
.col4-track .card {
    min-width: calc((100% - 60px) / 4);
}

@media (max-width: 1000px) {
    .col4-track .card { min-width: calc((100% - 40px) / 3); }
}
@media (max-width: 768px) {
    .col4-track .card { min-width: calc((100% - 20px) / 2); }
}
@media (max-width: 480px) {
    .col4-track .card { min-width: 100%; }
}

.album-cover-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* square ratio */
    overflow: hidden;
}

.album-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.card:hover .album-cover {
    transform: scale(1.08);
}

.album-platforms {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    background-color: rgba(0,0,0,0.5);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.platform-icon {
    font-size: 20px;
    color: var(--brand);
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.platform-icon:hover {
    color: var(--white);
    transform: scale(1.2);
}

/* Page-specific Layouts */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Grid layout for Full Pages (6 columns per row for albums/gallery) */
.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .grid-6 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 800px) {
    .grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
    .grid-6 { grid-template-columns: 1fr; }
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1000px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
}

/* Gallery Images */
.gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid rgba(249, 30, 82, 0.1);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(249, 30, 82, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    padding: 10px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    border: 3px solid var(--brand);
    border-radius: 4px;
    box-shadow: 0 0 30px var(--brand);
}

.lightbox-caption {
    margin-top: 15px;
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    transition: color var(--transition-speed) ease;
}

.lightbox-close:hover {
    color: var(--brand);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 50px;
    cursor: pointer;
    user-select: none;
    transition: color var(--transition-speed) ease;
}

.lightbox-arrow:hover {
    color: var(--brand);
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

/* Playlists embeds styling */
.playlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}
@media (max-width: 900px) {
    .playlist-grid { grid-template-columns: 1fr; }
}

.playlist-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(249, 30, 82, 0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.playlist-card h3 {
    margin-bottom: 15px;
    color: var(--brand);
    text-transform: uppercase;
    font-size: 18px;
    border-left: 3px solid var(--white);
    padding-left: 10px;
}

/* Event List (Tour & Dates) */
.event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-row {
    display: flex;
    background-color: var(--bg-card);
    border: 1px solid rgba(249, 30, 82, 0.15);
    border-radius: 8px;
    overflow: hidden;
    align-items: center;
    padding: 20px;
    gap: 20px;
    transition: border var(--transition-speed) ease;
}

.event-row:hover {
    border-color: var(--brand);
}

.event-date-box {
    background-color: var(--brand);
    color: var(--white);
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    min-width: 100px;
}

.event-date-box .day {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.event-date-box .month-year {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.event-info {
    flex-grow: 1;
}

.event-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--text-secondary);
    font-size: 14px;
}

.event-meta span i {
    color: var(--brand);
    margin-right: 5px;
}

.event-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 180px;
}

@media (max-width: 768px) {
    .event-row {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .event-date-box {
        width: 100px;
        margin: 0 auto;
    }
    .event-meta {
        justify-content: center;
    }
}

/* Video Grid and detail styling */
.video-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(249, 30, 82, 0.15);
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-title {
    padding: 15px;
    font-weight: 700;
    color: var(--white);
    font-size: 16px;
    text-align: center;
}

/* Shop and catalog items */
.shop-product {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-img-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background-color: #000;
    border-bottom: 1px solid rgba(249, 30, 82, 0.2);
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.shop-product:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-cat {
    font-size: 12px;
    color: var(--brand);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.product-price {
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
}

.btn-whatsapp-order {
    background-color: #25d366;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px;
    border: none;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.btn-whatsapp-order:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Contact page elements */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-panel h3 {
    font-size: 24px;
    color: var(--brand);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-info-item i {
    font-size: 20px;
    color: var(--brand);
    margin-top: 5px;
}

.contact-info-text h4 {
    font-weight: 700;
    color: var(--white);
}

.contact-form {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(249, 30, 82, 0.15);
}

.form-group {
    margin-bottom: 20px;
}

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

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; margin-bottom: 0; }
    .form-row .form-group { margin-bottom: 20px; }
}

.form-group label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    background-color: var(--bg-body);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 15px;
    font-family: inherit;
    font-size: 15px;
    border-radius: 4px;
    outline: none;
    transition: border var(--transition-speed) ease;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--brand);
}

.form-status {
    padding: 12px;
    border-radius: 4px;
    font-weight: 700;
    margin-top: 15px;
    display: none;
}

.form-status.success {
    background-color: rgba(37, 211, 102, 0.2);
    color: #25d366;
    border: 1px solid #25d366;
    display: block;
}

.form-status.error {
    background-color: rgba(249, 30, 82, 0.2);
    color: var(--brand);
    border: 1px solid var(--brand);
    display: block;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--brand);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Footer Section */
footer {
    background-color: var(--bg-dark);
    border-top: 2px solid var(--brand);
    padding-top: 60px;
    box-shadow: 0 -4px 20px rgba(249, 30, 82, 0.05);
}

.footer-top {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 0 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; }
}

.footer-col h3 {
    color: var(--brand);
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-left: 12px;
}

.footer-col h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 3px;
    background-color: var(--white);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-weight: 500;
}

.footer-col ul li a:hover {
    color: var(--brand);
    padding-left: 5px;
}

.footer-logo-desc img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo-desc p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background-color: var(--bg-body);
    border: 1px solid var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 16px;
    transition: all var(--transition-speed) ease;
}

.footer-socials a:hover {
    background-color: var(--brand);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-banner-text {
    max-width: 1300px;
    margin: 0 auto;
    padding: 25px 20px;
    text-align: center;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-secondary);
}

.footer-bottom a {
    color: var(--brand);
}

.footer-bottom a:hover {
    color: var(--white);
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Pagination Control */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    z-index: 10;
}

.page-num {
    width: 40px;
    height: 40px;
    border: 1px solid var(--brand);
    border-radius: 4px;
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer;
    background-color: var(--bg-card);
    transition: all var(--transition-speed) ease;
}

.page-num.active, .page-num:hover {
    background-color: var(--brand);
    color: var(--white);
    box-shadow: 0 0 10px var(--brand);
}

.page-num.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: rgba(255,255,255,0.1);
    color: var(--text-secondary);
}

/* Carousel Control Arrows */
.carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--brand);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.carousel-arrow:hover {
    background-color: var(--brand);
    box-shadow: 0 0 10px var(--brand);
}

/* Simple About layout */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid var(--brand);
    box-shadow: 0 0 25px rgba(249, 30, 82, 0.3);
}

.about-content {
    font-size: 18px;
    color: var(--text-secondary);
}

.about-content h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
}

@media (max-width: 900px) {
    .about-split { grid-template-columns: 1fr; gap: 30px; }
}

/* Headliners formatting */
.headliner-wrapper {
    background-color: var(--bg-card);
    border: 1px solid rgba(249, 30, 82, 0.15);
    padding: 40px;
    border-radius: 8px;
}

.headliner-wrapper h3 {
    color: var(--brand);
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.headliner-wrapper ul {
    list-style: square;
    padding-left: 20px;
    margin-bottom: 20px;
}

.headliner-wrapper li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

/* FontAwesome and flags styles */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
