a {
    text-decoration: none;
}

:root {
    /* Modern Light Mode - Slate & Indigo Palette */
    --bg-body: #f8fafc;
    --bg-card: #ffffff;
    --bg-header: rgba(255, 255, 255, 0.8);
    --bg-header-sticky: rgba(255, 255, 255, 0.9);
    --bg-footer: #0f172a;

    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #f8fafc;

    --border-color: rgba(226, 232, 240, 0.8);
    --border-card: rgba(226, 232, 240, 0.5);

    --accent: #6366f1; /* Indigo 500 */
    --accent-hover: #4f46e5; /* Indigo 600 */
    --accent-soft: rgba(99, 102, 241, 0.1);

    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md:
        0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg:
        0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    /* Minimalist Extension */
    --mini-bg: #ffffff;
    --mini-surface: #f8f9fa;
    --mini-text-primary: #1a1a1a;
    --mini-text-secondary: #6c757d;
    --mini-accent: #111111;
    --mini-border: rgba(0, 0, 0, 0.08);
    --mini-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    --font-serif: "Playfair Display", serif;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html[data-theme="dark"] {
    /* Modern Dark Mode - Zinc & Indigo Palette */
    --bg-body: #09090b;
    --bg-card: #18181b;
    --bg-header: rgba(9, 9, 11, 0.8);
    --bg-header-sticky: rgba(24, 24, 27, 0.9);
    --bg-footer: #020617;

    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
    --text-light: #f4f4f5;

    --border-color: rgba(39, 39, 42, 0.8);
    --border-card: rgba(39, 39, 42, 0.5);

    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.3), 0 1px 2px -1px rgb(0 0 0 / 0.3);
    --shadow-md:
        0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.5);
    --shadow-lg:
        0 20px 25px -5px rgb(0 0 0 / 0.5), 0 8px 10px -6px rgb(0 0 0 / 0.5);

    /* Minimalist Extension Dark */
    --mini-bg: #09090b;
    --mini-surface: #121214;
    --mini-text-primary: #f8fafc;
    --mini-text-secondary: #94a3b8;
    --mini-accent: #ffffff;
    --mini-border: rgba(255, 255, 255, 0.1);
    --mini-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

body {
    font-family: "Roboto", sans-serif !important;
    background-color: var(--bg-body);
    color: var(--text-main);
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

/* Modern Header Styles */
.header {
    background-color: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Logo Switching Logic */
[data-theme="dark"] .logo-light-mode {
    display: none !important;
}

[data-theme="dark"] .logo-dark-mode {
    display: block !important;
}

/* Default state handled by inline style display:none on dark logo and default block on light, 
   but let's reinforce inverse just in case */
html:not([data-theme="dark"]) .logo-dark-mode {
    display: none !important;
}
html:not([data-theme="dark"]) .logo-light-mode {
    display: block !important;
}

.header.sticky {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Consider variable for shadow if needed, but low priority */
    padding: 10px 0;
    background-color: var(--bg-header-sticky);
}

.header ul {
    margin-left: 30px;
    display: flex;
    align-items: center;
}

.header ul li {
    margin-right: 32px;
    position: relative;
    list-style: none;
}

.header ul li a {
    color: var(--text-main);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: -0.2px;
}

.header ul li a:hover {
    color: var(--accent);
}

/* Modern Submenu */
.submenu {
    display: block;
    /* Override flex from .header ul */
    margin-left: 0;
    /* Override margin from .header ul */
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 70%;
    left: -20px;
    background-color: var(--bg-card);
    min-width: 240px;
    z-index: 1000;
    padding: 10px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transform: translateY(20px);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--border-card);
}

.nav li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.submenu li {
    margin: 0 !important;
    width: 100%;
}

.submenu li a {
    display: block;
    padding: 10px 15px;
    color: var(--text-muted);
    font-size: 14px;
    border-radius: 8px;
    background: transparent;
    transition: all 0.2s;
}

.submenu li a:hover {
    background-color: var(--border-color); /* Slight highlight on hover */
    color: var(--accent);
}

/* Bootstrap Dropdown Fixes */
.header .dropdown-menu {
    display: none;
    /* Hide by default */
    margin-top: 10px !important;
}

.header .dropdown-menu.show {
    display: block;
    /* Show only when Bootstrap adds .show */
}

.header .dropdown-toggle::after {
    display: none;
    /* Hide default arrow if custom icon used */
}

/* Header Action Buttons */
.btn-login-header {
    padding: 10px 24px !important;
    background-color: #1a1a1a !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-size: 14px !important;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.btn-login-header:hover {
    background-color: #fc6c30 !important;
    box-shadow: 0 4px 12px rgba(252, 108, 48, 0.3);
    transform: translateY(-1px);
}

/* Footer Styles */
/* Modern Footer Styles */
.main-footer {
    background-color: #0f0f12; /* Intentionally kept dark for style, but can verify later */
    border-top: 1px solid var(--border-color);
    color: #888;
    padding: 80px 0 40px;
}

.footer-logo {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
}

.footer-col h6.footer-heading {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: left;
}

.footer-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
    text-align: left;
}

.footer-links a {
    color: #888;
    font-size: 14px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.footer-links a:hover {
    color: #fc6c30;
    transform: translateX(4px);
}

.social-icons-modern {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon-modern {
    width: 40px;
    height: 40px;
    background: #1a1a1f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon-modern:hover {
    background: #fc6c30;
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.copyright-text p {
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
}

/* Override existing responsive adjusts if needed */
@media (max-width: 991px) {
    .main-footer ul li {
        text-align: left;
    }

    .footer-heading {
        margin-top: 30px;
    }
}

/* Hero Section Styles */
.hero-card {
    background-color: #000;
    color: #fff;
    border-radius: 0;
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
    /* min-height: 400px; */
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
}

.hero-typography {
    text-align: right;
    font-family: "Impact", sans-serif;
    /* Or a grungy font if available */
    color: rgba(255, 255, 255, 0.9);
    line-height: 0.9;
    font-size: 48px;
    transform: rotate(-2deg);
    font-family: cursive;
    /* Using cursive for that hand-drawn look seen in image */
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0.9;
    filter: blur(0.5px);
}

.hero-typography .typo-line {
    display: block;
}

/* Simulate the dark bird image background */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(30, 30, 30, 0.5),
        #000 90%
    );
    z-index: 1;
    pointer-events: none;
}

/* Adjustments for typography specific looking font */
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap");

.hero-typography {
    font-family: "Caveat", cursive;
    /* Close enough handheld style font */
    font-size: 52px;
}

.banner {
    background-color: #000;
}

.big-banner-img {
    position: relative;
}

.big-banner-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.big-banner-img::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.big-banner-content {
    position: absolute;
    top: 0;
    padding: 50px;
    z-index: 2;
}

/* Modern Card System */
.modern-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.card-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-card:hover .card-img {
    transform: scale(1.08);
}

.card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.modern-card:hover .card-title a {
    color: var(--accent);
}

.card-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.card-author-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.card-author-info {
    display: flex;
    flex-direction: column;
}

.card-author-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
}

.card-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Modern Hero Section */
.hero-wrapper {
    position: relative;
    padding: 4rem 0;
    background: var(--bg-body);
}

.hero-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    padding: 4rem;
    background: #000;
}

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

.hero-overlay {
    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.4) 50%, transparent 100%);
}

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

.hero-meta-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    border-radius: 100px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.hero-title-main {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Section Controls */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.section-label {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
    text-transform: uppercase;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1.5rem;
    background: var(--accent);
    border-radius: 100px;
}

.single-news {
    /* padding: 50px 0; */
}

.s-news-cate {
    text-align: center;
    margin-top: 40px;
}

.s-news-cate p {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background-color: #ff6600;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    margin: 0;
    letter-spacing: 0.5px;
}

.single-news-title {
    text-align: center;
}

.single-news-title h3 {
    font-size: 34px;
    font-weight: 400;
}

.s-news-img {
    margin-top: 50px;
}

.s-news-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.s-news-content {
    margin-top: 50px;
}

.s-news-content p {
    font-size: 16px;
    line-height: 2;
    text-align: justify;
}

.related-news {
    margin-top: 50px;
    background: var(--bg-body); /* Or a slightly different shade if needed */
    padding: 50px 0;
}

.related-news-title {
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.related-news-title h3 {
    font-size: 34px;
}

.flex {
    display: flex;
}

.mt-\[21px\] {
    margin-top: 21px;
}

.h-\[34px\] {
    height: 34px;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.w-\[32px\] {
    width: 32px;
}

.h-\[32px\] {
    height: 32px;
}

.ant-avatar-image {
    background: transparent;
}

.ant-avatar {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-variant: tabular-nums;
    list-style: none;
    font-feature-settings: "tnum";
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    line-height: 32px;
    border-radius: 50%;
}

.ant-avatar > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ml-\[8px\] {
    margin-left: 8px;
}

.justify-between {
    justify-content: space-between;
}

.leading-\[16px\] {
    line-height: 16px;
}

.text-\[14px\] {
    font-size: 14px;
}

.leading-\[14px\] {
    line-height: 14px;
}

.text-\[12px\] {
    font-size: 12px;
}

.items-center {
    align-items: center;
}

.flex-row {
    flex-direction: row;
}

.ml-\[12px\] {
    margin-left: 12px;
}

.text-\[\#555555\] {
    --tw-text-opacity: 1;
    color: rgb(85 85 85 / var(--tw-text-opacity, 1));
}

.text-\[\#909090\] {
    --tw-text-opacity: 1;
    color: rgb(144, 144, 144);
}

.text-caak-black {
    color: var(--text-main);
}

.flex-col {
    flex-direction: column;
}

.container-s {
    border-top: 1px solid var(--border-color);
    text-align: center;
    padding: 18px 32px;
    position: relative;
    background: var(--bg-card);
    display: flex;
    justify-content: center;
}

.container-s::before {
    content: "";
    position: absolute;
    top: -101%;
    bottom: 0;
    height: 100%;
    width: 100%;
    left: 0;
    pointer-events: none;
    background: linear-gradient(
        rgba(255, 255, 255, 0),
        var(--bg-card)
    ); /* This might need adjustment for transparent gradients in dark mode */
}

.width-container {
    max-width: 665px;
}

.p1 {
    color: var(--text-main);
    padding-top: 82px;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
    text-align: center;
}

.p2 {
    color: var(--text-main);
    font-feature-settings:
        "liga" off,
        "clig" off;
    font-size: 32px;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
}

a.button {
    text-align: center;
    font-size: 14px;
    font-family: "Logic Monospace", monospace;
    line-height: 14px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: none;
    background: none;
    text-decoration: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    font-weight: 400;
    background-color: #fc6c30;
    border-radius: 4px;
    display: block;
    padding: 15px;
    color: #ffffff;
    margin: 24px auto;
    height: 44px;
    max-width: 192px;
    min-width: 192px;
}

/* Mobile Header Styles */
.mobile-header {
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
}

.mobile-logo span {
    font-family: "Roboto", sans-serif;
    color: var(--text-main);
    letter-spacing: -1px;
}

.mobile-nav-scroll {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    background: var(--bg-header);
    padding-bottom: 0px;
    /* Adjust if scrollbar shows */
}

.mobile-nav-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.mobile-nav-scroll ul {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
    margin-bottom: 0;
}

.mobile-nav-scroll .nav-item a {
    display: block;
    padding: 12px 5px;
    color: var(--text-muted);
    /* Default text color */
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-scroll .nav-item.active a {
    color: var(--text-main);
    /* Active color */
}

.mobile-nav-scroll .nav-item.active a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff6600;
    /* Orange underline */
    border-radius: 2px 2px 0 0;
}

/* Icon adjustments */
.mobile-header .bi {
    cursor: pointer;
    color: var(--text-main);
}

.mobile-header ul li {
    margin-right: 22px;
}

/* Footer Styles additional */
.footer-heading {
    text-align: right;
}

.login {
    padding: 100px 0;
}

.login-title {
    text-align: center;
    margin-bottom: 20px;
}

.login-form {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form form div {
    display: flex;
    flex-direction: column;
}

.login-form form div label {
    margin-bottom: 10px;
}

.login-form form div input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-form form button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #fc6c30;
    color: #fff;
    cursor: pointer;
    transition: 0.2s linear;
}

.login-form form button:hover {
    background-color: #fc6c30;
    color: #fff;
    cursor: pointer;
    transition: 0.2s linear;
    transform: translateY(-2px);
}

.login-form form button:active {
    background-color: #fc6c30;
    color: #fff;
    cursor: pointer;
    transition: 0.2s linear;
    transform: translateY(-2px);
}

/* Plan Page Styles */
.plan-page-wrapper {
    background: var(
        --bg-body
    ); /* Simplify gradient to background for easier theming, or use variables in gradient */
    min-height: 85vh;
    padding: 80px 0;
    font-family: "Inter", sans-serif;
}

.plan-header {
    margin-top: 30px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Card */
.pricing-card {
    background: var(--bg-card);
    border-radius: 24px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-card);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.most-popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fc6c30;
    color: #fff;
    padding: 6px 16px;
    border-radius: 0 0 12px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(252, 108, 48, 0.3);
}

.card-body {
    padding: 40px;
}

.pricing-header .plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    margin: 15px 0 5px;
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-top: 15px;
    color: var(--text-main);
}

.currency {
    font-size: 24px;
    font-weight: 600;
    margin-right: 4px;
    color: #555;
}

.amount {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
}

.period {
    font-size: 14px;
    color: #888;
    margin-left: 6px;
    font-weight: 500;
}

.divider-custom {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 0.06),
        transparent
    );
    margin: 30px 0;
}

/* Feature List */
.feature-list {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
}

/* Register Page Styles */
.register-page-wrapper {
    background: var(--bg-body);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    font-family: "Inter", sans-serif;
}

.register-card-container {
    background: var(--bg-card);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    /* Unified shadow style */
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    display: flex;
    min-height: 600px;
    margin-top: 50px;
}

.register-left {
    flex: 1;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.register-left::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.03) 0%,
        transparent 60%
    );
    animation: pulse 15s infinite linear;
}

@keyframes pulse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.register-logo {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.register-tagline {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.register-subtext {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.register-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-card);
}

.register-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-control-custom {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s;
    background: var(--bg-body);
    color: var(--text-main);
}

.form-control-custom:focus {
    border-color: #fc6c30;
    background: var(--bg-card);
    color: var(--text-main);
    outline: none;
    box-shadow: 0 0 0 4px rgba(252, 108, 48, 0.1);
}

.btn-register {
    width: 100%;
    padding: 16px;
    background: #fc6c30;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 10px;
}

.btn-register:hover {
    background: #e55a20;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(252, 108, 48, 0.2);
}

.auth-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.auth-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eee;
}

.auth-divider span {
    background: #fff;
    padding: 0 15px;
    position: relative;
    color: #999;
    font-size: 13px;
    font-weight: 500;
}

.btn-google {
    width: 100%;
    padding: 14px;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #d1d1d1;
    transform: translateY(-1px);
}

.btn-google img {
    height: 20px;
    width: 20px;
}

.login-link {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #666;
}

.login-link a {
    color: #fc6c30;
    font-weight: 700;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness for Register Page */
@media (max-width: 991px) {
    .register-card-container {
        flex-direction: column;
        max-width: 500px;
    }

    .register-left {
        padding: 40px;
        min-height: 200px;
    }

    .register-right {
        padding: 40px;
    }

    .register-tagline {
        font-size: 32px;
    }
}

/* Ads Page Styles */
.ads-page-wrapper {
    background: var(--bg-body);
    min-height: 80vh;
    padding: 80px 0;
    font-family: "Inter", sans-serif;
}

.ads-hero {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 30px;
}

.ads-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
}

.ads-hero-text {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.ad-placement-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.ad-placement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #fc6c30;
}

.ad-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(252, 108, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fc6c30;
    font-size: 32px;
}

.ad-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
}

.ad-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.ad-specs {
    background: var(--bg-body);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-label {
    color: #888;
}

.spec-value {
    font-weight: 600;
    color: #333;
}

.ad-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 5px;
}

.ad-price span {
    font-size: 14px;
    font-weight: 500;
    color: #888;
}

.contact-ads-section {
    text-align: center;
    background: #111;
    color: #fff;
    padding: 60px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.contact-ads-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-contact-ads {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fc6c30;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-contact-ads:hover {
    background: #fff;
    color: #fc6c30;
    transform: scale(1.05);
}

/* Welcome Page / Hero Styles */
.hero-section-modern {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-color: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 3s ease;
}

.hero-section-modern:hover .hero-bg-img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #000 0%, transparent 60%);
    z-index: 1;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-badge {
    background: #fc6c30;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(252, 108, 48, 0.4);
}

.hero-title-modern {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-meta-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.hero-author-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Modern Card Grid */
.modern-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-card);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #fc6c30;
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
    /* 16:9 Aspect Ratio */
}

.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-card:hover .card-img {
    transform: scale(1.1);
}

.card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    font-size: 11px;
    font-weight: 700;
    color: #fc6c30;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.card-title a:hover {
    color: #fc6c30;
}

.card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-muted);
}

.card-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-muted);
}

.card-author .ant-avatar {
    width: 35px;
    height: 35px;
    line-height: 24px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 28px;
}

/* .section-title removed or commented out */

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fc6c30;
} */

/* Responsiveness for Welcome Page */
@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 36px;
    }

    .hero-section-modern {
        height: 60vh;
    }
}

.feature-list li i {
    margin-right: 12px;
    font-size: 18px;
    color: #28a745;
    /* Success Green */
    flex-shrink: 0;
}

/* Premium Button */
.premium-btn {
    background: linear-gradient(135deg, #fc6c30 0%, #ff8e53 100%);
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(252, 108, 48, 0.2);
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(252, 108, 48, 0.3);
    background: linear-gradient(135deg, #e6551b 0%, #fc6c30 100%);
    color: #fff;
}

.ads-banner img {
    height: 230px;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .header {
        padding: 0 !important;
        background-color: #fff !important;
        color: #333 !important;
    }

    /* Welcome Page Mobile Adjustments */
    .big-banner-img img {
        height: 247px !important;
    }

    .big-banner-content {
        padding: 20px !important;
    }

    .hero-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    .hero-tag,
    .hero-category {
        font-size: 10px !important;
    }

    .hero-meta {
        margin-top: 20px !important;
    }

    .ads-banner img {
        height: auto;
    }

    .banner .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100%;
        width: 100%;
    }

    /* Footer Mobile Adjustments */
    .footer-heading {
        text-align: left !important;
        margin-top: 30px;
    }

    .main-footer ul li {
        text-align: left !important;
    }

    .social-logo {
        text-align: left !important;
    }

    .footer-col {
        margin-bottom: 20px;
        padding-left: 15px;
        /* Ensure some padding */
        padding-right: 15px;
    }

    .main-footer {
        padding: 40px 0;
        /* Reduce padding */
    }

    .copyright-text p {
        text-align: center !important;
    }

    .s-news-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
    }
    .s-news-cate {
        text-align: center;
        margin-top: 60px;
    }
    .ads-banner img {
        height: 150px !important;
        object-fit: cover;
    }

    .ads-hero {
        text-align: center;
        margin-bottom: 60px;
        margin-top: 80px;
    }

    .plan-header {
        margin-top: 80px;
    }

    .register-card-container {
        margin-top: 80px;
    }
    .s-news-content img {
        width: 100% !important;
        height: auto;
    }
}

/* Mobile Sidebar Menu */
.mobile-sidemenu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-sidemenu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidemenu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    max-width: 85%;
    height: 100vh;
    background: var(--bg-card);
    z-index: 1050;
    transition: left 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
}

.mobile-sidemenu.active {
    left: 0;
}

.sidemenu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 20px;
    background: var(--bg-card);
    /* border-bottom: 1px solid #f1f1f1; */
}

.btn-close-custom {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-main);
    padding: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-close-custom:hover {
    transform: rotate(90deg);
    color: #fc6c30;
}

.sidemenu-body {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.sidemenu-nav {
    padding: 10px 0;
}

.sidemenu-nav .nav-item {
    border-bottom: 1px solid var(--border-color);
}

.sidemenu-nav .nav-link,
.sidemenu-nav .nav-link-wrapper {
    display: block;
    padding: 16px 24px;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}

.sidemenu-nav .nav-link-wrapper {
    display: flex;
    /* Ensure flex behavior for wrapper */
}

.sidemenu-nav .nav-link:hover,
.sidemenu-nav .nav-link-wrapper:hover {
    background-color: var(--bg-body);
    color: #fc6c30;
}

.submenu-icon {
    font-size: 12px;
    color: #999;
    transition: transform 0.3s ease;
}

.nav-item.open .submenu-icon {
    transform: rotate(180deg);
}

.nav-item.open .nav-link-wrapper {
    color: #fc6c30;
}

/* Submenu Styles */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--bg-body);
}

.mobile-submenu li a {
    display: block;
    padding: 12px 24px 12px 40px;
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
    border-left: 3px solid transparent;
}

.mobile-submenu li a:hover {
    color: #fc6c30;
    background-color: var(--border-color);
    border-left-color: #fc6c30;
}

.mobile-submenu li a:hover {
    color: #fc6c30;
    background-color: #f5f5f5;
    border-left-color: #fc6c30;
}

/* Helper for stopping body scroll */
body.overflow-hidden {
    overflow: hidden;
}

.ads {
    padding: 50px 0;
}

/* Ads Page Styles */
.ads-table-container {
    max-width: 100%;
    margin: 30px auto;
}

.ads-table th,
.ads-table td {
    text-align: center;
    vertical-align: middle;
    padding: 15px;
    border: 1px solid #000 !important;
    /* Force black borders as per image */
    font-weight: 500;
    font-size: 14px;
    text-transform: lowercase;
}

.ads-table {
    border: 1px solid #000 !important;
}

.contact-ads a {
    padding: 10px 20px;
    background-color: #fc6c30;
    color: #fff;
    border-radius: 12px;
}

.contact-ads a i {
    margin-left: 10px;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* Login Page Styles */
.login-page-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-body);
    padding: 40px 0;
}

.modern-login-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-card);
}

.modern-login-card:hover {
    transform: translateY(-5px);
}

.login-header h3 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: var(--text-main);
    font-size: 28px;
    margin-bottom: 8px;
}

.login-header p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-label-custom {
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 8px;
    font-size: 14px;
}

.auth-input {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.2s ease;
    background-color: var(--bg-body);
    color: var(--text-main);
    height: auto;
}

.auth-input:focus {
    border-color: #fc6c30;
    box-shadow: 0 0 0 4px rgba(252, 108, 48, 0.1);
    outline: none;
    background-color: var(--bg-card);
    color: var(--text-main);
}

.auth-input::placeholder {
    color: #98a2b3;
}

.custom-checkbox .form-check-input {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-top: 2px;
    background-color: var(--bg-body);
}

.custom-checkbox .form-check-input:checked {
    background-color: #fc6c30;
    border-color: #fc6c30;
}

.custom-checkbox .form-check-label {
    font-size: 14px;
    color: var(--text-main);
    padding-left: 2px;
    cursor: pointer;
}

.forgot-link {
    font-size: 14px;
    color: #fc6c30;
    font-weight: 500;
    text-decoration: none;
}

.forgot-link:hover {
    color: #e6551b;
    text-decoration: underline;
}

.login-btn {
    background-color: #fc6c30;
    border: none;
    padding: 14px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.login-btn:hover,
.login-btn:focus {
    background-color: #e6551b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 108, 48, 0.25);
}

.register-link {
    color: #fc6c30;
    font-weight: 600;
    text-decoration: none;
}

.register-link:hover {
    color: #e6551b;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .modern-login-card {
        padding: 30px 20px;
        box-shadow: none;
        background: transparent;
    }

    .login-page-wrapper {
        background: var(--bg-body);
    }
} /* Premium Gate Design */
.premium-gate-wrapper {
    position: relative;
    padding: 60px 0;
    /* Blend with background or stand out */
}

@keyframes pulse-orange {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(252, 108, 48, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(252, 108, 48, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(252, 108, 48, 0);
    }
}

.premium-gate-card {
    background: rgba(17, 24, 39); /* Semi-transparent dark bg */
    backdrop-filter: blur(20px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(252, 108, 48, 0.15); /* Orange glow */
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Gradient Border Effect */
.premium-gate-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.2),
        rgba(252, 108, 48, 0.3),
        rgba(0, 0, 0, 0)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Background Glow */
.premium-gate-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 120%;
    background: radial-gradient(
        circle,
        rgba(252, 108, 48, 0.15) 0%,
        rgba(17, 24, 39, 0) 70%
    );
    pointer-events: none;
    z-index: 0;
}

.premium-lock-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    color: #fc6c30;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: pulse-orange 3s infinite;
}

.premium-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.premium-desc {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 10px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.premium-price-text {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 45px;
    position: relative;
    z-index: 1;
}

.premium-price-highlight {
    color: #fc6c30;
    font-weight: 700;
    font-size: 20px;
}

/* Button Modern Style */
.premium-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fc6c30 0%, #e65100 100%) !important;
    color: #ffffff !important;
    padding: 16px 40px !important;
    border-radius: 50px !important; /* Full rounded pill */
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 10px 20px rgba(252, 108, 48, 0.3) !important;
    height: auto !important;
    width: auto !important;
    min-width: 220px !important;
    position: relative;
    z-index: 1;
    text-decoration: none !important;
}

.premium-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(252, 108, 48, 0.4) !important;
    background: linear-gradient(135deg, #ff8142 0%, #ff6600 100%) !important;
}

.premium-btn:active {
    transform: translateY(-1px);
}

.premium-btn i {
    margin-right: 10px;
}

/* Remove old fade overlay if it interferes */
.container-s {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
}
.container-s::before {
    display: none !important;
}

/* Mobile Responsiveness for Premium Gate */
@media (max-width: 768px) {
    .premium-gate-card {
        padding: 40px 20px;
        border-radius: 20px;
        margin: 0 15px; /* Ensure some side spacing */
    }

    .premium-lock-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .premium-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .premium-desc {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .premium-price-text {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .premium-price-highlight {
        font-size: 18px;
    }

    .premium-btn {
        width: 100%;
        padding: 14px 20px !important;
        font-size: 15px !important;
        min-width: auto !important;
    }
}
/* Minimalist News Redesign Styles */
.mini-article header {
    background-color: transparent !important;
}

.mini-article {
    background-color: var(--mini-bg);
    color: var(--mini-text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.mini-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: var(--mini-text-primary);
}

.mini-meta {
    font-size: 0.9rem;
    color: var(--mini-text-secondary);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.mini-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mini-category {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    color: var(--mini-accent);
    border-bottom: 2px solid var(--mini-accent);
    padding-bottom: 2px;
}

.mini-image-frame {
    margin-bottom: 4rem;
    overflow: hidden;
    background: var(--mini-surface);
}

.mini-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.mini-content-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.mini-prose {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--mini-text-primary);
}

.mini-prose p {
    margin-bottom: 2rem;
}

.mini-prose blockquote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    border-left: 4px solid var(--mini-accent);
    padding-left: 2rem;
    margin: 3rem 0;
    color: var(--mini-text-secondary);
}

.mini-premium-overlay {
    background: var(--mini-surface);
    padding: 4rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    border: 1px solid var(--mini-border);
}

.mini-price-bubble {
    padding: 1.5rem;
    background: var(--mini-bg);
    border: 1px solid var(--mini-border);
    margin-bottom: 2rem;
}

.mini-lock-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--mini-text-primary);
    opacity: 0.2;
}

.mini-btn {
    background: var(--mini-accent);
    color: var(--mini-bg);
    border: none;
    padding: 1rem 3rem;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.mini-btn:hover {
    background: transparent;
    color: var(--mini-accent);
    box-shadow: inset 0 0 0 2px var(--mini-accent);
}

.mini-suggestion-card {
    border-top: 1px solid var(--mini-border);
    padding-top: 2rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.mini-suggestion-card:hover {
    opacity: 0.7;
}

.mini-suggestion-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.mini-suggestion-meta {
    font-size: 0.8rem;
    color: var(--mini-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
