@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', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #fafafa;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.9);
    z-index: 1000;
    transition: all 0.3s ease;
}

.lang-btn {
    padding: 8px 20px;
    border: none;
    background: transparent;
    color: #4a5568;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lang-btn:hover {
    color: #ff6b35;
    transform: translateY(-1px);
}

.lang-btn.active {
    background: linear-gradient(135deg, #4851adb8 0%, #637ec5 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 20px;
}

.background-circles {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.logo-letter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 300px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(72, 81, 173, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Georgia', 'Times New Roman', serif;
    z-index: 2;
    pointer-events: none;
    user-select: none;
    letter-spacing: -15px;
    font-style: italic;
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.1);
}

.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px dashed rgba(0, 0, 0, 0.25);
    animation: rotateCircle 30s linear infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    animation-duration: 25s;
}

.circle-2 {
    width: 550px;
    height: 550px;
    margin-left: -275px;
    margin-top: -275px;
    animation-duration: 35s;
    animation-direction: reverse;
}

.circle-3 {
    width: 700px;
    height: 700px;
    margin-left: -350px;
    margin-top: -350px;
    animation-duration: 45s;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.profile-wrapper {
    position: relative;
    width: 600px;
    height: 500px;
    z-index: 10;
}

.orbit-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
    animation: orbitAroundCard 12s linear infinite;
}

@keyframes orbitAroundCard {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.avatar-section {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateX(300px);
    animation: counterRotate 12s linear infinite;
}

@keyframes counterRotate {
    from {
        transform: translate(-50%, -50%) translateX(300px) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) translateX(300px) rotate(-360deg);
    }
}

.avatar-border {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 176px;
    height: 176px;
    border-radius: 50%;
    border: 2px dashed #ffdd35;
    animation: rotateBorder 10s linear infinite;
    opacity: 0.6;
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.avatar-container {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, #355dff59 0%, #ffc542de 100%);
    padding: 6px;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.avatar-container:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.4);
}

.avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}

.status-dot {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: #687fc5;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.profile-card {
    position: absolute;
    left: 26%;
    top: 3%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    width: 350px;
    z-index: 20;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translate(-50%, -50%) translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.profile-label {
    font-size: 18px;
    color: #888;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.profile-name {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-top: 24px;
    padding-bottom: 15px;

}

.profile-description {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin-top: 20px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

@media (min-width: 768px) {
    .profile-description {
        font-size: 24px;
    }
}

.profile-description a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

.profile-description a:hover {
    text-decoration: underline;
}

.profile-subtitle {
    font-size: 18px;
    color: #5f5e5e;
    font-weight: 400;
    margin: 1px 0 15px;
    letter-spacing: 0.5px;
}

.roles-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.role-item {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    background: #f5f5f5;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    animation: fadeInUp 0.5s ease-out both;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.role-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.role-item:hover::before {
    left: 100%;
}

.role-item:hover {
    background: linear-gradient(135deg, #d88263 0%, #ff8c42 100%);
    color: white;
    transform: scale(1.4) translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    font-size: 19px;
}

.role-item:nth-child(1) {
    animation-delay: 0.4s;
}

.role-item:nth-child(2) {
    animation-delay: 0.5s;
}

.role-item:nth-child(3) {
    animation-delay: 0.6s;
}

.role-item:nth-child(4) {
    animation-delay: 0.7s;
}

.role-item:nth-child(5) {
    animation-delay: 0.8s;
}

.role-item:nth-child(6) {
    animation-delay: 0.9s;
}

.role-item:nth-child(7) {
    animation-delay: 1.0s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .profile-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        height: auto;
        width: 100%;
    }

    .orbit-container {
        position: relative;
        animation: none;
    }

    .avatar-section {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        animation: none;
        margin: 0 auto;
    }

    .profile-card {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 400px;
        margin: 20px auto;
    }

    .profile-card:hover {
        transform: translateY(-5px);
    }

    .profile-name {
        font-size: 38px;
    }

    .roles-list {
        justify-content: center;
    }

    .avatar-container {
        width: 160px;
        height: 160px;
    }

    .avatar-border {
        width: 180px;
        height: 180px;
    }
}

/* Social Media Stats Section - Influencer Style */
.social-stats {
    padding: 100px 12px;
    position: relative;
    z-index: 5;
    background: transparent;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: -40px auto 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--card-color, #ff6b35), var(--card-color-light, #ff8c42));
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.stat-card.total {
    --card-color: #00a1d6;
    --card-color-light: #00b5e2;
}

.stat-card.cities {
    --card-color: #1da1f2;
    --card-color-light: #4fc3f7;
}

.stat-card.artists {
    --card-color: #ff6b35;
    --card-color-light: #ff8c42;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--card-color, #ff6b35), var(--card-color-light, #ff8c42));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 30px 24px;
    }

    .stat-number {
        font-size: 42px;
    }

    .section-title {
        font-size: 28px;
    }
}


/* Footer */
.footer {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-divider {
    color: #ddd;
    font-size: 20px;
}

.footer-tagline {
    font-size: 15px;
    color: #666;
    font-weight: 400;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #555;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, #4851adb8, #637ec5);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.footer-bottom {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-separator {
    color: #ccc;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4851adb8, #637ec5);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

@media (max-width: 768px) {
    .footer-brand {
        flex-direction: column;
        gap: 10px;
    }

    .footer-divider {
        display: none;
    }

    .footer-social {
        gap: 15px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.animated {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, #3498db, #2ecc71, #f1c40f, #e74c3c);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 25px;
    background: rgb(253, 248, 248,0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: rgba(255, 255, 255, 0.9);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    border: 3px solid #3498db;
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: -10px;
    background: rgba(255, 255, 255, 0.9);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    border: 3px solid #2ecc71;
}

.concert-date {
    font-size: 1.2rem;
    color: #6a7fc5;
    font-weight: 600;
    margin-bottom: 5px;
}

.concert-artist {
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 8px;
    font-weight: 700;
}

.concert-location {
    font-size: 1.1rem;
    color: #4ecdc4;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.concert-location i {
    font-size: 0.9rem;
}

.concert-description {
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    margin-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: #3498db #e0e0e0;
}

.gallery::-webkit-scrollbar {
    height: 8px;
}

.gallery::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 4px;
}

.gallery::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 4px;
}

.gallery-item {
    flex: 0 0 auto;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loader {
    display: none;
    text-align: center;
    padding: 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 5px solid #3498db;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.city-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.city-modal.show {
    display: flex;
}

.city-modal-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    width: 90%;
    max-width: 520px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
}

.city-modal.show .city-modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.city-modal-header {
    background: linear-gradient(135deg, #4851ad 0%, #ff6b35 100%);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: white;
    padding: 35px 30px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.city-modal-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.city-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.city-modal-close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.city-list {
    padding: 30px;
    max-height: 50vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    background: rgba(248, 249, 250, 0.4);
}

.city-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.city-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(72, 81, 173, 0.2);
    border-color: rgba(72, 81, 173, 0.3);
    background: white;
}

.city-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4851ad, #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(72, 81, 173, 0.3);
    transition: transform 0.3s ease;
}

.city-item:hover .city-icon {
    transform: scale(1.1);
}

.city-info {
    flex: 1;
}

.city-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.city-concerts {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-content img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.modal-content img.switching {
    opacity: 0;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff6b6b;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2002;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.modal-prev {
    left: 40px;
}

.modal-next {
    right: 40px;
}

.modal-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    max-width: 80%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.modal-nav.disabled:hover {
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    scale: 1;
}

@media (max-width: 768px) {
    /* 大写字母L - 移动端缩小 */
    .logo-letter {
        font-size: 180px;
        letter-spacing: -8px;
    }

    /* 语言切换器 - 移动端位置调整 */
    .language-switcher {
        top: 15px;
        right: 15px;
        padding: 5px;
    }

    .lang-btn {
        padding: 6px 16px;
        font-size: 13px;
    }

    /* 英雄区域 - 减少内边距 */
    .hero-section {
        padding: 40px 20px;
    }

    /* 统计数据卡片间距调整 */
    .stats-grid {
        gap: 20px;
        margin: -20px auto 0;
    }

    /* 图片模态框导航按钮 - 移动端适配 */
    .modal-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .modal-prev {
        left: 15px;
    }

    .modal-next {
        right: 15px;
    }

    /* 图片标题 - 移动端调整 */
    .modal-caption {
        bottom: 20px;
        font-size: 16px;
        padding: 10px 20px;
        max-width: 85%;
    }

    /* 城市模态框 - 移动端单列布局 */
    .city-modal-content {
        max-width: 90%;
        max-height: 85vh;
        border-radius: 24px;
    }

    .city-list {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 12px;
    }

    .city-item {
        padding: 20px 15px;
    }

    .city-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    /* 章节标题 - 移动端调整 */
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    /* 时间轴 - 保持现有样式 */
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: 21px;
        right: auto;
    }

    .concert-artist {
        font-size: 1.5rem;
    }

    .concert-location {
        font-size: 1rem;
    }

    /* 画廊 - 移动端优化 */
    .gallery {
        gap: 8px;
        padding: 8px 0;
    }

    .gallery-item {
        width: 100px;
        height: 67px;
    }

    /* 返回顶部按钮 - 移动端位置调整 */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}