:root {
    --bg-color: #080808;
    --text-color: #ffffff;
    --primary-orange: #ff5208;
    --nav-bg: rgba(20, 20, 20, 0.8);
    --hex-bg: #111111;
    --hex-border: rgba(255, 82, 8, 0.4);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Pattern */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(255, 82, 8, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 82, 8, 0.05) 0%, transparent 25%);
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="173" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 L100 28.8 L100 86.6 L50 115.4 L0 86.6 L0 28.8 Z" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    background-size: 150px;
    opacity: 0.5;
}

/* Navbar */
.navbar {
    padding: 24px 48px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
    background: var(--nav-bg);
    padding: 14px 40px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cart {
    position: relative;
    color: white;
    text-decoration: none;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary-orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-btn {
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-btn:hover {
    background: #e64a07;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    position: relative;
    text-align: center;
    min-height: 100vh;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero-title {
    font-size: 18vw;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap !important;
    flex-wrap: nowrap;
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 220px;
    }
}

.highlight {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    color: #cccccc;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Subscribe Form */
.subscribe-form {
    display: flex;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 40px;
    padding: 8px;
    max-width: 450px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 25px;
    color: white;
    font-size: 16px;
    font-family: inherit;
    outline: none;
}

.subscribe-form button {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.3s ease;
}

.subscribe-form button:hover {
    background: #e64a07;
}

/* Floating Hexagons */
.floating-hexagons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 5;
}

.hexagon {
    position: absolute;
    width: 160px;
    height: 180px;
    background-color: var(--hex-border); /* Outer border color */
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    pointer-events: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hex-inner {
    width: 158px;
    height: 178px;
    background-color: var(--hex-bg); /* Inner background */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hexagon span {
    font-size: 16px;
    font-weight: 500;
    color: white;
    z-index: 2;
}

.hexagon:hover {
    transform: translateY(-10px) scale(1.05);
}

.hex-1 {
    top: 55%;
    left: 12%;
    animation: float 6s ease-in-out infinite;
}

.hex-2 {
    top: 80%;
    left: 18%;
    width: 140px;
    height: 160px;
    animation: float 8s ease-in-out infinite 1s;
}

.hex-2 .hex-inner {
    width: 138px;
    height: 158px;
}

.hex-3 {
    top: 60%;
    right: 12%;
    animation: float 7s ease-in-out infinite 2s;
}

.hex-4 {
    top: 85%;
    right: 18%;
    width: 140px;
    height: 160px;
    animation: float 6.5s ease-in-out infinite 0.5s;
}

.hex-4 .hex-inner {
    width: 138px;
    height: 158px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    .hexagon {
        display: none;
    }
    .hero-subtitle {
        font-size: 18px;
    }
}

/* Slider Section */
.slider-section {
    padding: 60px 0;
    position: relative;
    width: 100vw;
    overflow: hidden;
}

.slider-header {
    display: flex;
    justify-content: flex-end;
    padding: 0 48px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.pause-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pause-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Horizontal sliding animation */
.slider-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollHorizontal 30s linear infinite;
    padding: 0 24px;
}

/* Pause animation class */
.slider-track.paused {
    animation-play-state: paused;
}

@keyframes scrollHorizontal {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); } /* Scrolls half width (assuming cloned content) */
}

.article-card {
    width: 400px;
    height: 480px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    flex-shrink: 0;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s ease;
}

/* Dark overlay for readability */
.article-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.article-card:hover .card-bg {
    transform: scale(1.05);
}

.card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.badge {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    margin-bottom: auto; /* Pushes everything else to bottom */
}

.badge .dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-orange);
    border-radius: 50%;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 100px; /* Space from badge */
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #cccccc;
    font-weight: 500;
}

.author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.meta-divider {
    color: #555555;
}

/* About Section */
.about-section {
    padding: 100px 48px;
    width: 100%;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.about-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
}

.about-heading {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.3;
    max-width: 800px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.about-image-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 3.5/5;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-card {
    background-color: var(--hex-bg);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: auto;
}

.feature-text {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .about-header {
        flex-direction: column;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .about-image {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }
    .about-heading {
        font-size: 32px;
    }
}

/* Stories Section */
.stories-section {
    background-color: #ffffff;
    color: #080808;
    padding: 100px 48px;
    width: 100%;
}

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

.stories-heading {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.stories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.large-card {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

.large-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s ease;
}

.large-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%);
    z-index: 2;
}

.large-card:hover .card-bg {
    transform: scale(1.05);
}

.large-card .badge, .large-card .large-card-content {
    position: relative;
    z-index: 3;
}

.large-card-content .card-title {
    margin-top: 0;
    color: white;
}

.text-white {
    color: white !important;
}

.small-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
}

.small-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
}

.small-card:hover .small-card-image img {
    transform: scale(1.05);
}

.small-card-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.small-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.small-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.text-orange {
    color: var(--primary-orange);
}

.text-gray {
    color: #666666;
}

.small-card-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: #080808;
}

@media (max-width: 1024px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
    .large-card {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .small-cards-grid {
        grid-template-columns: 1fr;
    }
    .stories-heading {
        font-size: 40px;
    }
}

/* News Section */
.news-section {
    padding: 100px 48px;
    width: 100%;
}

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

.news-heading {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 60px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
}

.news-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Left Column Cards */
.vertical-card {
    background-color: var(--hex-bg);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vertical-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.author-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
}

.author-overlay img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.card-text-wrap {
    padding: 30px;
}

.card-text-wrap h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
}

/* Middle Column Card */
.tall-card {
    height: 100%;
    min-height: 700px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tall-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s ease;
}

.tall-card:hover .tall-bg {
    transform: scale(1.05);
}

.tall-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 40%);
    z-index: 2;
}

.tall-content {
    position: relative;
    z-index: 3;
    background-color: var(--hex-bg);
    margin: 20px;
    padding: 30px;
    border-radius: 16px;
}

.tall-content h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Right Column Cards */
.horizontal-card {
    display: flex;
    gap: 20px;
    align-items: center;
    cursor: pointer;
}

.horiz-img {
    width: 140px;
    height: 140px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.5s ease;
}

.horizontal-card:hover .horiz-img {
    transform: scale(1.05);
}

.horiz-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.horiz-text h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.advertisement {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ad-label {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.ad-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
    background-color: #ffcc00;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-banner img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
}

.ad-overlay {
    position: relative;
    z-index: 2;
    color: #080808;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    transform: rotate(-5deg);
    background: white;
    padding: 10px 20px;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.2);
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    .tall-card {
        min-height: 500px;
    }
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-image: url('data:image/svg+xml;utf8,<svg width="200" height="200" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 L93.3 25 L93.3 75 L50 100 L6.7 75 L6.7 25 Z" fill="none" stroke="rgba(255, 82, 8, 0.05)" stroke-width="1"/></svg>');
    background-size: 150px;
    background-position: center;
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 2;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.category-card {
    background-color: var(--hex-bg);
    border-radius: 16px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    background-color: #1a1a1a;
}

.cat-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cat-count {
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
}

.cat-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.category-card:hover .cat-arrow {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.huge-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1;
}

.marquee-track-text {
    display: inline-block;
    animation: scroll-text 30s linear infinite;
}

.marquee-track-text span {
    font-size: 180px;
    font-weight: 800;
    color: #555555;
    padding-right: 50px;
    letter-spacing: -2px;
}

@keyframes scroll-text {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .marquee-track-text span {
        font-size: 120px;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .marquee-track-text span {
        font-size: 80px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Must Reads Section */
.must-reads-section {
    background-color: #ffffff;
    color: #080808;
    padding: 100px 48px;
    width: 100%;
}

.must-reads-container {
    max-width: 1400px;
    margin: 0 auto;
}

.must-reads-heading {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.reads-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reads-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.author-profile-card {
    background-color: var(--hex-bg);
    border-radius: 20px;
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.profile-img {
    width: 140px;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 30px;
}

.profile-name {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
}

.profile-role {
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.profile-quote {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-orange {
    background-color: var(--primary-orange);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-orange:hover {
    background-color: #e64a07;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.article-card-horizontal {
    display: flex;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    padding: 20px;
    gap: 30px;
    align-items: center;
    transition: box-shadow 0.3s ease;
}

.article-card-horizontal:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.article-img-wrap {
    width: 300px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.article-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-white {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: white;
    color: #080808;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.article-content h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #080808;
    max-width: 90%;
}

.article-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #080808;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.article-card-horizontal:hover .article-arrow {
    background-color: #080808;
    color: white;
    border-color: #080808;
}

@media (max-width: 1024px) {
    .reads-row {
        grid-template-columns: 1fr;
    }
    .article-img-wrap {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .article-card-horizontal {
        flex-direction: column;
        align-items: stretch;
    }
    .article-img-wrap {
        width: 100%;
        height: 250px;
    }
    .article-arrow {
        position: static;
        margin-top: 20px;
        align-self: flex-end;
    }
}

/* Market Insights Section */
.insights-section {
    background-color: #ffffff;
    color: #080808;
    padding: 100px 48px;
    width: 100%;
}

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

.insights-heading {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.insights-left-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.insight-card {
    display: flex;
    gap: 30px;
    align-items: center;
}

.insight-img {
    width: 220px;
    height: 220px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.insight-card:hover .insight-img {
    transform: scale(1.02);
}

.insight-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.insight-author {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}

.insight-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.insight-content h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #080808;
}

.insight-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.insight-tall {
    min-height: 480px;
}

@media (max-width: 1024px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .insight-card {
        flex-direction: column;
        align-items: stretch;
    }
    .insight-img {
        width: 100%;
        height: 250px;
    }
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    padding: 120px 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    z-index: 1;
}

.newsletter-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
}

.newsletter-card {
    background-color: #ffffff;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 L93.3 25 L93.3 75 L50 100 L6.7 75 L6.7 25 Z" fill="none" stroke="%23ffcc00" stroke-width="0.5" stroke-opacity="0.3"/></svg>');
    background-size: 80px;
    background-position: center;
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    color: #080808;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.news-logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.newsletter-card h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -1px;
}

.newsletter-card p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.subscribe-form input {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid #cccccc;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.subscribe-form input:focus {
    border-color: var(--primary-orange);
}

.subscribe-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background-color: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #e64a07;
}

/* Process Section */
.process-section {
    padding: 120px 48px;
    width: 100%;
    background-color: #000000;
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.process-header h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.4;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.honeycomb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hex-row-2 {
    display: flex;
    gap: 20px;
    margin-top: -60px;
}

.hex-item {
    width: 280px;
    height: 320px;
    background-color: #111111;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.hex-item:hover {
    transform: scale(1.05);
}

.hex-item::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-color: #111111;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

.hex-item {
    background: linear-gradient(to bottom, var(--primary-orange), transparent);
}

.hex-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.hex-num {
    color: var(--primary-orange);
    font-size: 20px;
    font-weight: 600;
}

.hex-content p {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

/* More Articles Section */
.more-articles-section {
    padding: 100px 48px;
    width: 100%;
}

.more-articles-container {
    max-width: 1400px;
    margin: 0 auto;
}

.more-articles-heading {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.more-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.more-article-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.more-article-card .card-image-wrap {
    border-radius: 16px;
    aspect-ratio: 1/1;
}

.more-article-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.more-article-content h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .more-articles-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .newsletter-card h2 {
        font-size: 32px;
    }
    .process-header h2 {
        font-size: 28px;
    }
    .hex-row-2 {
        flex-direction: column;
        margin-top: 0;
    }
    .more-articles-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Section */
.footer-section {
    background-color: #030303;
    position: relative;
    padding: 100px 48px 40px;
    color: white;
    text-align: center;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="173.2" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 L100 28.86 L100 86.6 L50 115.47 L0 86.6 L0 28.86 Z" fill="none" stroke="rgba(230, 74, 7, 0.05)" stroke-width="1"/><path d="M50 115.47 L100 144.33 L100 202.07 L50 230.94 L0 202.07 L0 144.33 Z" fill="none" stroke="rgba(230, 74, 7, 0.05)" stroke-width="1"/><path d="M0 86.6 L50 115.47 L50 173.2 L0 202.07 L-50 173.2 L-50 115.47 Z" fill="none" stroke="rgba(230, 74, 7, 0.05)" stroke-width="1"/><path d="M100 86.6 L150 115.47 L150 173.2 L100 202.07 L50 173.2 L50 115.47 Z" fill="none" stroke="rgba(230, 74, 7, 0.05)" stroke-width="1"/></svg>');
    background-size: 150px 259.8px;
    pointer-events: none;
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0 0 80px;
}

.footer-nav li a {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-nav li a:hover {
    background-color: var(--primary-orange);
}

.footer-logo {
    font-size: clamp(40px, 12vw, 200px);
    font-weight: 800;
    line-height: 1;
    margin: 0 0 40px;
    letter-spacing: -2px;
    white-space: nowrap !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.footer-desc {
    max-width: 800px;
    margin: 0 auto 80px;
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* About Hero Section */
.about-hero-section {
    padding: 80px 48px 0;
    max-width: 1400px;
    margin: 0 auto;
    color: white;
}

.about-hero-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.about-hero-content {
    max-width: 700px;
}

.about-hero-title {
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.about-hero-subtitle {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 600px;
}

.about-hero-trusted {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 250px;
    padding-bottom: 10px;
}

.trusted-avatars {
    display: flex;
}

.trusted-avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-left: -12px;
    object-fit: cover;
}

.trusted-avatars img:first-child {
    margin-left: 0;
}

.about-hero-trusted p {
    font-size: 14px;
    font-weight: 500;
    color: white;
    line-height: 1.4;
}

.about-hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}

.about-hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 80px;
}

.circle-btn {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 10;
}

.circle-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    background-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 1024px) {
    .about-hero-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .about-hero-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 40px;
    }
    .about-hero-image-wrapper img {
        border-top-left-radius: 40px;
    }
    .about-hero-image-wrapper {
        height: 400px;
    }
    .circle-btn {
        width: 80px;
        height: 80px;
    }
}

/* Identity Section */
.identity-section {
    background-color: #ffffff;
    color: #030303;
    padding: 100px 48px;
}

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

.identity-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.identity-image-area {
    position: relative;
    flex: 1;
    max-width: 600px;
}

.identity-img-wrap {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
}

.identity-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cutout-circle {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 200px;
    height: 200px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    padding-right: 10px;
}

.cutout-number {
    font-size: 56px;
    font-weight: 700;
    color: #030303;
}

.identity-exp-text {
    position: absolute;
    top: 140px;
    right: -100px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    max-width: 200px;
}

.identity-content {
    flex: 1;
    max-width: 600px;
}

.identity-heading {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.identity-desc {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.btn-solid-orange {
    display: inline-block;
    background-color: var(--primary-orange);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-solid-orange:hover {
    background-color: #e64a07;
    transform: translateY(-2px);
}

.identity-stats {
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.stat-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 20px;
    border-right: 1px solid #e0e0e0;
}

.stat-card:last-child {
    border-right: none;
}

.stat-num {
    font-size: 64px;
    font-weight: 600;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .identity-top {
        flex-direction: column;
    }
    .identity-exp-text {
        position: static;
        margin-top: 20px;
        text-align: center;
        max-width: 100%;
    }
    .identity-stats {
        flex-wrap: wrap;
    }
    .stat-card {
        flex: 1 1 50%;
        border-bottom: 1px solid #e0e0e0;
    }
    .stat-card:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .identity-img-wrap {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .stat-card {
        flex: 1 1 100%;
        border-right: none;
    }
    .identity-heading {
        font-size: 40px;
    }
    .identity-desc {
        font-size: 20px;
    }
}

/* Core Values Section */
.core-values-section {
    background-color: #030303;
    color: #ffffff;
    padding: 100px 48px;
}

.core-values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.core-values-header {
    text-align: center;
    margin-bottom: 60px;
}

.core-values-header h2 {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.core-values-header p {
    font-size: 16px;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.core-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.value-card {
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
}

.value-card.text-card {
    background-color: #151515;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-card.text-card h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.value-card.text-card p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 90%;
}

.value-card.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .core-values-header h2 {
        font-size: 40px;
    }
    .core-values-grid {
        grid-template-columns: 1fr;
    }
    .value-card {
        height: auto;
        min-height: 250px;
    }
    .value-card.text-card {
        padding: 40px 20px;
    }
}

/* Meet the Author Section */
.meet-author-section {
    background-color: #ffffff;
    color: #030303;
    padding: 100px 48px;
}

.meet-author-container {
    max-width: 1400px;
    margin: 0 auto;
}

.meet-author-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.meet-author-header h2 {
    font-size: 64px;
    font-weight: 600;
    letter-spacing: -2px;
}

.author-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.author-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
}

.author-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.author-card:hover img {
    transform: scale(1.05);
}

.author-info-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.author-details h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.author-details p {
    font-size: 14px;
    color: #cccccc;
    font-weight: 500;
}

.author-plus-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.author-plus-btn:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .author-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .meet-author-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .meet-author-header h2 {
        font-size: 40px;
    }
    .author-grid {
        grid-template-columns: 1fr;
    }
    .author-card {
        height: 400px;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #000000;
    color: #ffffff;
    padding: 100px 48px;
}

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

.faq-heading {
    text-align: center;
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 60px;
    letter-spacing: -2px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #151515;
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    background-color: #222222;
    transform: translateY(-2px);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item:hover .faq-icon {
    color: var(--primary-orange);
    transform: translate(2px, -2px);
}

@media (max-width: 768px) {
    .faq-heading {
        font-size: 40px;
    }
    .faq-item {
        padding: 24px 20px;
    }
    .faq-item h3 {
        font-size: 18px;
    }
}

/* Courses Section Styles */
.courses-page-section { padding: 100px 5%; background-color: #080808; color: #ffffff; }
.courses-container { max-width: 1200px; margin: 0 auto; }
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 1024px) { .courses-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .courses-grid { grid-template-columns: 1fr; } }
.course-card { background-color: #1a1a1a; border-radius: 12px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
.course-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(255, 82, 8, 0.2); }
.course-image { width: 100%; height: 220px; background-size: cover; background-position: center; }
.course-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.course-content .badge { margin-bottom: 15px; align-self: flex-start; }
.course-content h3 { font-size: 22px; font-weight: 600; margin-bottom: 12px; color: #ffffff; }
.course-desc { font-size: 15px; color: #a0a0a0; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.course-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-top: 15px; border-top: 1px solid #333333; }
.course-meta .duration { font-size: 14px; color: #ffffff; font-weight: 500; }
.course-meta .price { font-size: 20px; color: #FF5208; font-weight: 700; }
.btn-solid-orange.w-100 { width: 100%; text-align: center; display: block; box-sizing: border-box; }
/* News Section Styles */
.news-page-section { padding: 100px 5%; background-color: #080808; color: #ffffff; }
.news-container { max-width: 1200px; margin: 0 auto; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 1024px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .news-grid { grid-template-columns: 1fr; } }
.news-card { background-color: #1a1a1a; border-radius: 12px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(255, 82, 8, 0.2); }
.news-image { width: 100%; height: 220px; background-size: cover; background-position: center; }
.news-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.news-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; font-size: 13px; color: #a0a0a0; font-weight: 500; }
.news-meta .category-tag { background-color: rgba(255, 82, 8, 0.1); color: #FF5208; padding: 4px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; letter-spacing: 1px; }
.news-content h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: #ffffff; line-height: 1.4; }
.news-desc { font-size: 15px; color: #a0a0a0; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.btn-read-more { display: inline-block; color: #FF5208; font-weight: 600; text-decoration: none; align-self: flex-start; transition: color 0.3s ease; }
.btn-read-more:hover { color: #ffffff; }
/* Enhanced News Section Styles */
.stock-ticker-marquee { background-color: #111111; border-bottom: 1px solid #333333; padding: 10px 0; overflow: hidden; white-space: nowrap; font-size: 14px; font-weight: 600; color: #ffffff; }
.ticker-track { display: inline-block; animation: scrollTicker 30s linear infinite; }
.ticker-track span { margin-right: 40px; letter-spacing: 0.5px; }
.text-green { color: #00e676; margin-left: 5px; }
.text-red { color: #ff1744; margin-left: 5px; }
@keyframes scrollTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.featured-news-card { background-color: #1a1a1a; border-radius: 12px; overflow: hidden; margin-bottom: 40px; display: flex; flex-direction: row; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.featured-image { width: 60%; min-height: 400px; background-size: cover; background-position: center; }
.featured-content { width: 40%; padding: 50px 40px; display: flex; flex-direction: column; justify-content: center; }
.featured-content h2 { font-size: 32px; font-weight: 700; margin-bottom: 20px; line-height: 1.3; }
.featured-content .news-desc { font-size: 16px; margin-bottom: 30px; }
.featured-content .btn-solid-orange { align-self: flex-start; }
@media (max-width: 900px) { .featured-news-card { flex-direction: column; } .featured-image { width: 100%; min-height: 250px; } .featured-content { width: 100%; padding: 30px; } }

/* Small Stock Ticker for Hero Section */
.stock-ticker-small {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 15px 20px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    margin: 0 auto;
}
.stock-ticker-small .ticker-track {
    display: inline-block;
    animation: scrollTickerSmall 15s linear infinite;
}
.stock-ticker-small .ticker-track span {
    margin-right: 30px;
}
@keyframes scrollTickerSmall {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Revolving O in Hero Title */
@keyframes revolveO {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.hero-title .highlight {
    display: inline-block;
    animation: revolveO 4s linear infinite;
    transform-origin: center center;
}

/* Support Page Styles */
.support-hero {
    padding: 120px 5% 100px;
    background: linear-gradient(180deg, #050505 0%, #3a1505 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #ffffff;
}
.support-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.support-title {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 60px;
    line-height: 1.2;
}
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.support-card {
    background-color: #2b1104; /* Dark brown/orange */
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 82, 8, 0.2);
}
.support-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}
.support-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}
.support-card p {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
    .support-title {
        font-size: 36px;
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown .dropbtn {
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #111;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1000;
    border-radius: 8px;
    top: 100%;
    left: 0;
    overflow: hidden;
    border: 1px solid #333;
}
.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: background-color 0.2s, color 0.2s;
}
.dropdown-content a:hover {
    background-color: #FF5208;
    color: #fff;
}
.dropdown:hover .dropdown-content {
    display: block;
}
/* ==========================================================================
   MOBILE RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1024px) {
    /* Global Layout & Typography */
    .hero-title { font-size: 60px; }
    .hero-subtitle { font-size: 20px; }
    .featured-content h2 { font-size: 24px; }
    .huge-marquee { font-size: 100px; }

    /* Grids */
    .insights-grid, .stories-grid, .more-articles-grid, .categories-grid, .process-container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Navbar */
    .nav-links { gap: 20px; }

    /* Featured News */
    .featured-news-card { flex-direction: column; }
    .featured-image, .featured-content { width: 100%; }
    .featured-image { min-height: 250px; }
    .featured-content { padding: 30px; }
}

@media (max-width: 768px) {
    /* Global Layout & Typography */
    .hero-title { font-size: 40px; }
    .hero-subtitle { font-size: 16px; }
    .hero-content { padding: 20px; }
    .section-heading, .insights-heading h2, .stories-heading h2, .more-articles-heading h2, .process-header h2 { font-size: 28px; }
    .huge-marquee { font-size: 60px; }

    /* Navbar */
    .navbar-container { flex-direction: column; padding: 15px; gap: 15px; }
    .nav-links { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .nav-actions { margin-top: 10px; }

    /* Grids */
    .insights-grid, .stories-grid, .more-articles-grid, .categories-grid, .process-container, .small-cards-grid {
        grid-template-columns: 1fr;
    }

    /* Flex Layouts */
    .about-content, .footer-container, .newsletter-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .footer-left, .footer-right {
        max-width: 100%;
    }
    .footer-right {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer-nav {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Horizontal Cards */
    .horizontal-card, .more-article-card {
        flex-direction: column;
    }
    .horiz-img, .more-article-card .card-image-wrap {
        width: 100%;
        height: 200px;
    }
    .horiz-text, .more-article-content {
        width: 100%;
        padding: 20px;
    }

    /* Specific Adjustments */
    .subscribe-form {
        flex-direction: column;
        width: 100%;
    }
    .subscribe-form button {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
    
    /* Hexagons & Process */
    .floating-hexagons {
        display: none; /* Hide complex floating hex background on mobile to prevent overflow */
    }
    .process-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    /* Small mobile typography */
    .hero-title { font-size: 32px; }
    .hero-subtitle { font-size: 14px; }
    .huge-marquee { font-size: 40px; }
}

