
/* =========================
      GLOBAL RESET
   — must come FIRST so it
     applies before everything
========================== */

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

html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
    color: #ffffff;
}

/* Every section clips its own overflow so
   pseudo-elements / animated blobs can't
   cause a horizontal scrollbar             */
section,
.header,
.footer,
.partners {
    width: 100%;
    overflow: hidden;
    position: relative;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* =========================
      HEADER
========================== */

.header {
    background: #000000;
    padding: 15px 8%;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 70px;
    height: auto;
    display: block;
}

.register-btn {
    display: inline-block;
    background: #FF5A1F;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all 0.3s ease;
    white-space: nowrap;          /* stops the button text wrapping */
}

.register-btn:hover {
    background: #E94E16;
    transform: translateY(-3px);
}

/* =========================
      HERO
========================== */

.hero {
    position: relative;
    width: 100%;
    height: 120vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.60));
}

.hero-content {
    position: relative;
    z-index: 2;
    /* max-width: 100px; */
    width: 100%;
    text-align: center;
    /* padding: 0 20px; */
    margin-right: 110px;
}

.hero-tagline {
    color: #FF5A1F;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 14px;
}

.hero h1 {
    font-size: 3rem;
    margin: 20px 0;
    line-height: 1.15;
    font-weight: 600;
    /* word-break: break-word; */
}

.hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #dddddd;
}

.hero-btn {
    display: inline-block;
    margin-top: 40px;
    background: #FF5A1F;
    color: #fff;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: .4s;
}

.hero-btn:hover {
    background: #E94E16;
    transform: translateY(-4px);
}

.hero-features {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    padding: 0 10px;
}

.hero-features span { color: #ffffff; font-size: 16px; }
.hero-features i    { color: #FF5A1F; margin-right: 8px; }

/* =========================
      ABOUT
========================== */

.about {
    padding: 100px 8%;
    background: #0B0B0B;
}

.about-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;          /* lets it reflow before the media query kicks in */
}

.about-image        { flex: 1; min-width: 0; }
.about-image img    { width: 100%; max-width: 500px; display: block; margin: auto; }
.about-content      { flex: 1; min-width: 0; }

.section-tag {
    display: inline-block;
    color: #FF5A1F;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    word-break: break-word;
}

.about-content p {
    color: #B8B8B8;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 35px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item   { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 500; }
.feature-item i { color: #FF5A1F; font-size: 18px; flex-shrink: 0; }

/* =========================
      CATEGORIES
========================== */

.categories {
    padding: 120px 8% 0;
    background: #050505;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 35px;
    margin-top: 70px;
}

.flip-card { height: 320px; perspective: 1200px; }

.flip-card-inner {
    width: 100%; height: 100%;
    position: relative;
    transition: transform .9s cubic-bezier(.4,.2,.2,1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 20px;
    backface-visibility: hidden;
    overflow: hidden;
}

.flip-card-front {
    background: linear-gradient(145deg,#111,#1a1a1a);
    border: 1px solid rgba(255,255,255,.08);
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
}

.flip-card-front i  { font-size: 70px; color: #FF5A1F; margin-bottom: 25px; }
.flip-card-front h3 { font-size: 28px; }

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg,#FF5A1F,#d94b18);
    color: #fff;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    padding: 30px; text-align: center;
}

.flip-card-back p   { margin: 20px 0; line-height: 1.8; }
.flip-card-back a   { color: #fff; text-decoration: none; border: 2px solid #fff; padding: 12px 30px; border-radius: 50px; transition: .3s; }
.flip-card-back a:hover { background: #fff; color: #FF5A1F; }

/* =========================
      TIMELINE SECTION
      (the left/right one)
========================== */

.timeline-section {
    background: #050505;
    padding: 120px 8%;
}

.timeline-section .timeline {
    position: relative;
    max-width: 1100px;
    margin: 80px auto;
}

.timeline-section .timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 100%;
    background: #FF5A1F;
    box-shadow: 0 0 20px #FF5A1F;
}

.timeline-section .timeline-item {
    width: 50%;
    padding: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(80px);
    transition: 1s;
}

.timeline-section .timeline-item.left  { left: 0; }
.timeline-section .timeline-item.right { left: 50%; }
.timeline-section .timeline-item.show  { opacity: 1; transform: translateY(0); }

.timeline-section .timeline-item::before {
    content: "";
    position: absolute;
    top: 55px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #FF5A1F;
    box-shadow: 0 0 25px #FF5A1F;
}

.timeline-section .left::before  { right: -12px; }
.timeline-section .right::before { left:  -12px; }

.timeline-content {
    background: #111;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 30px;
    transition: .4s;
}

.timeline-content:hover {
    transform: translateY(-10px);
    border-color: #FF5A1F;
    box-shadow: 0 20px 40px rgba(255,90,31,.2);
}

.timeline-content h3 { margin: 15px 0; font-size: 28px; }
.timeline-content p  { color: #c7c7c7; line-height: 1.8; }

/* =========================
      HOW IT WORKS
========================== */

.how-it-works {
    padding: 120px 8%;
    background: #050505;
}

.process {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 70px;
}

/* .step is shared with timeline — scoped here */
.how-it-works .step {
    width: 400px;
    max-width: 100%;
    padding: 30px;
    border-radius: 20px;
    background: #111;
    border: 1px solid rgba(255,255,255,.08);
    text-align: center;
    transition: .4s;
    color: inherit;
    font-size: inherit;
    letter-spacing: normal;
}

.how-it-works .step:hover {
    transform: translateY(-8px);
    border-color: #FF5A1F;
    box-shadow: 0 20px 40px rgba(255,90,31,.2);
}

.step-circle {
    width: 70px; height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #FF5A1F; color: #fff;
    display: flex; justify-content: center; align-items: center;
    font-size: 28px; font-weight: 700;
    box-shadow: 0 0 20px rgba(255,90,31,.6);
}

.how-it-works .step h3 { font-size: 24px; }

.arrow {
    font-size: 40px;
    color: #FF5A1F;
    margin: 20px 0;
    animation: bounce 1.5s infinite;
}

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

/* =========================
      WHY JOIN
========================== */

.why-join {
    padding: 120px 8%;
    background: #0a0a0a;
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.why-image {
    position: relative;
    min-width: 0;
    /* FIX: clip the glow pseudo-element */
    overflow: hidden;
    border-radius: 24px;
}

/* FIX: was inset:-20px which pushed outside the viewport */
.why-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, #FF5A1F55, transparent 70%);
    filter: blur(35px);
    z-index: 0;
    pointer-events: none;
}

.why-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 35px rgba(255,90,31,.18);
    transition: .5s;
}

.why-image img:hover { transform: scale(1.03); }

.why-content          { min-width: 0; }
.why-content h2       { font-size: 46px; margin: 20px 0; word-break: break-word; }
.why-content p        { color: #cfcfcf; line-height: 1.8; margin-bottom: 35px; }

.benefits { display: grid; gap: 18px; }

.benefit {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    transition: .35s;
    opacity: 0;
    /* FIX: was translateX(60px) — large value caused overflow on mobile */
    transform: translateX(30px);
}

.benefit.show  { opacity: 1; transform: translateX(0); }

.benefit:hover {
    border-color: #FF5A1F;
    /* FIX: small nudge only, won't overflow */
    transform: translateX(6px);
    box-shadow: 0 15px 35px rgba(255,90,31,.18);
}

.benefit i {
    width: 55px; height: 55px;
    border-radius: 50%;
    background: #FF5A1F; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.benefit span { font-size: 17px; font-weight: 500; }

/* =========================
      BRAND CHALLENGES
========================== */

.brand-challenges { padding: 120px 8%; background: #050505; }

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 70px;
    margin-bottom: 80px;
}

.brand-card { height: 320px; perspective: 1200px; }

.brand-card-inner {
    width: 100%; height: 100%;
    position: relative;
    transition: transform .8s;
    transform-style: preserve-3d;
}

.brand-card:hover .brand-card-inner { transform: rotateY(180deg); }

.brand-front,
.brand-back {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    backface-visibility: hidden;
    overflow: hidden;
}

.brand-front {
    background: #111;
    border: 1px solid rgba(255,255,255,.08);
    display: flex; justify-content: center; align-items: center;
}

.brand-front img    { width: 170px; transition: .5s; }
.brand-card:hover img { transform: scale(1.08); }

.brand-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg,#FF5A1F,#E94E16);
    color: #fff;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center; padding: 30px;
}

.coming-soon      { text-align: center; }
.coming-soon i    { font-size: 60px; margin-bottom: 20px; color: #FF5A1F; }

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

.challenge-item {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 35px; text-align: center;
    transition: .35s;
}

.challenge-item:hover {
    transform: translateY(-10px);
    border-color: #FF5A1F;
    box-shadow: 0 20px 40px rgba(255,90,31,.2);
}

.challenge-item i   { font-size: 46px; color: #FF5A1F; margin-bottom: 20px; }
.challenge-item h3  { margin-bottom: 15px; font-size: 24px; }
.challenge-item p   { color: #cfcfcf; line-height: 1.8; }

/* =========================
      PRIZES
========================== */

/* FIX: added overflow:hidden so the 28rem emoji stays inside */
.prizes {
    padding: 120px 8%;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* FIX: clamp the emoji size so it can't bust out on small screens */
.prizes::before {
    content: "🏆";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-size: clamp(8rem, 40vw, 28rem);
    opacity: .03;
    pointer-events: none;
    line-height: 1;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    align-items: center;
    margin-top: 70px;
}

.prize-card {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 45px 35px;
    transition: .45s; text-align: center;
    position: relative; overflow: hidden;
}

.prize-card:hover {
    transform: translateY(-15px);
    border-color: #FF5A1F;
    box-shadow: 0 25px 60px rgba(255,90,31,.20);
}

.featured       { border: 2px solid #FF5A1F; box-shadow: 0 0 40px rgba(255,90,31,.35); }
.featured:hover { transform: translateY(-15px); }

.prize-icon {
    width: 90px; height: 90px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 38px;
}

.gold   { background: #FFD700; color: #111; box-shadow: 0 0 35px rgba(255,215,0,.5); }
.silver { background: #C0C0C0; color: #111; box-shadow: 0 0 35px rgba(192,192,192,.45); }
.bronze { background: #FF5A1F; color: #fff; box-shadow: 0 0 35px rgba(255,90,31,.45); }

.prize-card h3  { font-size: 30px; margin-bottom: 30px; }
.prize-card ul  { list-style: none; padding: 0; margin: 0; }

.prize-card li {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 18px; color: #ddd; justify-content: center;
}

.prize-card li i { color: #FF5A1F; flex-shrink: 0; }

/* =========================
      SPONSORS
========================== */

.sponsors {
    padding: 120px 8%;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.sponsor-container {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 70px; align-items: center;
}

.sponsor-content h2 { font-size: 48px; margin: 20px 0; word-break: break-word; }
.sponsor-content p  { color: #cfcfcf; line-height: 1.8; margin-bottom: 40px; }

.benefit-list { display: grid; gap: 18px; }

.benefit-item {
    display: flex; align-items: center; gap: 18px;
    padding: 18px 22px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    transition: .4s;
}

.benefit-item:hover {
    /* FIX: small nudge only */
    transform: translateX(8px);
    border-color: #FF5A1F;
    box-shadow: 0 15px 35px rgba(255,90,31,.2);
}

.benefit-item i    { color: #FF5A1F; font-size: 22px; flex-shrink: 0; }
.benefit-item span { font-size: 17px; }

.sponsor-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px 35px; text-align: center;
    transition: .4s;
    box-shadow: 0 0 40px rgba(255,90,31,.12);
    color: #fff;
}

.sponsor-card:hover { transform: translateY(-12px); border-color: #FF5A1F; }
.sponsor-card i     { font-size: 65px; color: #FF5A1F; margin-bottom: 25px; }
.sponsor-card h3    { font-size: 32px; margin-bottom: 20px; }
.sponsor-card h4    { margin-bottom: 8px; }
.sponsor-card p     { color: #cfcfcf; line-height: 1.8; margin-bottom: 35px; }
.sponsor-card small { color: #ccc; padding-left: 10px; }

.sponsor-btn {
    display: inline-block;
    padding: 16px 42px;
    background: #FF5A1F; color: #fff;
    text-decoration: none;
    border-radius: 50px; font-weight: 600;
    transition: .35s;
}

.sponsor-btn:hover {
    background: #E94E16;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255,90,31,.35);
}

.hidden { opacity: 0; transform: translateY(60px); }
.show   { opacity: 1; transform: translateY(0); transition: all .8s ease; }











/* =========================
      COMPETITION TIMELINE
      (the icon + card one)
========================== */

.competition-timeline { padding: 120px 8%; background: #050505; }

.competition-timeline .timeline {
    position: relative;
    max-width: 900px;
    margin: 80px auto 0;
}

.competition-timeline .timeline::before {
    content: "";
    position: absolute;
    left: 35px; top: 0;
    width: 4px; height: 100%;
    background: linear-gradient(to bottom, #FF5A1F, #FF8A50, #FF5A1F);
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(255,90,31,.6);
}

/* FIX: reset the shared .timeline-item rules for this context */
.competition-timeline .timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    width: 100%;
    left: auto;
    padding: 0;
    opacity: 1;
    transform: none;
    transition: none;
}

.timeline-icon {
    width: 70px; height: 70px; min-width: 70px;
    border-radius: 50%;
    background: #FF5A1F; color: #fff;
    display: flex; justify-content: center; align-items: center;
    font-size: 22px; font-weight: 700;
    z-index: 2;
    box-shadow: 0 0 25px rgba(255,90,31,.5);
    flex-shrink: 0;
}

.timeline-card {
    flex: 1; min-width: 0;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px 30px;
    transition: .35s;
}

.timeline-card:hover {
    /* FIX: small nudge only */
    transform: translateX(6px);
    border-color: #FF5A1F;
    box-shadow: 0 20px 40px rgba(255,90,31,.18);
}

.timeline-card h3 { color: #fff; font-size: 24px; margin-bottom: 10px; }
.timeline-card p  { color: #cfcfcf; line-height: 1.8; }

/* =========================
      FAQ
========================== */

.faq-section { padding: 120px 8% 60px; background: #050505; }

.faq { max-width: 900px; margin: 60px auto; }

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px; overflow: hidden;
    background: rgba(255,255,255,.04);
}

.faq-btn {
    width: 100%; padding: 25px;
    background: none; border: none; outline: none;
    color: #fff;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-size: 18px; font-weight: 600;
    text-align: left;
}

.faq-btn .icon {
    color: #FF5A1F; font-size: 30px; font-weight: bold;
    transition: .3s; flex-shrink: 0;
}

.faq-content { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-content p { padding: 0 25px 25px; color: #ccc; line-height: 1.8; }

.faq-item.active              { border-color: #FF5A1F; }
.faq-item.active .icon        { transform: rotate(45deg); }

/* =========================
      FINAL CTA
========================== */

.cta {
    position: relative;
    padding: 140px 8%;
    background: url("../images/cta-bg.jpg") center center / cover no-repeat;
    /* FIX: overflow:hidden keeps the blurred blobs from creating scrollbar */
    overflow: hidden;
}

.cta-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(rgba(0,0,0,.80), rgba(0,0,0,.65));
}

.cta-content {
    position: relative; z-index: 2;
    max-width: 850px; margin: auto; text-align: center;
}

.cta h2 { font-size: 56px; color: #fff; margin: 25px 0; line-height: 1.2; word-break: break-word; }
.cta p  { font-size: 20px; color: #d7d7d7; line-height: 1.8; max-width: 700px; margin: 0 auto 45px; }

.cta-btn {
    display: inline-flex; align-items: center; gap: 15px;
    padding: 18px 45px; border-radius: 60px;
    background: #FF5A1F; color: #fff;
    text-decoration: none; font-size: 18px; font-weight: 600;
    transition: .4s;
}

.cta-btn:hover {
    background: #ff7138;
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(255,90,31,.45);
}

.cta-btn i             { transition: .35s; }
.cta-btn:hover i       { transform: translateX(8px); }

/* FIX: pointer-events:none stops pseudo-elements intercepting clicks */
.cta::before {
    content: "";
    position: absolute;
    width: 450px; height: 450px;
    background: #FF5A1F;
    filter: blur(180px); opacity: .18;
    top: -120px; left: -100px;
    animation: glowMove 8s ease-in-out infinite;
    pointer-events: none;
}

.cta::after {
    content: "";
    position: absolute;
    width: 380px; height: 380px;
    background: #FFD166;
    filter: blur(180px); opacity: .10;
    bottom: -120px; right: -80px;
    animation: glowMove2 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowMove  { 0%,100%{transform:translate(0,0)}  50%{transform:translate(80px,40px)} }
@keyframes glowMove2 { 0%,100%{transform:translate(0,0)}  50%{transform:translate(-70px,-50px)} }

/* =========================
      PARTNERS
========================== */

/* FIX: overflow:hidden on the section stops the scrolling track
        from creating a horizontal scrollbar                      */
.partners {
    padding: 120px 0 120px 20px;
    background: #050505;
    overflow: hidden;
}

.partners-slider { margin-top: 70px; overflow: hidden; position: relative; }

.partners-track {
    display: flex; gap: 30px;
    width: max-content;
    animation: partnerScroll 28s linear infinite;
}

.partners-slider:hover .partners-track { animation-play-state: paused; }

.partner-card {
    width: 220px; height: 140px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    display: flex; justify-content: center; align-items: center; flex-direction: column;
    transition: .4s;
    backdrop-filter: blur(15px);
    flex-shrink: 0;
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: #FF5A1F;
    box-shadow: 0 20px 40px rgba(255,90,31,.2);
}

.partner-card img {
    width: 120px; max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: .4s;
}

.partner-card:hover img { filter: grayscale(0%); transform: scale(1.08); }

@keyframes partnerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* =========================
      FOOTER
========================== */

.footer {
    position: relative;
    padding: 80px 8% 50px;
    background: #030303;
    border-top: 1px solid rgba(255,255,255,.08);
    /* FIX: overflow:hidden keeps the blurred blob inside */
    overflow: hidden;
}

/* FIX: pointer-events:none so it doesn't block text selection */
.footer::before {
    content: "";
    position: absolute;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 450px; height: 450px;
    background: #FF5A1F;
    opacity: .08; filter: blur(180px);
    pointer-events: none;
}

.footer-content {
    position: relative; z-index: 2;
    max-width: 800px; margin: auto; text-align: center;
}

.footer-logo    {
    display: block;
    width: 70px;
    margin: 0 auto 20px;
}
.footer h2      { color: #fff; font-size: 34px; margin-bottom: 15px; }
.powered        { color: #bdbdbd; font-size: 18px; }
.powered strong { color: #ffffff; }

.footer-divider {
    width: 80px; height: 3px;
    background: #FF5A1F;
    margin: 35px auto; border-radius: 50px;
}

.copyright  { color: #8d8d8d; margin-bottom: 15px; line-height: 1.8; }
.developer  { color: #bdbdbd; font-size: 16px; }

.developer a       { color: #FF5A1F; text-decoration: none; font-weight: 600; transition: .3s ease; }
.developer a:hover { color: #ffffff; text-shadow: 0 0 12px rgba(255,90,31,.8); }

/* =========================
      FLOATING WHATSAPP
========================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 65px; height: 65px;
    background: #25D366; color: #fff;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    text-decoration: none; font-size: 34px;
    z-index: 9999;
    box-shadow: 0 12px 30px rgba(37,211,102,.45);
    transition: .35s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 20px 40px rgba(37,211,102,.55);
}

@keyframes whatsappPulse {
    0%   { box-shadow: 0 0 0 0   rgba(37,211,102,.6); }
    70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0);  }
    100% { box-shadow: 0 0 0 0   rgba(37,211,102,0);   }
}

/* =========================
      RESPONSIVE
========================== */

@media (max-width: 900px) {

    .about          { padding: 80px 6%; }
    .about-container { flex-direction: column; text-align: center; gap: 50px; }
    .about-content h2 { font-size: 32px; }
    .about-features { grid-template-columns: 1fr; text-align: left; }

    .why-container  { grid-template-columns: 1fr; }
    .why-content    { text-align: center; }
    .benefit        { text-align: left; }

    .sponsor-container { grid-template-columns: 1fr; }

    /* collapse left/right timeline to single column */
    .timeline-section .timeline::before { left: 20px; }
    .timeline-section .timeline-item {
        width: 100%;
        left: 0 !important;
        padding: 20px 20px 20px 52px;
    }
    .timeline-section .left::before,
    .timeline-section .right::before { left: 7px; right: auto; }

    .featured       { transform: none; }
    .featured:hover { transform: translateY(-15px); }
}

@media (max-width: 768px) {

    /* header */
    .header       { padding: 20px 5%; }
    .logo img     { width: 80px; }
    .register-btn { padding: 12px 20px; font-size: 13px; }

    /* hero */
    .hero            { height: 90vh; }
    .hero h1         { font-size: 2.4rem; }
    .hero p          { font-size: 1rem; }
    .hero-tagline    { letter-spacing: 2px; font-size: 12px; }
    .hero-features   { flex-direction: column; gap: 15px; }

    /* categories */
    .categories      { padding: 80px 6% 0; }
    .section-header h2 { font-size: 32px; }

    /* how it works */
    .how-it-works .step { width: 100%; }

    /* competition timeline */
    .competition-timeline .timeline::before { left: 28px; }
    .competition-timeline .timeline-item    { gap: 20px; }
    .timeline-icon  { width: 55px; height: 55px; min-width: 55px; font-size: 18px; }
    .timeline-card  { padding: 20px; }
    .timeline-card h3 { font-size: 20px; }

    /* cta */
    .cta          { padding: 100px 6%; }
    .cta h2       { font-size: 34px; }
    .cta p        { font-size: 17px; }
    .cta-btn      { padding: 16px 35px; font-size: 16px; }

    /* partners */
    .partner-card     { width: 170px; height: 120px; }
    .partner-card img { width: 90px; }

    /* footer */
    .footer            { padding: 60px 6% 40px; }
    .footer h2         { font-size: 28px; }
    .powered,
    .copyright,
    .developer         { font-size: 15px; }
    .footer-logo       { width: 70px; }

    /* whatsapp */
    .whatsapp-float { width: 58px; height: 58px; right: 18px; bottom: 18px; font-size: 30px; }
}



/* ==========================================
PHONEDUCARE 2026
HOW TO EARN POINTS SECTION CSS
BLACK + DARK ORANGE THEME
========================================== */


.pe-points-section{

    background:#000000;
    padding:100px 40px;
    font-family:'Poppins',Arial,sans-serif;
    color:#ffffff;

}


.pe-container{

    max-width:1200px;
    margin:auto;

}



/* =========================
INTRO AREA
========================= */


.pe-intro{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}



.pe-tag{

    display:inline-block;
    color:#FF5A1F;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:20px;
    text-transform:uppercase;

}



.pe-intro-content h2{

    font-size:55px;
    line-height:1.2;
    font-weight:900;
    margin-bottom:25px;

}


.pe-intro-content h2 span{

    color:#FF5A1F;

}



.pe-intro-content p{

    color:#cccccc;
    font-size:18px;
    line-height:1.8;
    max-width:600px;

}




/* SCORE BOX */


.pe-score-box{

    margin-top:35px;
    display:flex;
    align-items:center;
    gap:20px;

    background:#111111;
    border:1px solid #252525;
    border-left:5px solid #FF5A1F;

    padding:25px 30px;
    border-radius:20px;

    width:max-content;

}



.pe-score-icon{

    font-size:45px;

}



.pe-score-box strong{

    display:block;
    font-size:30px;
    color:#FF5A1F;
    font-weight:900;

}



.pe-score-box small{

    color:#999999;
    font-size:15px;

}





/* IMAGE BOX */


.pe-image-box{

    height:430px;

    background:#111111;

    border-radius:30px;

    overflow:hidden;

    border:1px solid #262626;

    position:relative;

}



.pe-image-box::after{

    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.1),
        rgba(0,0,0,.4)
    );

}



.pe-image-box img{

    width:100%;
    height:100%;

    object-fit:cover;

}






/* =========================
PHASE CARDS
========================= */


.pe-phase-card{

    margin-top:60px;

    background:#0d0d0d;

    border:1px solid #222222;

    border-radius:28px;

    padding:40px;

    transition:.4s;

}



.pe-phase-card:hover{

    border-color:#FF5A1F;

    box-shadow:
    0 20px 50px rgba(255,90,31,.15);

    transform:translateY(-5px);

}





.pe-phase-card h3{

    display:flex;

    align-items:center;

    gap:20px;

    font-size:30px;

    font-weight:900;

    margin-bottom:15px;

}



.pe-phase-card h3 span{

    width:60px;
    height:60px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#FF5A1F;

    color:#ffffff;

    border-radius:50%;

    font-size:20px;

}





.pe-time{

    color:#FF5A1F;

    font-weight:600;

    margin-bottom:30px;

}






/* =========================
TABLE DESIGN
========================= */


.pe-phase-card table{

    width:100%;

    border-collapse:collapse;

    margin-top:20px;

    overflow:hidden;

    border-radius:15px;

}



.pe-phase-card th{

    background:#FF5A1F;

    color:#ffffff;

    padding:18px;

    text-align:left;

    font-size:16px;

}



.pe-phase-card td{

    padding:18px;

    color:#cccccc;

    background:#151515;

    border-bottom:1px solid #242424;

}



.pe-phase-card tr:last-child td{

    border-bottom:none;

}



.pe-phase-card tr:hover td{

    background:#1b1b1b;

}






/* =========================
MAXIMUM POINTS
========================= */


.pe-total{

    margin-top:25px;

    padding:18px 25px;

    background:#111111;

    border-radius:15px;

    border-left:5px solid #FF5A1F;

    color:#ffffff;

    font-size:20px;

    font-weight:800;

}





/* =========================
RULE BOX
========================= */


.pe-rule{

    margin-top:30px;

    padding:25px;

    background:#090909;

    border-radius:18px;

    border:1px solid #222222;

}



.pe-rule h4{

    color:#FF5A1F;

    font-size:20px;

    margin-bottom:15px;

}



.pe-rule ul{

    padding-left:20px;

}



.pe-rule li{

    color:#bbbbbb;

    line-height:1.8;

    margin-bottom:8px;

}






/* =========================
MOBILE RESPONSIVE
========================= */


@media(max-width:900px){


.pe-points-section{

    padding:70px 20px;

}



.pe-intro{

    grid-template-columns:1fr;

}



.pe-intro-content h2{

    font-size:38px;

}



.pe-image-box{

    height:300px;

}



.pe-score-box{

    width:100%;

}



.pe-phase-card{

    padding:25px;

}



.pe-phase-card h3{

    font-size:22px;

}



.pe-phase-card h3 span{

    width:45px;
    height:45px;

}



.pe-phase-card table{

    display:block;

    overflow-x:auto;

    white-space:nowrap;

}



.pe-phase-card td,
.pe-phase-card th{

    padding:14px;

}


}