:root {
    --purple: #6B2FA0;
    --gold: #F5A623;
    --pink: #E8174A;
    --light-bg: #F0EBF8;
    --white: #ffffff;
    --dark: #1a0a2e;
    --card-bg: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    direction: rtl;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
}

.cursor-trail {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(245, 166, 35, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.18s ease;
}

/* ─── NAVBAR ─── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 11px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(26, 10, 46, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

nav.scrolled {
    padding: 12px 5%;
    background: rgba(26, 10, 46, 0.98);
}

.nav-logo img {
    height: 55px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(232, 23, 74, 0.4);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 23, 74, 0.6);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* animated mesh background */
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(107, 47, 160, 0.5) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(232, 23, 74, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 70%, rgba(245, 166, 35, 0.2) 0%, transparent 60%),
        #1a0a2e;
}

/* floating orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float-orb 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(107, 47, 160, 0.35);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(232, 23, 74, 0.25);
    bottom: 0;
    left: -80px;
    animation-delay: 3s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(245, 166, 35, 0.2);
    top: 40%;
    left: 30%;
    animation-delay: 5s;
}

@keyframes float-orb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

/* grid pattern */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* floating particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    animation: particle-rise linear infinite;
    opacity: 0;
}

@keyframes particle-rise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.4);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 28px;
    opacity: 0;
    animation: fade-up 0.8s forwards 0.3s;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(245, 166, 35, 0)
    }
}

.hero-title {
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 8px;
    opacity: 0;
    animation: fade-up 0.9s forwards 0.5s;
}

.hero-title .word-1 {
    color: var(--white);
}

.hero-title .word-2 {
    background: linear-gradient(135deg, var(--gold) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title .bulb {
    display: inline-block;
    animation: bulb-spin 3s ease-in-out infinite;
    -webkit-text-fill-color: initial;
    color: var(--gold);
    font-size: 0.8em;
}

@keyframes bulb-spin {

    0%,
    100% {
        transform: rotate(-10deg) scale(1)
    }

    50% {
        transform: rotate(10deg) scale(1.1)
    }
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    max-width: 650px;
    margin: 0 auto 16px;
    line-height: 1.7;
    opacity: 0;
    animation: fade-up 0.9s forwards 0.7s;
}

.hero-tagline {
    font-size: clamp(18px, 2.8vw, 26px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0;
    animation: fade-up 0.9s forwards 0.9s;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-up 0.9s forwards 1.1s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(232, 23, 74, 0.45);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(232, 23, 74, 0.6);
}

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

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* stats bar */
.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 64px;
    opacity: 0;
    animation: fade-up 0.9s forwards 1.3s;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-top: 4px;
}

/* scroll indicator */
.scroll-ind {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    animation: fade-up 1s forwards 1.8s;
    cursor: pointer;
}

.scroll-ind span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    border-radius: 2px;
    background: var(--gold);
    animation: scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translate(-50%, 0)
    }

    50% {
        transform: translate(-50%, 10px)
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ─── SECTIONS COMMON ─── */
section {
    padding: 100px 5%;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title span {
    background: linear-gradient(135deg, var(--gold), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 600px;
}

/* ─── ABOUT ─── */
.about {
    background: linear-gradient(180deg, var(--dark) 0%, #0f051f 100%);
    position: relative;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-visual {
    position: relative;
}

.about-card-main {
    background: linear-gradient(135deg, rgba(107, 47, 160, 0.3), rgba(232, 23, 74, 0.2));
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 48px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.about-card-main::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -10px;
    width: 120px;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5A623' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21h6'/%3E%3Cpath d='M12 3a6 6 0 0 1 6 6c0 2.22-1.21 4.16-3 5.19V17H9v-2.81C7.21 13.16 6 11.22 6 9a6 6 0 0 1 6-6z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.08;
    transform: rotate(-20deg);
}

.about-card-main p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
}

.floating-badge {
    position: absolute;
    background: rgba(26, 10, 46, 0.95);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 20px;
    backdrop-filter: blur(20px);
    animation: float-badge 4s ease-in-out infinite;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.floating-badge.top {
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.floating-badge.bottom {
    bottom: -20px;
    right: -20px;
    animation-delay: 2s;
}

.fb-icon {
    font-size: 24px;
}

.fb-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    margin-top: 4px;
}

/* ─── WHO ─── */
.who {
    background: #0f051f;
    position: relative;
}

.who::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), var(--pink), transparent);
}

.who-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.who-card {
    background: linear-gradient(135deg, rgba(107, 47, 160, 0.15), rgba(232, 23, 74, 0.08));
    border: 1px solid rgba(107, 47, 160, 0.3);
    border-radius: 28px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.who-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -20px;
    width: 180px;
    height: 180px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5A623' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3Cpath d='M7 16.2C7 14.4 9.2 13 12 13s5 1.4 5 3.2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.04;
}

.who-text {
    font-size: 20px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
}

/* ─── CHALLENGES ─── */
.challenges {
    background: var(--dark);
    position: relative;
}

.challenges-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.challenge-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 60px;
    padding: 28px 36px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1 1 280px;
    max-width: 380px;
}

.challenge-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.challenge-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(107, 47, 160, 0.6);
    box-shadow: 0 16px 40px rgba(107, 47, 160, 0.25);
}

.challenge-card:hover::before {
    opacity: 0.12;
}

.challenge-card>* {
    position: relative;
    z-index: 1;
}

.cc-icon-wrap {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(107, 47, 160, 0.4), rgba(232, 23, 74, 0.3));
    border: 1px solid rgba(107, 47, 160, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.cc-body {
    flex: 1;
}

.cc-title {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 6px;
}

.cc-line {
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold), var(--pink));
    margin-bottom: 8px;
    transition: width 0.4s;
}

.challenge-card:hover .cc-line {
    width: 64px;
}

.cc-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ─── REWARDS ─── */
.rewards {
    background: #0f051f;
    position: relative;
}

.rewards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.reward-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.reward-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 166, 35, 0.4);
}

.rc-num {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.rc-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.2), rgba(232, 23, 74, 0.15));
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.rc-icon-wrap svg {
    width: 32px;
    height: 32px;
}

.rc-title {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
}

.rc-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* ─── STEPS HORIZONTAL TIMELINE ─── */
.steps {
    background: var(--dark);
    overflow: hidden;
}

.steps-inner {
    max-width: 1200px;
    margin: 60px auto 0;
    position: relative;
}

/* horizontal connector line */
.steps-inner::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 10%;
    left: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--pink), var(--gold));
    opacity: 0.35;
    z-index: 0;
}

.steps-track {
    display: flex;
    gap: 0;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 12px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s;
}

.step-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 4px 20px rgba(107, 47, 160, 0.4);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.4;
}

.step-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* remove old connector */
.step-connector {
    display: none;
}

@media(max-width: 768px) {
    .steps-inner::before {
        display: none;
    }

    .steps-track {
        flex-direction: column;
        gap: 24px;
    }

    .step-item {
        flex-direction: row;
        text-align: right;
        gap: 20px;
        align-items: flex-start;
    }

    .step-num {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

/* ─── CTA ─── */
.cta-section {
    background: #0f051f;
    padding: 120px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(107, 47, 160, 0.3), transparent);
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-title span {
    background: linear-gradient(135deg, var(--gold), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    line-height: 1.7;
}

.cta-notes {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cta-note::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5A623' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* ─── SPONSOR ─── */
.sponsor-section {
    background: #0f051f;
    padding: 60px 5%;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(245, 166, 35, 0.15);
    border-bottom: 1px solid rgba(245, 166, 35, 0.15);
}

.sponsor-inner {
    max-width: 700px;
    margin: 0 auto;
}

.sponsor-main-title {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
}

.sponsor-card-link {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 24px;
    padding: 24px 36px;
    text-decoration: none;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.sponsor-card-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.sponsor-card-link:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(245, 166, 35, 0.15);
}

.sponsor-card-link:hover::before {
    opacity: 1;
}

.sponsor-logo-area {
    flex-shrink: 0;
}

.sponsor-name-area {
    text-align: right;
}

.sponsor-brand {
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
}

.sponsor-url {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gold);
    margin-top: 4px;
    direction: ltr;
    justify-content: flex-end;
}

.sponsor-badge-wrap {
    margin-right: 8px;
}

.sponsor-official-badge {
    background: linear-gradient(135deg, var(--gold), var(--pink));
    color: var(--dark);
    font-size: 11px;
    font-weight: 900;
    padding: 5px 14px;
    border-radius: 50px;
    white-space: nowrap;
}

/* ─── REWARDS NEW SHOWCASE ─── */
.rewards-showcase {
    max-width: 1000px;
    margin: 60px auto 0;
}

/* Podium */
.prize-podium {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.podium-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    max-width: 280px;
}

.podium-crown {
    margin-bottom: -4px;
    animation: float-badge 3s ease-in-out infinite;
}

.podium-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podium-1 .podium-icon {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.25), rgba(232, 23, 74, 0.15));
    border: 1px solid rgba(245, 166, 35, 0.4);
}

.podium-2 .podium-icon,
.podium-3 .podium-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.podium-rank {
    font-size: 36px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
}

.podium-rank-1 {
    background: linear-gradient(135deg, var(--gold), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 48px;
}

.podium-label {
    font-size: 14px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.7);
}

.podium-prize {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.podium-prize-1 {
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
}

.podium-bar {
    width: 100%;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.podium-bar-1 {
    height: 90px;
    background: linear-gradient(180deg, rgba(245, 166, 35, 0.3), rgba(245, 166, 35, 0.05));
    border: 1px solid rgba(245, 166, 35, 0.4);
    border-bottom: none;
    box-shadow: 0 -8px 30px rgba(245, 166, 35, 0.2);
}

.podium-bar-2 {
    height: 60px;
    background: linear-gradient(180deg, rgba(200, 200, 200, 0.12), rgba(200, 200, 200, 0.02));
    border: 1px solid rgba(200, 200, 200, 0.2);
    border-bottom: none;
}

.podium-bar-3 {
    height: 42px;
    background: linear-gradient(180deg, rgba(180, 120, 60, 0.12), rgba(180, 120, 60, 0.02));
    border: 1px solid rgba(180, 120, 60, 0.2);
    border-bottom: none;
}

/* Benefits strip */
.benefits-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 20px;
}

.benefit-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    transition: all 0.3s;
}

.benefit-strip-item:hover {
    transform: translateY(-4px);
}

.bsi-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(232, 23, 74, 0.1));
    border: 1px solid rgba(245, 166, 35, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bsi-text {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.bsi-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

@media(max-width:768px) {
    .prize-podium {
        gap: 8px;
    }

    .benefit-strip-item {
        padding: 0 14px;
    }

    .bsi-divider {
        display: none;
    }

    .benefits-strip {
        gap: 16px;
    }

    .sponsor-card-link {
        flex-direction: column;
        text-align: center;
    }

    .sponsor-name-area {
        text-align: center;
    }

    .sponsor-url {
        justify-content: center;
    }
}

/* ─── FOOTER ─── */
footer {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--border);
    padding: 40px 5%;
    text-align: center;
}

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

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media(max-width:768px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        display: none;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-num {
        font-size: 28px;
    }
}