 /* Base */
    :root{
      --bg: #070707;
      --card: #0e0e0e;
      --accent: #e11b1b;
      --muted: #bdbdbd;
      --glass: rgba(255,255,255,0.04);
    }
    html,body{height:100%;}
    body {
      background: radial-gradient(1200px 600px at 10% 10%, rgba(225,27,27,0.06), transparent),
                  linear-gradient(180deg,#060606,#0a0a0a 60%);
      color: #fff;
      font-family: 'Poppins', system-ui, Arial;
      -webkit-font-smoothing:antialiased;
      scroll-behavior: smooth;
      padding-top: 72px; /* for fixed navbar */
    }

    /* NAV */
    .navbar-brand img{ height:44px; }
    .navbar { backdrop-filter: blur(6px); background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.35)); }
    .nav-link{ color: #ddd !important; }

    /* HERO */
    .hero {
      min-height: calc(100vh - 72px);
      display:flex; align-items:center;
      background: linear-gradient(135deg, rgba(225,27,27,0.03), rgba(0,0,0,0.0));
      padding: 60px 0;
    }
    .hero .eyebrow{ color:var(--muted); font-size:14px; }
    .hero h1{ font-size:clamp(28px,4vw,56px); line-height:1.02; }
    .hero p{ color:var(--muted); font-size:18px; }
    .cta-btn { box-shadow: 0 6px 30px rgba(225,27,27,0.12); }

    /* Animated gradient background in hero card */
    .hero-card{ border-radius:16px; padding:24px; background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.06)); border:1px solid rgba(225,27,27,0.08); }

    /* Countdown */
    .countdown-card{ background: linear-gradient(180deg,var(--card), #0b0b0b 70%); border-radius:14px; padding:18px; border:1px solid rgba(225,27,27,0.08); }
    .time-value{ font-weight:900; font-size:28px; color:var(--accent); }

    /* FEATURES */
    .feature-icon{ width:56px; height:56px; border-radius:12px; display:grid; place-items:center; background:linear-gradient(90deg, rgba(225,27,27,0.06), transparent); border:1px solid rgba(225,27,27,0.06); }

    /* CAROUSEL IMAGES */
    .carousel-inner img{ border-radius:12px; }

    /* TOKENOMICS */
    .token-card{ border-radius:12px; background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent); border:1px solid rgba(255,255,255,0.03); padding:18px; }

    /* FOOTER */
    footer{ padding:40px 0; color:var(--muted); }

    /* Responsive tweaks */
    @media (max-width:767px){ .hero{ padding:28px 0; } }

    /* subtle animated gradient */
    .animated-gradient{
      background: linear-gradient(90deg, rgba(225,27,27,0.08), rgba(0,0,0,0));
      animation: slide 6s linear infinite;
    }
    @keyframes slide{ 0% { background-position:0% } 50% { background-position:100% } 100% { background-position:0% } }

    /* small helpers */
    .muted { color:var(--muted); }

    /* Global Theme */
:root {
    --red: #ff1a1a;
    --red2: #ff3d3d;
    --dark: #0a0a0a;
    --dark2: #121212;
    --text: #e6e6e6;
    --gray: #777;
}

body {
    background: var(--dark);
    font-family: "Poppins", sans-serif;
    color: var(--text);
}

/* Section Styling */
.token-section {
    padding: 80px 5%;
    background: var(--dark);
}

.section-title {
    text-align: center;
    color: var(--red);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Grid */
.token-container {
    max-width: 1100px;
    margin: auto;
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 20px;
}

/* Each Item */
.token-item {
    background: var(--dark2);
    padding: 20px;
    border-left: 4px solid var(--red);
    border-radius: 6px;
    transition: 0.3s ease;
}

.token-item:hover {
    background: #1c1c1c;
    transform: translateY(-3px);
    border-left-color: var(--red2);
}

.label {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--gray);
}

.value {
    display: block;
    margin-top: 6px;
    font-size: 18px;
    color: var(--text);
    font-weight: 600;
}

/* Bottom Note */
.token-note {
    margin-top: 30px;
    text-align: center;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}
/* FOOTER WRAPPER */
.ix-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 50%, #000 100%);
    padding: 70px 7%;
    color: #eaeaea;
    position: relative;
    overflow: hidden;
}

/* Decorative glow */
.ix-footer::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -40px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255,0,0,0.25), transparent 70%);
    filter: blur(20px);
    opacity: 0.4;
}

/* CONTENT WRAPPER */
.footer-inner {
    max-width: 1100px;
    margin: auto;
}

/* TITLES */
.footer-heading {
    font-size: 30px;
    color: #ff3a3a;
    margin: 40px 0 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* PARAGRAPHS */
.ix-footer p {
    line-height: 1.7;
    opacity: 0.95;
    font-size: 15.5px;
    margin-bottom: 18px;
}

/* BOTTOM SECTION */
.footer-bottom {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
}

.label {
    font-weight: 600;
    color: #ff4d4d;
    margin-right: 6px;
}

.footer-link {
    color: #ff4d4d;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-heading {
        font-size: 24px;
    }
    .ix-footer p {
        font-size: 14.5px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #000;
    color: #fff;
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 60px 20px;
    background: url("hero-bg.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
}

.content {
    position: relative;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

/* TITLES */
.title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.title span {
    color: red;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* TABLE WRAPPER */
.table-container {
    width: 100%;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 10px;
    overflow: hidden;
}

/* TABLE HEADER */
.comparison-table th {
    background: linear-gradient(45deg, #9f0019, red);
    padding: 16px;
    font-size: 1.05rem;
}

/* CELLS */
.comparison-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* STATUS COLORS */
.yes { color: #2ecc71; font-weight: 700; }
.no { color: #e74c3c; font-weight: 700; }
.partial { color: #f1c40f; font-weight: 700; }

/* HOVER */
tbody tr:hover {
    background: rgba(255,255,255,0.06);
}
.hero {
    background: url("bgadvantages.jpg") center/cover no-repeat;
}
/* Base Section */
.rev-section {
    background: #000;
    padding: 60px 20px;
    font-family: "Poppins", sans-serif;
    color: #ddd;
}

/* Layout */
.rev-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

/* Text Side */
.rev-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.rev-text .red { color: #d80000; }
.rev-text .white { color: #fff; }

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.rev-list {
    list-style: none;
    padding: 0;
}

.rev-list li {
    margin: 12px 0;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 10px;
    border-left: 2px solid #d80000;
}

.rev-list li span {
    font-weight: 600;
    color: #fff;
}

/* Image Side */
.rev-image img {
    width: 330px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .rev-container {
        flex-direction: column;
        text-align: center;
    }

    .rev-list li {
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        border-left: none;
        border-bottom: 1px solid #d80000;
        padding-bottom: 8px;
        width: 95%;
    }
}
/*roadmap*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
  margin: 0;
  padding: 0;
  background: #0b0b0b;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.roadmap-section {
  padding: 60px 8%;
  position: relative;
}

.title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
}

.title span {
  color: #e8202a;
}

.timeline {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

/* Line behind circles */
.timeline::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #a80d16, #e8202a);
  z-index: 0;
}

.phase {
  width: 24%;
  position: relative;
  z-index: 2;
}

.phase h3 {
  margin-top: 20px;
  color: #e7e7e7;
  font-size: 18px;
}

.phase ul {
  margin-top: 10px;
  list-style: none;
  padding: 0;
}

.phase ul li {
  font-size: 14px;
  color: #bbbbbb;
  margin-bottom: 6px;
}

/* Red circles */
.circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff4e4e, #b00000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin: auto;
  transition: 0.3s;
}

.circle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.45);
}

/* Responsive */
@media (max-width: 900px) {
  .timeline {
    flex-direction: column;
  }

  .timeline::before {
    height: 100%;
    width: 3px;
    left: 35px;
    top: 0;
  }

  .phase {
    width: 100%;
    padding-left: 90px;
  }

  .circle {
    margin: 0;
    position: absolute;
    left: 0;
  }
}
/*our solution*/
/* ===== GENERAL THEME ===== */
.solution-section {
  background: #0b0b0b;
  padding: 80px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.solution-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title span {
  color: #e50914; /* IXFLIX Red */
}

.section-subtitle {
  color: #ccc;
  margin-bottom: 40px;
  font-size: 18px;
}

/* ===== CARD GRID ===== */
.solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.card {
  background: linear-gradient(to bottom, #181818, #0c0c0c);
  border-top: 4px solid #e50914;
  padding: 25px;
  border-radius: 10px;
  transition: 0.3s;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.card p {
  color: #bbb;
  font-size: 15px;
  line-height: 1.4;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.25);
}

 

body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* --------------- MAIN SECTION --------------- */
.how-it-works {
    display: flex;
    padding: 60px;
    min-height: 100vh;
    background: radial-gradient(circle at top left, #111 0%, #000 60%);
    position: relative;
    gap: 40px;
}

/* Subtle dotted red background accent */
.how-it-works::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255,0,0,0.25) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.content {
    flex: 1;
    z-index: 2;
    padding-right: 20px;
}

/* --------------- LOGO --------------- */
.logo {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ff0037;
    text-shadow: 0 0 20px rgba(255, 0, 55, 0.6);
    margin-bottom: 25px;
}

/* --------------- TITLES --------------- */
.title {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 35px;
    line-height: 1.2;
}

.title span {
    color: #ff0037;
    text-shadow: 0 0 12px rgba(255, 0, 55, 0.6);
}

/* --------------- SECTION HEADERS --------------- */
.section {
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.section:nth-child(2) { animation-delay: 0.2s; }
.section:nth-child(3) { animation-delay: 0.4s; }
.section:nth-child(4) { animation-delay: 0.6s; }

/* Section title */
.section h3 {
    color: #ff0037;
    font-size: 22px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* --------------- LIST ITEMS (enhanced) --------------- */
.section ul {
    list-style: none;
}

.section ul li {
    background: rgba(20, 20, 20, 0.8);
    padding: 12px 16px;
    border-left: 3px solid #ff0037;
    margin-bottom: 8px;
    border-radius: 6px;
    font-size: 17px;
    transition: 0.3s ease;
    backdrop-filter: blur(4px);
}

.section ul li:hover {
    background: rgba(255, 0, 55, 0.15);
    transform: translateX(6px);
    border-left-color: #ff335a;
}

/* --------------- IMAGE SIDE --------------- */
.image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-area img {
    width: 100%;
    max-width: 550px;
    border-radius: 12px;
    box-shadow: 
        0 0 20px rgba(255, 0, 55, 0.25),
        0 0 40px rgba(0, 0, 0, 0.6);
    transition: 0.4s ease;
}

.image-area img:hover {
    transform: scale(1.03);
    box-shadow: 
        0 0 28px rgba(255, 0, 55, 0.45),
        0 0 50px rgba(0, 0, 0, 0.85);
}

/* --------------- ANIMATION --------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------- RESPONSIVE DESIGN --------------- */
@media (max-width: 900px) {
    .how-it-works {
        flex-direction: column;
        padding: 35px;
        min-height: auto;
    }

    .title {
        font-size: 42px;
    }

    .logo {
        font-size: 38px;
    }

    .image-area img {
        max-width: 100%;
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    .title {
        font-size: 34px;
    }

    .section ul li {
        font-size: 15px;
    }
}
/*ai*/
/* BASE */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #000;
    color: #fff;
}

/* MAIN LAYOUT */
.ai-capabilities {
    display: flex;
    padding: 60px;
    min-height: 100vh;
    gap: 50px;
    position: relative;
    background: radial-gradient(circle at top left, #0e0e0e 0%, #000 70%);
}

/* LEFT PANEL */
.left-panel {
    flex: 1;
    padding-right: 20px;
    position: relative;
}

/* red vertical line */
.left-panel::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #ff0037;
    box-shadow: 0 0 10px rgba(255, 0, 55, 0.5);
}

/* LOGO */
.ix-logo {
    font-size: 42px;
    font-weight: 900;
    color: #ff0037;
    text-shadow: 0 0 14px rgba(255, 0, 55, 0.6);
    margin-bottom: 25px;
}

/* TITLE */
.title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.title span {
    color: #ff0037;
    text-shadow: 0 0 12px rgba(255, 0, 55, 0.5);
}

/* SUBTITLE */
.sub {
    font-size: 20px;
    color: #ff0037;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

/* FEATURES LIST */
.features {
    list-style: none;
    padding-left: 0;
}

.features li {
    background: rgba(255, 0, 55, 0.07);
    padding: 12px 18px;
    margin-bottom: 10px;
    border-left: 3px solid #ff0037;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.3s;
}

.features li:hover {
    background: rgba(255, 0, 55, 0.18);
    transform: translateX(6px);
}

/* RIGHT PANEL */
.right-panel {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-panel img {
    width: 100%;
    max-width: 570px;
    border-radius: 12px;
    box-shadow: 
        0 0 25px rgba(255, 0, 55, 0.25),
        0 0 40px rgba(0, 0, 0, 0.8);
    transition: 0.4s;
}

.right-panel img:hover {
    transform: scale(1.03);
}

/* RED OVERLAY BOX */
.red-box {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: #ff0037;
    padding: 18px 24px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    max-width: 300px;
    box-shadow: 0 0 18px rgba(255, 0, 55, 0.7);
    animation: fadeIn 1.2s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .ai-capabilities {
        flex-direction: column;
        padding: 35px;
    }

    .red-box {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .title { font-size: 36px; }
    .ix-logo { font-size: 32px; }
}
/* ====== GLOBAL ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #0d0d0d;
    color: #fff;
}

/* ====== SECTION WRAPPER ====== */
.ixf-section {
    padding: 60px 20px;
    background: #0b0b0b;
}

.ixf-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

/* ====== LEFT CONTENT ====== */
.ixf-left {
    flex: 1;
    min-width: 300px;
}

.ixf-title {
    font-size: 2.7rem;
    font-weight: 700;
}

.ixf-title span {
    color: #e60023;
}

.ixf-subtitle {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #d9d9d9;
}

/* LIST */
.ixf-list {
    list-style: none;
    margin-top: 25px;
}

.ixf-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
}

.ixf-list li::before {
    content: "▸";
    color: #e60023;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ====== RIGHT IMAGE ====== */
.ixf-right {
    flex: 1;
    min-width: 300px;
}

.ixf-image-wrapper {
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #e60023;
    box-shadow: 0 0 20px rgba(230, 0, 35, 0.4);
}

.ixf-image-wrapper img {
    width: 100%;
    display: block;
    transition: transform .4s ease;
}

.ixf-image-wrapper:hover img {
    transform: scale(1.05);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .ixf-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 500px) {
    .ixf-title {
        font-size: 1.8rem;
    }
}
/* ===== GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.tokenomics-section {
    padding: 70px 20px;
    background: #0b0b0b;
    color: #fff;
}

.tokenomics-container {
    max-width: 1250px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* ===== LEFT SIDE ===== */
.tokenomics-left {
    flex: 1;
    min-width: 300px;
}

.tokenomics-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #e60023;
}

.tokenomics-supply {
    font-size: 1.1rem;
    margin-top: 5px;
    color: #ddd;
}

.tokenomics-supply span {
    color: #fff;
    font-weight: 600;
}

.tokenomics-image img {
    width: 230px;
    margin-top: 25px;
    filter: drop-shadow(0 0 10px rgba(230, 0, 35, 0.5));
}

/* Safeguards */
.safeguard-title {
    font-size: 1.3rem;
    margin-top: 30px;
    color: #e60023;
}

.safeguard-list {
    margin-top: 10px;
    list-style: none;
}

.safeguard-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.safeguard-list li::before {
    content: "▸";
    color: #e60023;
    position: absolute;
    left: 0;
}

/* ===== RIGHT SIDE TABLE ===== */
.table-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    flex: 1;
    min-width: 340px;
}

.tokenomics-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.tokenomics-table thead th {
    background: linear-gradient(to right, #b3001b, #e60023);
    padding: 14px 10px;
    color: #fff;
    font-size: 1rem;
}

.tokenomics-table tbody td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
}

/* Hover effect */
.tokenomics-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .tokenomics-title { font-size: 2.2rem; }
}

@media (max-width: 500px) {
    .tokenomics-title { font-size: 1.8rem; }
}
/* ====== GLOBAL ====== */
body {
    margin: 0;
    background: #0d0d0d;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

/* ====== SECTION ====== */
.market-section {
    padding: 60px 5%;
    background: #0a0a0a;
}

/* Flex Layout */
.market-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* ====== LEFT TEXT AREA ====== */
.market-text h2 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
}

.market-text h2 span {
    color: #ff1a1a;
}

/* List styling */
.market-list {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.market-list li {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.4;
}

.small {
    font-size: 14px;
    opacity: 0.7;
}

/* Highlight box */
.highlight-box {
    margin-top: 25px;
    padding: 18px 20px;
    background: #b30000;
    border-left: 4px solid #ff4d4d;
    border-radius: 8px;
}

.highlight-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

/* ====== RIGHT CHART AREA ====== */
.market-chart {
    flex: 1;
    max-width: 550px;
}

.market-chart img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #222;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .market-text h2 {
        font-size: 36px;
    }

    .market-container {
        flex-direction: column;
    }

    .market-chart {
        max-width: 100%;
    }
}
/* ===== SECTION BACKGROUND ===== */
.global-problem-section {
    position: relative;
    background: url("bg-image.jpg") center/cover no-repeat;
    padding: 100px 5%;
    color: #fff;
}

/* Dark overlay */
.global-problem-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: brightness(0.5);
    z-index: 1;
}

/* CONTENT */
.problem-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* HEADINGS */
.problem-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.problem-title span {
    color: #ff1a1a;
}

.problem-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* GRID OF PROBLEM CARDS */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* CARD STYLE */
.problem-card {
    background: linear-gradient(180deg, #ff1a1a, #990000);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.problem-card p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.4;
}

/* BOTTOM TEXT */
.bottom-text {
    margin-top: 20px;
    font-size: 17px;
    opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .problem-title {
        font-size: 34px;
    }
    .problem-subtitle {
        font-size: 16px;
    }
}





/* FOOTER */
.footer-text {
    margin-top: 20px;
    opacity: 0.85;
    font-size: 1.1rem;
}

/* ========================================================= */
/*                     📱 RESPONSIVE FIXES                   */
/* ========================================================= */

/* Tablet */
@media (max-width: 992px) {
    .title { font-size: 2.5rem; }
}

/* Mobile Responsive Table */
@media (max-width: 768px) {

    /* shrink headings */
    .title { font-size: 2.1rem; }
    .subtitle { font-size: 1r}

/* Responsive */
@media (max-width: 768px) {
    .footer-title {
        font-size: 24px;
    }

    .footer-text {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }
  }
}
    
