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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* FLOATING PARTICLES */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particles span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(25, 118, 210, 0.3);
    border-radius: 50%;
    animation: float 15s infinite;
}

.particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.particles span:nth-child(2) { left: 20%; animation-delay: 2s; }
.particles span:nth-child(3) { left: 30%; animation-delay: 4s; }
.particles span:nth-child(4) { left: 40%; animation-delay: 6s; }
.particles span:nth-child(5) { left: 50%; animation-delay: 8s; }
.particles span:nth-child(6) { left: 60%; animation-delay: 10s; }
.particles span:nth-child(7) { left: 70%; animation-delay: 12s; }
.particles span:nth-child(8) { left: 80%; animation-delay: 14s; }

@keyframes float {
    0%, 100% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1); }
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 50%, #42a5f5 100%);
    color: white;
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(70px, 70px); }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero h2 {
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 400;
    margin-bottom: 30px;
}

.fade-in {
    animation: fadeInUp 1s ease;
}

.fade-in-delay {
    animation: fadeInUp 1s ease 0.3s backwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* COUNTDOWN */
.countdown-box {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    min-width: 80px;
    animation: scaleIn 0.5s ease backwards;
}

.countdown-item:nth-child(1) { animation-delay: 0.5s; }
.countdown-item:nth-child(2) { animation-delay: 0.6s; }
.countdown-item:nth-child(3) { animation-delay: 0.7s; }
.countdown-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0); }
    to { opacity: 1; transform: scale(1); }
}

.countdown-item .count {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-item .label {
    display: block;
    font-size: 0.8rem;
    margin-top: 5px;
    opacity: 0.9;
}

.hero .date, .hero .location {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin: 10px 0;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: white;
    color: #0d47a1;
    margin-top: 20px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #0d47a1;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease;
}

/* TENTANG KEGIATAN */
.about {
    padding: 80px 20px;
    background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
    position: relative;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.card.visible {
    animation: slideUp 0.6s ease forwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(25, 118, 210, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .card-glow {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(25, 118, 210, 0.3);
}

.card .icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card h3 {
    font-size: 1.5rem;
    color: #0d47a1;
    margin-bottom: 10px;
}

.card p {
    color: #666;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd54f, #ffb300);
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-badge.coming-soon {
    background: linear-gradient(135deg, #9e9e9e, #757575);
    color: white;
}

/* WAKTU DAN TEMPAT */
.info {
    padding: 60px 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-item {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0;
    transform: scale(0.8);
}

.info-item.visible {
    animation: zoomIn 0.6s ease forwards;
}

@keyframes zoomIn {
    to { opacity: 1; transform: scale(1); }
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: rotate 3s infinite;
}

@keyframes rotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.info-item h3 {
    font-size: 1.5rem;
    color: #0d47a1;
    margin-bottom: 15px;
}

.info-item p {
    font-size: 1.1rem;
    color: #555;
}

/* LOMBA OLAHRAGA */
.sports {
    padding: 80px 20px;
    background: white;
}

.sports h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #0d47a1;
    text-align: center;
    margin-bottom: 15px;
}

.section-date {
    text-align: center;
    font-size: 1.2rem;
    color: #1976d2;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-info {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.sports-content {
    max-width: 800px;
    margin: 0 auto;
}

.sports-list {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f4f8 100%);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.slide-in {
    opacity: 0;
    transform: translateX(-50px);
}

.slide-in.visible {
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    to { opacity: 1; transform: translateX(0); }
}

.sports-list h3 {
    color: #0d47a1;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.sports-list ul {
    list-style: none;
}

.list-item {
    padding: 15px;
    margin: 10px 0;
    font-size: 1.1rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #1976d2;
    opacity: 0;
    animation: fadeInLeft 0.5s ease forwards;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.bullet {
    margin-right: 10px;
}

.sports-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-sports {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: white;
    padding: 15px 35px;
    box-shadow: 0 5px 15px rgba(13, 71, 161, 0.3);
}

.shake-hover:hover {
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* LOMBA SENI */
.art {
    padding: 80px 20px;
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.art h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #0d47a1;
    text-align: center;
    margin-bottom: 15px;
}

.art-categories {
    text-align: center;
    margin: 30px 0;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-badge {
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.3);
    animation: fadeInUp 0.8s ease;
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.song-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid #1976d2;
}

.flip-in {
    opacity: 0;
    transform: rotateY(90deg);
}

.flip-in.visible {
    animation: flipIn 0.8s ease forwards;
}

@keyframes flipIn {
    to { opacity: 1; transform: rotateY(0); }
}

.song-box h3 {
    color: #0d47a1;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.song-box ul {
    list-style: none;
}

.song-item {
    padding: 12px;
    margin: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    opacity: 0;
    animation: fadeInLeft 0.5s ease forwards;
    transition: all 0.3s ease;
}

.song-item:hover {
    background: #f5f9ff;
    padding-left: 20px;
    color: #0d47a1;
}

.note {
    color: #1976d2;
    margin-right: 10px;
    font-size: 1.2rem;
}

.art-button {
    text-align: center;
    margin-top: 40px;
}

.btn-art {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: white;
    padding: 15px 50px;
    box-shadow: 0 5px 20px rgba(13, 71, 161, 0.3);
}

/* SECTION PENDAFTARAN */
.registration {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.registration::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
    animation: patternMove 15s linear infinite;
}

.registration .container {
    position: relative;
    z-index: 1;
}

.registration-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.registration h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 20px;
    font-weight: 400;
}

.registration-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.registration-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-register {
    background: white;
    color: #0d47a1;
    padding: 20px 40px;
    font-size: clamp(1rem, 3vw, 1.2rem);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.glow-btn {
    position: relative;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: linear-gradient(45deg, #ffd54f, #ffb300);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-btn:hover::before {
    opacity: 1;
}

.glow-btn:hover {
    color: #333;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 213, 79, 0.5);
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, #0a2540 0%, #0d47a1 100%);
    color: white;
    text-align: center;
    padding: 50px 20px 30px;
}

/* KETENTUAN PESERTA */
.rules {
    padding: 80px 20px;
    background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
}

.rules h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #0d47a1;
    text-align: center;
    margin-bottom: 30px;
}

.rules-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.rules-intro p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.rules-flex {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.rule-badge {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.rule-box {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid #1976d2;
    transition: transform 0.3s ease;
}

.rule-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(25, 118, 210, 0.2);
}

.rule-icon {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.rule-box h3 {
    color: #0d47a1;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

.rule-box ul {
    list-style: none;
    margin-bottom: 20px;
}

.rule-box li {
    padding: 12px 0;
    color: #555;
    font-size: 1.05rem;
    border-bottom: 1px solid #eee;
}

.rule-box li:last-child {
    border-bottom: none;
}

.rule-note {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.note-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.rule-note p {
    margin: 0;
    color: #0d47a1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: bounce 3s infinite;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-address {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    line-height: 40px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    transform: translateY(-5px) rotate(360deg);
}

.footer-copy {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(25, 118, 210, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.6);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px 40px;
        min-height: auto;
    }
    
    .countdown-box {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 12px 15px;
    }
    
    .countdown-item .count {
        font-size: 1.5rem;
    }
    
    .cards {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .songs-grid {
        grid-template-columns: 1fr;
    }
    
    .registration-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-register {
        width: 100%;
        max-width: 300px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .card {
        padding: 30px 20px;
    }
    
    .sports-list, .song-box {
        padding: 20px;
    }
}

/* TRY OUT TKA - ENHANCED VERSION */
.tryout {
    padding: 80px 20px;
    background: white;
    position: relative;
}

.tryout h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #0d47a1;
    text-align: center;
    margin-bottom: 15px;
}

.tryout-content {
    max-width: 900px;
    margin: 0 auto;
}

.tryout-info {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f4f8 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    border-top: 5px solid #1976d2;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tryout-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(25, 118, 210, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tryout-info:hover::before {
    opacity: 1;
}

.tryout-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(25, 118, 210, 0.2);
}

.tryout-info h3 {
    color: #0d47a1;
    font-size: 1.6rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.tryout-info p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.tryout-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 15px;
    background: white;
    border-radius: 12px;
    font-size: 1rem;
    color: #333;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #1976d2;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.2);
    background: #f5f9ff;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tryout-button {
    text-align: center;
}

.btn-tryout {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: white;
    padding: 18px 50px;
    box-shadow: 0 5px 20px rgba(13, 71, 161, 0.3);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-tryout:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.4);
}

@media (max-width: 768px) {
    .tryout-info {
        padding: 30px 20px;
    }
    
    .tryout-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 15px;
    }
}

/* ACCOMPANIMENT NOTE */
.accompaniment-note {
    max-width: 700px;
    margin: 30px auto;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 20px 30px;
    border-radius: 15px;
    border-left: 5px solid #ff9800;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.2);
    animation: fadeInUp 0.8s ease;
}

.accompaniment-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.accompaniment-note p {
    margin: 0;
    color: #e65100;
    font-size: 1.05rem;
    line-height: 1.6;
}

.accompaniment-note strong {
    color: #bf360c;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .accompaniment-note {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .accompaniment-icon {
        font-size: 2rem;
    }
}

/* QUOTA ALERT */
.quota-alert {
    max-width: 700px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    padding: 20px 30px;
    border-radius: 15px;
    border-left: 5px solid #f44336;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(244, 67, 54, 0.2);
    animation: fadeInUp 0.8s ease;
}

.quota-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.quota-alert p {
    margin: 0;
    color: #c62828;
    font-size: 1.05rem;
    line-height: 1.6;
}

.quota-alert strong {
    color: #b71c1c;
    font-size: 1.15rem;
}

@media (max-width: 768px) {
    .quota-alert {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .quota-icon {
        font-size: 2rem;
    }
}

