/* ============================================
   GENERAL & RESPONSIVE DESIGN
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: linear-gradient(135deg, #D2B48C 0%, #CD853F 50%, #DAA520 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 20px;
}

.logo {
    color: white;
    text-decoration: none;
}

.logo h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

.tagline {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.8;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #FFD700;
    border-radius: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.3s;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */

.language-switcher {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 12px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

#langFlag {
    font-size: 18px;
}

#langIcon {
    font-size: 16px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, #D2B48C 0%, #CD853F 100%);
    color: white;
    padding: 100px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 56px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.8;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.profile-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: #fff;
    color: #CD853F;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #667eea;
}

/* ============================================
   MUSIC SECTION
   ============================================ */

.music-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 16px;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.music-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.music-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: linear-gradient(135deg, #D2B48C 0%, #CD853F 100%);
}

.music-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.music-card:hover .music-card-image img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(193, 120, 23, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: white;
    border: none;
    cursor: pointer;
    font-size: 28px;
    color: #CD853F;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

.music-card-info {
    padding: 25px;
}

.music-card-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
}

.artist {
    color: #CD853F;
    font-weight: 600;
    margin-bottom: 12px;
}

.description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.music-links {
    display: flex;
    gap: 15px;
}

.coming-soon-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #D2B48C 0%, #CD853F 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    width: 100%;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(205, 133, 63, 0.3);
    border: none;
    font-family: inherit;
}

.coming-soon-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 133, 63, 0.5);
}

.coming-soon-badge:active {
    transform: translateY(0);
}

.coming-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.coming-text {
    display: inline-block;
}

.mini-countdown {
    display: block;
    font-size: 10px;
    font-weight: 400;
    opacity: 0.95;
    margin-top: 0;
    letter-spacing: 0.5px;
    font-family: 'Courier New', monospace;
}


.mini-countdown {
    display: block;
    font-size: 10px;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 2px;
    letter-spacing: 0.5px;
    font-family: 'Courier New', monospace;
}

.music-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    color: #CD853F;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.music-links a:hover {
    background-color: #CD853F;
    color: white;
    transform: translateY(-3px);
}

/* ============================================
   MUSIC PLAYERS
   ============================================ */

.music-players {
    margin-top: 40px;
}

.player {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.player h4 {
    margin: 0;
    color: #333;
    font-size: 16px;
    width: 100%;
    text-align: center;
}

.player iframe {
    width: 100%;
    max-width: 100%;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #CD853F;
    transition: color 0.3s ease;
    align-self: flex-end;
}

.close-btn:hover {
    color: #D2B48C;
}

.hidden {
    display: none !important;
}

/* ============================================
   VIDEOS SECTION
   ============================================ */

.videos-section {
    padding: 100px 20px;
    background-color: white;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-channel-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.9) 0%, rgba(193, 120, 23, 0.9) 100%);
    transition: all 0.3s ease;
    font-size: 48px;
    gap: 15px;
    display: none;
}

.youtube-channel-link i {
    font-size: 64px;
}

.youtube-channel-link span {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.youtube-channel-link:hover {
    background: linear-gradient(135deg, rgba(212, 165, 116, 1) 0%, rgba(193, 120, 23, 1) 100%);
    transform: scale(1.05);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.video-info p {
    color: #666;
    font-size: 14px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.bio {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    max-width: 100%;
}

.stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.stat {
    flex: 1;
    text-align: center;
}

.stat h4 {
    color: #CD853F;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.stat p {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.social-links h4 {
    margin: 30px 0 20px 0;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #CD853F;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.social-icon:hover {
    background-color: #D2B48C;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(193, 120, 23, 0.4);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 100px 20px;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-item i {
    font-size: 28px;
    color: #667eea;
    min-width: 35px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #764ba2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #CD853F;
    box-shadow: 0 0 0 3px rgba(193, 120, 23, 0.1);
}

.contact-form .btn {
    width: 100%;
}

/* ============================================
   DONATIONS SECTION
   ============================================ */

.donations-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff5f0 100%);
}

.donations-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.donations-message {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.donations-message h3 {
    font-size: 24px;
    color: #CD853F;
    margin-bottom: 20px;
}

.donations-message p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 15px;
}

.donations-message .highlight {
    background-color: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #CD853F;
    color: #333;
    font-size: 14px;
}

.donation-methods {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.donation-methods h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.donation-methods h4 {
    font-size: 18px;
    color: #333;
    margin: 30px 0 20px 0;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.donation-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.donation-card:hover {
    border-color: #CD853F;
    box-shadow: 0 10px 30px rgba(193, 120, 23, 0.15);
    transform: translateY(-5px);
}

.donation-card.featured {
    background: linear-gradient(135deg, #D2B48C 0%, #CD853F 100%);
    color: white;
    border-color: #CD853F;
    transform: scale(1.05);
}

.donation-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #FFD700;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.donation-amount {
    font-size: 32px;
    font-weight: 700;
    color: #CD853F;
    margin-bottom: 10px;
}

.donation-card.featured .donation-amount {
    color: white;
}

.donation-desc {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.donation-card.featured .donation-desc {
    color: white;
}

.donation-detail {
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
}

.donation-card.featured .donation-detail {
    color: rgba(255, 255, 255, 0.9);
}

.donation-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
}

.custom-donation-input {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.custom-donation-input input {
    flex: 1;
    min-width: 120px;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.custom-donation-input input:focus {
    outline: none;
    border-color: #CD853F;
}

.custom-donation-input .btn {
    padding: 10px 20px;
    min-width: auto;
}

.custom-donation-amount {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.custom-donation-amount:focus {
    outline: none;
    border-color: #CD853F;
}

.payment-methods {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin: 20px 0 20px 0;
}

.payment-method {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.payment-method:hover {
    box-shadow: 0 5px 15px rgba(193, 120, 23, 0.1);
    transform: translateY(-3px);
}

.payment-method i {
    font-size: 32px;
    color: #CD853F;
    margin-bottom: 10px;
}

.payment-method p {
    font-size: 13px;
    color: #333;
    font-weight: 600;
}

.payment-info {
    text-align: center;
    color: #666;
    font-size: 13px;
    margin-top: 15px;
}

.payment-info i {
    color: #CD853F;
    margin-right: 5px;
}

.donation-cta {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
    border-radius: 12px;
    border: 2px dashed #CD853F;
}

.btn-large {
    gap: 10px;
    display: inline-flex;
    align-items: center;
}

.donation-info {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #CD853F;
}

.donation-info h4 {
    color: #CD853F;
    margin-bottom: 15px;
}

.donation-info ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.donation-info li {
    color: #666;
    font-size: 14px;
    padding: 8px 0;
}

.instagram-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.instagram-feed-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.instagram-embed-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.instagram-embed-wrapper iframe {
    display: block;
}

.instagram-follow {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
    gap: 10px;
    display: inline-flex;
    align-items: center;
}

.btn-large i {
    font-size: 22px;
}

.video-notice {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    border-left: 4px solid #CD853F;
}

.video-notice p {
    color: #333;
    margin: 0;
}

.video-notice a {
    color: #CD853F;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.video-notice a:hover {
    color: #D2B48C;
}

.video-link {
    display: inline-block;
    margin-top: 12px;
    color: #CD853F;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.video-link:hover {
    color: #D2B48C;
}

.footer {
    background: #333;
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: #D2B48C;
}

.footer-section p {
    color: #aaa;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #CD853F;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #CD853F;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background-color: #D2B48C;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

/* ============================================
   PAYMENT MODAL
   ============================================ */

.payment-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.payment-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 90%;
    max-height: 90vh;
    overflow: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.payment-modal-close {
    position: absolute;
    right: 15px;
    top: -8px;
    font-size: 32px;
    font-weight: bold;
    color: #CD853F;
    cursor: pointer;
    transition: color 0.3s ease;
}

.payment-modal-close:hover {
    color: #a85a0f;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.payment-method {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.payment-method:hover {
    transform: scale(1.1);
}

/* ============================================
   ANNOUNCEMENT MODAL
   ============================================ */

.announcement-modal {
   display: none;
   position: fixed;
   z-index: 2000;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   overflow: auto;
   background-color: rgba(0, 0, 0, 0.7);
   animation: fadeIn 0.3s ease;
}

.announcement-modal.show {
   display: flex;
   justify-content: center;
   align-items: center;
}

.announcement-modal-content {
   background-color: white;
   padding: 20px; /* espacio interno para evitar que la imagen toque los bordes */
   border-radius: 15px;
   max-width: 900px;
   width: 95%;
   max-height: 90vh;
   overflow: auto;
   position: relative;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.announcement-modal-close {
   position: absolute;
   right: 15px;
   top: 15px;
   font-size: 24px;
   font-weight: bold;
   color: white;
   cursor: pointer;
   transition: all 0.3s ease;
   background: rgba(0, 0, 0, 0.6);
   width: 36px;
   height: 36px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   z-index: 2001;
   line-height: 0.8;
   padding: 0;
   border: none;
   margin: 0;
}

.announcement-modal-close:hover {
   color: #FFD700;
   background: rgba(0, 0, 0, 0.8);
}

.announcement-inner {
   display: flex;
   flex-direction: row;
   gap: 16px;
   align-items: center;
}

.announcement-image {
   width: 36%; /* reducido para dejar más espacio a la izquierda/derecha */
   max-width: 420px;
   height: auto;
   display: block;
   margin: 0;
   border-radius: 12px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
   object-fit: cover;
}

.announcement-text {
   padding: 24px 28px;
   text-align: left;
   width: 62%;
}

.announcement-text h2 {
   font-size: 36px;
   color: #CD853F;
   margin-bottom: 10px;
}

.announcement-text h3 {
   font-size: 28px;
   color: #333;
   margin-bottom: 12px;
   font-weight: 700;
}

.announcement-text p {
   font-size: 16px;
   color: #666;
   margin-bottom: 12px;
   line-height: 1.6;
}

.announcement-subtitle {
   font-size: 14px;
   color: #999;
   margin-bottom: 20px;
}

.announcement-text .btn {
   margin-top: 12px;
}

.countdown-timer {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 15px;
   margin: 25px 0;
   padding: 20px;
   background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
   border-radius: 12px;
   text-align: center;
}

.countdown-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
}

.countdown-value {
   font-size: 28px;
   font-weight: bold;
   color: #CD853F;
   display: block;
   line-height: 1;
   margin-bottom: 5px;
}

.countdown-label {
   font-size: 12px;
   color: #666;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

/* Media queries para announcement modal */
@media (max-width: 768px) {
   .announcement-modal-content {
       max-width: 95%;
       max-height: 95vh;
       margin: 10px;
       border-radius: 12px;
   }

   .announcement-modal-close {
       right: 10px;
       top: 10px;
       width: 32px;
       height: 32px;
       font-size: 20px;
   }

   .announcement-inner {
       flex-direction: column;
       align-items: center;
   }

   .announcement-image {
       width: 100%;
       max-width: 360px;
       margin: 20px auto;
   }

   .announcement-text {
       padding: 20px;
       width: 100%;
       text-align: center;
   }

   .announcement-text h2 {
       font-size: 28px;
       margin-bottom: 10px;
   }

   .announcement-text h3 {
       font-size: 24px;
       margin-bottom: 15px;
   }

   .announcement-text p {
       font-size: 14px;
       margin-bottom: 12px;
   }

   .countdown-timer {
       grid-template-columns: repeat(4, 1fr);
       gap: 10px;
       padding: 15px;
       margin: 15px 0;
   }

   .countdown-value {
       font-size: 20px;
   }

   .countdown-label {
       font-size: 10px;
   }

   .announcement-subtitle {
       font-size: 12px;
       margin-bottom: 20px;
   }

   .announcement-text .btn {
       margin-top: 15px;
       padding: 10px 25px;
       font-size: 13px;
   }
}

@media (max-width: 480px) {
   .announcement-modal-content {
       max-width: 100%;
       max-height: 100vh;
       margin: 0;
       border-radius: 8px;
   }

   .announcement-modal-close {
       right: 8px;
       top: 8px;
       width: 30px;
       height: 30px;
       font-size: 18px;
   }

   .announcement-image {
       max-width: 280px;
       margin: 15px auto;
       border-radius: 8px;
   }

   .announcement-inner {
       max-height: 100vh;
       overflow-y: auto;
   }

   .announcement-text {
       padding: 20px;
   }

   .announcement-text h2 {
       font-size: 22px;
       margin-bottom: 8px;
   }

   .announcement-text h3 {
       font-size: 20px;
       margin-bottom: 12px;
   }

   .announcement-text p {
       font-size: 13px;
       margin-bottom: 10px;
       line-height: 1.5;
       word-wrap: break-word;
       overflow-wrap: break-word;
   }

   .announcement-subtitle {
       font-size: 11px;
       margin-bottom: 15px;
   }

   .countdown-timer {
       grid-template-columns: repeat(2, 1fr);
       gap: 8px;
       padding: 12px;
       margin: 12px 0;
   }

   .countdown-value {
       font-size: 18px;
   }

   .countdown-label {
       font-size: 9px;
   }

   .announcement-text .btn {
       margin-top: 12px;
       padding: 9px 20px;
       font-size: 12px;
       width: 100%;
   }
}

/* ============================================
   DITTO MODAL (PRE-SAVE POPUP)
   ============================================ */

.ditto-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.ditto-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ditto-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 700px;
    width: 95%;
    max-height: 90vh;
    overflow: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.ditto-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #CD853F;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    width: auto;
    height: auto;
}

.ditto-modal-close:hover {
    color: #a85a0f;
}

.ditto-iframe-container {
    text-align: center;
}

.ditto-iframe-container h3 {
    color: #CD853F;
    margin-bottom: 10px;
    font-size: 24px;
}

.ditto-iframe-container p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .ditto-modal-content {
        padding: 20px;
        max-width: 95%;
        max-height: 95vh;
    }

    .ditto-modal-close {
        right: 10px;
        top: 10px;
        font-size: 24px;
    }

    .ditto-iframe-container h3 {
        font-size: 20px;
    }

    .ditto-iframe-container p {
        font-size: 14px;
    }

    .ditto-iframe-container iframe {
        max-width: 100% !important;
        height: 400px !important;
    }
}

@media (max-width: 480px) {
    .ditto-modal-content {
        padding: 15px;
        margin: 0;
    }

    .ditto-modal-close {
        right: 8px;
        top: 8px;
        font-size: 20px;
    }

    .ditto-iframe-container {
        padding: 0;
    }

    .ditto-iframe-container h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .ditto-iframe-container p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .ditto-iframe-container iframe {
        max-width: 100% !important;
        height: 300px !important;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #D2B48C 0%, #CD853F 100%);
        padding: 20px;
        gap: 0;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
    }

    .nav-link.active::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .profile-img {
        max-width: 500px;
    }

    .music-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-direction: row;
        gap: 15px;
        justify-content: space-around;
    }

    .stat {
        flex: 1;
        min-width: auto;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .player {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .player audio {
        width: 100%;
    }

    .nav-container {
        height: auto;
        padding: 15px 20px;
        gap: 10px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .logo p {
        font-size: 12px;
    }

    .donations-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .donation-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .donation-card {
        padding: 20px 15px;
    }

    .donation-card.featured {
        transform: scale(1);
    }

    .donation-amount {
        font-size: 24px;
    }

    .donation-desc {
        font-size: 14px;
    }

    .payment-icons {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .payment-method {
        padding: 20px 10px;
        font-size: 14px;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .video-card {
        margin-bottom: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-section ul {
        justify-content: center;
    }

    .instagram-embed-wrapper iframe {
        max-height: 400px;
    }

    .donation-btn {
        width: 100%;
        padding: 10px 15px;
        font-size: 13px;
    }

    .custom-donation-amount {
        font-size: 14px;
        padding: 10px;
    }

    .social-icons {
        flex-wrap: wrap;
        gap: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        top: 65px;
        padding: 15px;
    }

    .hero {
        padding: 30px 20px;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .btn {
        padding: 10px 15px;
        font-size: 12px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .container {
        padding: 0 12px;
        max-width: 100%;
    }



    .music-card-info h3 {
        font-size: 16px;
    }

    .music-card-info p {
        font-size: 12px;
    }

    .music-links {
        gap: 8px;
    }

    .music-links a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .stat {
        padding: 10px;
    }

    .stat h4 {
        font-size: 12px;
    }

    .stat p {
        font-size: 20px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .donation-options {
        gap: 10px;
        grid-template-columns: 1fr;
    }

    .donation-card {
        padding: 15px 10px;
        margin: 0 auto;
        max-width: 100%;
    }

    .donation-amount {
        font-size: 20px;
    }

    .donation-desc {
        font-size: 12px;
    }

    .donation-detail {
        font-size: 11px;
    }

    .donation-badge {
        padding: 3px 10px;
        font-size: 10px;
    }

    .payment-icons {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-method {
        padding: 15px 8px;
        font-size: 12px;
        text-align: center;
    }

    .payment-method i {
        font-size: 28px;
        display: block;
        margin-bottom: 5px;
    }

    .contact-item {
        margin-bottom: 15px;
    }

    .contact-item h4 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .contact-item a {
        font-size: 12px;
        word-break: break-all;
    }

    .contact-form {
        padding: 15px 10px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group input,
    .form-group textarea {
        padding: 8px;
        font-size: 13px;
        width: 100%;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .contact-form .btn {
        width: 100%;
        margin-top: 10px;
    }

    .video-card {
        margin-bottom: 15px;
    }

    .video-wrapper {
        min-height: 200px;
    }

    .video-info h3 {
        font-size: 14px;
    }

    .video-info p {
        font-size: 12px;
    }

    .footer-content {
        gap: 15px;
        grid-template-columns: 1fr;
    }

    .footer-section h4 {
        font-size: 14px;
    }

    .footer-section p,
    .footer-section a,
    .footer-section li {
        font-size: 12px;
    }

    .footer-section ul {
        list-style: none;
        padding: 0;
    }

    .footer-section li {
        margin: 8px 0;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .instagram-embed-wrapper iframe {
        max-height: 300px;
    }

    .instagram-follow {
        margin-top: 15px;
    }

    .custom-donation-amount {
        font-size: 13px;
        padding: 8px;
        width: 100%;
    }

    .donation-btn {
        padding: 8px 12px;
        font-size: 12px;
        width: 100%;
    }

    .custom-donation-amount::placeholder {
        font-size: 12px;
    }

    .about-image {
        max-width: 100%;
    }

    .about-image img {
        max-width: 100%;
        height: auto;
    }

    .profile-img {
        max-width: 350px;
    }

    .music-card {
        padding: 15px;
    }

    .nav-container {
        height: auto;
        padding: 10px 15px;
        gap: 5px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .logo p {
        font-size: 10px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }

    #langCode {
        font-size: 10px;
    }

    #langIcon {
        font-size: 14px;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
    }

    /* iPhone specific fixes */
    section {
        padding: 30px 15px;
    }

    .donation-msg {
        font-size: 13px;
        line-height: 1.4;
    }

    .donation-card:first-child {
        margin-top: 0;
    }

    .custom-donation-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .custom-donation-amount {
        max-width: 100%;
    }

    .music-grid {
        gap: 15px;
    }

    .about-section {
        padding: 30px 15px;
    }

    .about-content {
        gap: 20px;
    }

    .about-text h3 {
        font-size: 24px;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .bio {
        font-size: 14px;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        white-space: normal;
        max-width: 100%;
    }

    .about-text {
        max-width: 100%;
        overflow-x: hidden;
    }

    .stats {
        gap: 10px;
        margin: 20px 0;
        padding: 20px 0;
        flex-wrap: wrap;
    }

    .stat h4 {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .stat p {
        font-size: 24px;
    }

    .social-icons {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .social-links h4 {
        font-size: 14px;
        margin: 20px 0 15px 0;
    }

    .video-notice {
        font-size: 12px;
    }

    .video-notice a {
        word-break: break-all;
    }

    .instagram-section {
        padding: 30px 15px;
    }
}

/* Ultra small devices (iPhone SE, iPhone 8, etc.) */
@media (max-width: 375px) {
    .section-title {
        font-size: 20px;
    }

    .hero-text h1 {
        font-size: 22px;
    }

    .btn {
        padding: 9px 12px;
        font-size: 11px;
    }

    .music-card-info h3 {
        font-size: 14px;
    }

    .music-card-info p {
        font-size: 11px;
    }

    .donation-amount {
        font-size: 18px;
    }

    .payment-method i {
        font-size: 24px;
    }

    .contact-item a {
        font-size: 11px;
    }

    .logo h1 {
        font-size: 16px;
    }

    .custom-donation-amount {
        font-size: 12px;
    }

    .donation-btn {
        padding: 8px 10px;
        font-size: 11px;
    }

    .footer-section h4 {
        font-size: 13px;
    }

    .footer-section p,
    .footer-section a,
    .footer-section li {
        font-size: 11px;
    }

    .container {
        padding: 0 12px;
    }

    section {
        padding: 25px 12px;
    }

    .contact-form {
        padding: 12px 8px;
    }

    .form-group input,
    .form-group textarea {
        padding: 7px;
        font-size: 12px;
    }

    .music-card {
        padding: 12px;
    }

    .nav-container {
        padding: 8px 12px;
    }

    .video-notice {
        font-size: 11px;
    }
}
