/* ============================================
   COMPETITION PAGES - PREMIUM REDESIGN
   CTF Mahasiswa, LKTI Mahasiswa, LKTI SMA/SMK
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
    --comp-primary: #2878eb;
    --comp-primary-dark: #1a5bbf;
    --comp-primary-light: #5a9bff;
    --comp-accent: #00d4ff;
    --comp-accent-2: #7c3aed;
    --comp-gold: #f59e0b;
    --comp-silver: #94a3b8;
    --comp-bronze: #d97706;
    --comp-dark: #0f172a;
    --comp-dark-2: #1e293b;
    --comp-surface: #f8fafc;
    --comp-glass: rgba(255, 255, 255, 0.08);
    --comp-glass-border: rgba(255, 255, 255, 0.15);
    --comp-shadow-lg: 0 25px 60px -12px rgba(0, 0, 0, 0.25);
    --comp-shadow-glow: 0 0 40px rgba(40, 120, 235, 0.15);
    --comp-radius: 20px;
    --comp-radius-sm: 12px;
    --comp-transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- OVERVIEW / ABOUT SECTION REDESIGN ---- */
.comp-overview-section {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 50%, #f8fafc 100%);
}

.comp-overview-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40, 120, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.comp-overview-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Image Container with Floating Frame */
.comp-overview-img-wrapper {
    position: relative;
    border-radius: var(--comp-radius);
    overflow: hidden;
    min-height: 500px;
    box-shadow: var(--comp-shadow-lg);
    transition: transform 0.6s var(--comp-transition);
}

.comp-overview-img-wrapper:hover {
    transform: translateY(-8px) scale(1.01);
}

.comp-overview-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

.comp-overview-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--comp-transition);
}

.comp-overview-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Decorative floating accent behind the image */
.comp-overview-img-wrapper::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: calc(var(--comp-radius) + 4px);
    background: linear-gradient(135deg, var(--comp-primary), var(--comp-accent), var(--comp-accent-2));
    z-index: -1;
    opacity: 0.25;
    filter: blur(20px);
    animation: comp-glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes comp-glow-pulse {
    0% { opacity: 0.15; transform: scale(1); }
    100% { opacity: 0.3; transform: scale(1.02); }
}

/* Content Side */
.comp-overview-content {
    position: relative;
    z-index: 2;
}

.comp-overview-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(40, 120, 235, 0.1), rgba(0, 212, 255, 0.08));
    border: 1px solid rgba(40, 120, 235, 0.2);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--comp-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    animation: comp-badge-shine 3s ease-in-out infinite;
}

@keyframes comp-badge-shine {
    0%, 100% { box-shadow: 0 0 0 0 rgba(40, 120, 235, 0.1); }
    50% { box-shadow: 0 0 20px 0 rgba(40, 120, 235, 0.15); }
}

.comp-overview-badge i {
    font-size: 0.75rem;
}

.comp-overview-title {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--comp-dark);
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.comp-overview-title .title-accent {
    background: linear-gradient(135deg, var(--comp-primary), var(--comp-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comp-overview-text {
    font-family: 'Inter', 'Open Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #475569;
    position: relative;
    padding-left: 24px;
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, var(--comp-primary), var(--comp-accent)) 1;
}

.comp-overview-text::first-letter {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--comp-primary);
    float: left;
    line-height: 1;
    margin-right: 4px;
    margin-top: 4px;
}

/* Highlight key phrases within text */
.comp-highlight {
    background: linear-gradient(180deg, transparent 60%, rgba(40, 120, 235, 0.12) 60%);
    font-weight: 600;
    color: var(--comp-dark);
}

/* ---- TIMELINE SECTION REDESIGN ---- */
.comp-timeline-section {
    position: relative;
    padding: 100px 0;
    background: var(--comp-dark);
    overflow: hidden;
}

/* Animated background grid */
.comp-timeline-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(40, 120, 235, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(40, 120, 235, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    animation: comp-grid-move 20s linear infinite;
}

@keyframes comp-grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Glowing orbs */
.comp-timeline-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40, 120, 235, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: comp-orb-float 8s ease-in-out infinite alternate;
}

@keyframes comp-orb-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 20px) scale(1.1); }
}

.comp-timeline-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.comp-timeline-header .comp-section-label {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(40, 120, 235, 0.15);
    border: 1px solid rgba(40, 120, 235, 0.3);
    border-radius: 50px;
    color: var(--comp-accent);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.comp-timeline-header h2 {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}

.comp-timeline-header h2 span {
    background: linear-gradient(135deg, var(--comp-primary-light), var(--comp-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comp-timeline-header .comp-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-top: 8px;
}

/* Timeline Container */
.comp-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
    z-index: 2;
}

/* Center line */
.comp-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--comp-primary), var(--comp-accent), var(--comp-primary), transparent);
    transform: translateX(-50%);
    z-index: 1;
}

/* Timeline Item */
.comp-timeline-item {
    position: relative;
    width: 50%;
    padding: 0 50px 40px;
    box-sizing: border-box;
}

.comp-timeline-item:last-child {
    padding-bottom: 0;
}

/* Odd items - left */
.comp-timeline-item:nth-child(odd) {
    left: 0;
    padding-left: 0;
    padding-right: 50px;
    text-align: right;
}

/* Even items - right */
.comp-timeline-item:nth-child(even) {
    left: 50%;
    padding-right: 0;
    padding-left: 50px;
    text-align: left;
}

/* Dot on timeline */
.comp-timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--comp-primary);
    border: 3px solid var(--comp-dark);
    box-shadow: 0 0 0 4px rgba(40, 120, 235, 0.3), 0 0 15px rgba(40, 120, 235, 0.4);
    top: 20px;
    z-index: 3;
    transition: all 0.3s ease;
}

.comp-timeline-item:nth-child(odd)::after {
    right: -8px;
}

.comp-timeline-item:nth-child(even)::after {
    left: -8px;
}

.comp-timeline-item:hover::after {
    transform: scale(1.4);
    box-shadow: 0 0 0 6px rgba(40, 120, 235, 0.4), 0 0 25px rgba(40, 120, 235, 0.6);
}

/* Timeline Card */
.comp-timeline-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--comp-radius-sm);
    padding: 22px 26px;
    position: relative;
    z-index: 2;
    transition: all 0.4s var(--comp-transition);
    overflow: hidden;
}

.comp-timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--comp-primary), var(--comp-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comp-timeline-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(40, 120, 235, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(40, 120, 235, 0.1);
}

.comp-timeline-card:hover::before {
    opacity: 1;
}

.comp-timeline-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--comp-primary), var(--comp-accent));
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.comp-timeline-card h6 {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.4;
}

.comp-timeline-card .comp-timeline-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--comp-accent);
    font-weight: 500;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.comp-timeline-item:nth-child(odd) .comp-timeline-card .comp-timeline-date {
    justify-content: flex-end;
}

.comp-timeline-item:nth-child(odd) .comp-timeline-step {
    float: right;
}

.comp-timeline-card .comp-timeline-date i {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Mobile Timeline */
@media (max-width: 767.98px) {
    .comp-timeline::before {
        left: 20px;
        transform: translateX(0);
    }

    .comp-timeline-item,
    .comp-timeline-item:nth-child(odd),
    .comp-timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        padding-left: 55px;
        padding-right: 15px;
        text-align: left;
    }

    .comp-timeline-item:nth-child(odd)::after,
    .comp-timeline-item:nth-child(even)::after {
        left: 12px;
        right: auto;
    }

    .comp-timeline-item:nth-child(odd) .comp-timeline-card .comp-timeline-date {
        justify-content: flex-start;
    }

    .comp-timeline-item:nth-child(odd) .comp-timeline-step {
        float: none;
    }

    .comp-timeline-header h2 {
        font-size: 2.2rem;
    }
}


/* ---- REWARD / PENGHARGAAN SECTION REDESIGN ---- */
.comp-reward-section {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 50%, #f8fafc 100%);
    overflow: hidden;
}

.comp-reward-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.comp-reward-header {
    text-align: center;
    margin-bottom: 60px;
}

.comp-reward-header .comp-section-label {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 50px;
    color: var(--comp-bronze);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.comp-reward-header h2 {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--comp-dark);
    letter-spacing: -0.5px;
}

.comp-reward-header .comp-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #64748b;
    margin-top: 8px;
}

/* Reward Cards */
.comp-reward-card {
    position: relative;
    background: #ffffff;
    border-radius: var(--comp-radius);
    padding: 40px 30px 35px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.5s var(--comp-transition);
    overflow: hidden;
    height: 100%;
}

.comp-reward-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--comp-radius) var(--comp-radius) 0 0;
    transition: height 0.4s ease;
}

.comp-reward-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.comp-reward-card:hover::before {
    height: 6px;
}

/* Gold Card */
.comp-reward-card.gold::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
}

.comp-reward-card.gold:hover {
    box-shadow: 0 25px 60px rgba(245, 158, 11, 0.2);
}

.comp-reward-card.gold .comp-trophy-container {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.08));
    border-color: rgba(245, 158, 11, 0.2);
}

.comp-reward-card.gold .comp-trophy-container i {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

/* Silver Card */
.comp-reward-card.silver::before {
    background: linear-gradient(90deg, #94a3b8, #cbd5e1, #94a3b8);
}

.comp-reward-card.silver:hover {
    box-shadow: 0 25px 60px rgba(148, 163, 184, 0.25);
}

.comp-reward-card.silver .comp-trophy-container {
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.12), rgba(203, 213, 225, 0.08));
    border-color: rgba(148, 163, 184, 0.25);
}

.comp-reward-card.silver .comp-trophy-container i {
    background: linear-gradient(135deg, #94a3b8, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(148, 163, 184, 0.3));
}

/* Bronze Card */
.comp-reward-card.bronze::before {
    background: linear-gradient(90deg, #d97706, #f59e0b, #d97706);
}

.comp-reward-card.bronze:hover {
    box-shadow: 0 25px 60px rgba(217, 119, 6, 0.18);
}

.comp-reward-card.bronze .comp-trophy-container {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(245, 158, 11, 0.06));
    border-color: rgba(217, 119, 6, 0.2);
}

.comp-reward-card.bronze .comp-trophy-container i {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(217, 119, 6, 0.3));
}

/* Trophy Icon Container */
.comp-trophy-container {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.comp-trophy-container i {
    font-size: 2.4rem;
    transition: transform 0.4s ease;
}

.comp-reward-card:hover .comp-trophy-container i {
    transform: scale(1.15) rotate(-5deg);
}

.comp-reward-card .comp-rank {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.comp-reward-card .comp-rank-title {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--comp-dark);
    margin-bottom: 20px;
}

.comp-reward-divider {
    width: 50px;
    height: 2px;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.comp-reward-card.gold .comp-reward-divider {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.comp-reward-card.silver .comp-reward-divider {
    background: linear-gradient(90deg, #94a3b8, #cbd5e1);
}

.comp-reward-card.bronze .comp-reward-divider {
    background: linear-gradient(90deg, #d97706, #f59e0b);
}

.comp-reward-card .comp-reward-detail {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--comp-dark);
    margin-bottom: 10px;
}

.comp-reward-card .comp-reward-bonus {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.04));
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: #16a34a;
    font-weight: 500;
}

.comp-reward-card .comp-reward-bonus i {
    font-size: 0.8rem;
    background: none;
    -webkit-text-fill-color: #16a34a;
    filter: none;
}

/* Finalis Note */
.comp-finalis-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding: 16px 30px;
    background: linear-gradient(135deg, rgba(40, 120, 235, 0.06), rgba(0, 212, 255, 0.04));
    border: 1px solid rgba(40, 120, 235, 0.12);
    border-radius: var(--comp-radius-sm);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.comp-finalis-note i {
    color: var(--comp-primary);
    font-size: 1.2rem;
}

.comp-finalis-note p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--comp-dark);
    margin-bottom: 0;
}


/* ---- CTA / BUTTONS SECTION REDESIGN ---- */
.comp-cta-section {
    position: relative;
    padding: 80px 0 100px;
    background: var(--comp-dark);
    overflow: hidden;
}

.comp-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(40, 120, 235, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.comp-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.comp-cta-content h3 {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.comp-cta-content .comp-cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.comp-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.comp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s var(--comp-transition);
    position: relative;
    overflow: hidden;
}

.comp-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comp-btn-primary {
    background: linear-gradient(135deg, var(--comp-primary), var(--comp-accent));
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(40, 120, 235, 0.35);
}

.comp-btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 35px rgba(40, 120, 235, 0.45);
    color: #ffffff !important;
}

.comp-btn-outline {
    background: transparent;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.comp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    color: #ffffff !important;
}

.comp-btn i {
    transition: transform 0.3s ease;
}

.comp-btn:hover i {
    transform: translateX(4px);
}

/* Extend Notice */
.comp-extend-notice {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 50px;
    animation: comp-notice-pulse 2s ease-in-out infinite;
}

@keyframes comp-notice-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.1); }
    50% { box-shadow: 0 0 20px 0 rgba(233, 30, 99, 0.15); }
}

.comp-extend-notice .extend-badge {
    display: inline-block;
    padding: 2px 10px;
    background: linear-gradient(135deg, #e91e63, #f44336);
    border-radius: 20px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comp-extend-notice span {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.comp-extend-notice i {
    color: var(--comp-accent);
    font-size: 1.1rem;
}


/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
    .comp-overview-title {
        font-size: 2.2rem;
    }

    .comp-timeline-header h2,
    .comp-reward-header h2 {
        font-size: 2.4rem;
    }

    .comp-cta-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .comp-overview-section {
        padding: 60px 0 50px;
    }

    .comp-overview-img-wrapper {
        min-height: 300px;
        margin-bottom: 40px;
    }

    .comp-overview-title {
        font-size: 1.8rem;
    }

    .comp-overview-text {
        font-size: 0.95rem;
        padding-left: 18px;
    }

    .comp-timeline-section,
    .comp-reward-section {
        padding: 60px 0;
    }

    .comp-timeline-header h2,
    .comp-reward-header h2 {
        font-size: 2rem;
    }

    .comp-reward-card {
        padding: 30px 24px;
    }

    .comp-cta-section {
        padding: 60px 0;
    }

    .comp-cta-content h3 {
        font-size: 1.6rem;
    }

    .comp-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .comp-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ---- SCROLL REVEAL ANIMATIONS ---- */
[data-aos="comp-fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition-property: opacity, transform;
}

[data-aos="comp-fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="comp-scale-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition-property: opacity, transform;
}

[data-aos="comp-scale-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}
