/* Theme Name: Crypto Gems Premium
Author: Gemini
Version: 1.0
*/

/* --- VARIABLES --- */
:root {
    --bg-dark: #050607;
    --bg-card: #0E1217;
    --primary: #00FFA3; /* Neon Green */
    --accent: #2962FF;  /* Electric Blue */
    --text-white: #FFFFFF;
    --text-gray: #A0A0A0;
    --font-head: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border: 1px solid rgba(255,255,255,0.08);
}

/* --- GLOBAL RESET --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg-dark); color: var(--text-white); font-family: var(--font-body); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* =========================================
   PREMIUM HEADER 2026 (Colorful & Clean)
   ========================================= */

.main-header {
    background: rgba(5, 6, 7, 0.8); /* More transparency */
    backdrop-filter: blur(20px);     /* Stronger Glass Effect */
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0; /* More spacing for premium feel */
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- LOGO --- */
.brand-logo {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.brand-logo .highlight {
    background: linear-gradient(90deg, #00FFA3, #00E5FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 163, 0.4);
}

/* --- COLORFUL NAVIGATION (The Magic) --- */
.desktop-nav ul {
    display: flex;
    gap: 45px; /* Wider gap for cleaner look */
    align-items: center;
}

.desktop-nav a {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: 0.3s;
    text-decoration: none;
}

/* 1st Category (Hidden Gems) -> Neon Cyan */
.desktop-nav li:nth-child(1) a {
    color: #00E5FF;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.2);
}
.desktop-nav li:nth-child(1) a:hover {
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.8);
    transform: translateY(-2px);
}

/* 2nd Category (Upcoming) -> Neon Purple */
.desktop-nav li:nth-child(2) a {
    color: #D500F9;
    text-shadow: 0 0 8px rgba(213, 0, 249, 0.2);
}
.desktop-nav li:nth-child(2) a:hover {
    text-shadow: 0 0 20px rgba(213, 0, 249, 0.8);
    transform: translateY(-2px);
}

/* 3rd Category (Blog/News) -> Neon Green */
.desktop-nav li:nth-child(3) a {
    color: #00FFA3;
    text-shadow: 0 0 8px rgba(0, 255, 163, 0.2);
}
.desktop-nav li:nth-child(3) a:hover {
    text-shadow: 0 0 20px rgba(0, 255, 163, 0.8);
    transform: translateY(-2px);
}

/* --- SUBSCRIBE BUTTON REMOVED --- */
.btn-header {
    display: none !important; /* Forces button to disappear */
}

/* --- MOBILE TOGGLE --- */
.header-right {
    display: flex;
    align-items: center;
}

.mobile-toggle {
    display: none; /* Flex on mobile via media query */
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.bar {
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, #fff, #aaa);
    border-radius: 4px;
    display: block;
    transition: 0.3s;
}

/* --- MOBILE DRAWER (UPDATED) --- */
.mobile-drawer {
    position: fixed; top: 0; right: -300px; width: 300px; height: 100%;
    background: rgba(10, 10, 10, 0.95); /* Darker BG */
    backdrop-filter: blur(15px);
    border-left: 1px solid rgba(255,255,255,0.1);
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 30px;
}
.mobile-drawer.active { right: 0; }

.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; }
.drawer-logo { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: #fff; }
.close-btn { background: none; border: none; color: #fff; font-size: 2.5rem; cursor: pointer; transition: 0.3s; }
.close-btn:hover { color: var(--primary); transform: rotate(90deg); }

.drawer-body ul { display: flex; flex-direction: column; gap: 25px; }
.drawer-body a {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ccc;
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}
.drawer-body a:hover { color: var(--primary); padding-left: 10px; border-bottom-color: var(--primary); }

.site-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); z-index: 1500; opacity: 0; visibility: hidden; transition: 0.3s;
}
.site-overlay.active { opacity: 1; visibility: visible; }

/* Responsive Trigger */
@media (max-width: 900px) {
    .desktop-nav { display: none; }
    .mobile-toggle { display: flex; }
}
/* =========================================
   PREMIUM FOOTER STYLES
   ========================================= */

.main-footer {
    background: #020203; /* Deep Black */
    padding: 80px 0 30px;
    margin-top: 100px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Premium Top Gradient Line (Neon Glow) */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.6;
    box-shadow: 0 0 15px var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Wider first column for About */
    gap: 60px;
    margin-bottom: 50px;
}

/* --- COLUMN 1: BRANDING --- */
.footer-logo {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-logo span {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(0, 255, 163, 0.4);
}

.about-col p {
    color: #9CA3AF; /* Premium Gray */
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 350px; /* Limits width for better reading */
}

/* --- COLUMNS 2 & 3: LINKS --- */
.links-col h4 {
    font-family: var(--font-head);
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

/* Small underline under headings */
.links-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary);
    margin-top: 8px;
    border-radius: 2px;
}

.links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links-col a {
    color: #9CA3AF;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

/* Hover Effect: Slide Right & Color Change */
.links-col a:hover {
    color: var(--primary);
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(0, 255, 163, 0.3);
}

/* --- COPYRIGHT SECTION --- */
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    color: #555;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* --- MOBILE RESPONSIVE FIT --- */
@media (max-width: 900px) {
    .main-footer {
        padding: 60px 0 30px;
        margin-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr; /* Single Column */
        gap: 50px;
        text-align: center;
    }

    .about-col p {
        margin: 0 auto; /* Center text block */
    }

    /* Center the heading underline on mobile */
    .links-col h4::after {
        margin: 8px auto 0 auto;
    }
    
    /* Center the hover effect slide (optional: disable slide on mobile if preferred) */
    .links-col a:hover {
        transform: translateX(0) scale(1.05); /* Just scale up slightly on mobile */
    }
}



























/* =========================================
   HOMEPAGE PREMIUM STYLES
   ========================================= */

/* =========================================
   PREMIUM HERO SECTION (PODIUM STYLE)
   ========================================= */

.hero-section {
    padding: 80px 0 100px 0; /* Extra bottom padding for floating cards */
    background: radial-gradient(circle at center top, #1a253a 0%, #050607 70%);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden; /* Prevents overflow on mobile */
}

.hero-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 30px rgba(0, 255, 163, 0.2);
}

.hero-subtitle {
    color: #999;
    margin-bottom: 60px;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- THE WRAPPER (Flexbox Magic) --- */
.hero-wrapper {
    display: flex;
    justify-content: center;
    align-items: center; /* Vertically align centers */
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 20px;
}

/* --- COMMON CARD STYLES --- */
.hero-coin-card {
    background: rgba(14, 18, 23, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    width: 300px; /* Base width */
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover Effect */
.hero-coin-card:hover {
    transform: translateY(-10px);
    background: #151920;
}

/* --- RANK SPECIFIC STYLES (The Podium Effect) --- */

/* RANK 1 (The Winner - Center & Big) */
.hero-coin-card.rank-1 {
    order: 2; /* Center in Flexbox */
    transform: scale(1.1); /* Make it bigger */
    border-color: var(--primary);
    box-shadow: 0 0 50px rgba(0, 255, 163, 0.15);
    z-index: 2;
    background: linear-gradient(145deg, #12161c, #0a0d10);
}

.hero-coin-card.rank-1:hover {
    transform: scale(1.15) translateY(-10px);
    box-shadow: 0 0 80px rgba(0, 255, 163, 0.3);
}

/* RANK 2 (Silver - Left) */
.hero-coin-card.rank-2 {
    order: 1; /* Left side */
    border-color: #00E5FF; /* Cyan/Silver */
    margin-top: 40px; /* Push down slightly */
}
.hero-coin-card.rank-2 .gem-badge-large { background: #00E5FF; color: #000; }
.hero-coin-card.rank-2:hover { box-shadow: 0 0 30px rgba(0, 229, 255, 0.2); }

/* RANK 3 (Bronze - Right) */
.hero-coin-card.rank-3 {
    order: 3; /* Right side */
    border-color: #FF9100; /* Orange/Bronze */
    margin-top: 40px; /* Push down slightly */
}
.hero-coin-card.rank-3 .gem-badge-large { background: #FF9100; color: #000; }
.hero-coin-card.rank-3:hover { box-shadow: 0 0 30px rgba(255, 145, 0, 0.2); }


/* --- INNER CONTENT STYLING --- */

.gem-badge-large {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: #000;
    padding: 6px 20px; border-radius: 30px;
    font-weight: 800; font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border: 4px solid #050607; /* Matches body bg to look like it cuts the card */
}

/* Glow Animation for Rank 1 */
.glow-pulse { animation: pulse 3s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 163, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(0, 255, 163, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 163, 0); }
}

.hero-logo-img {
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.1);
    margin: 15px auto;
    object-fit: cover;
}

.hero-coin-name { font-size: 1.6rem; margin: 0; font-weight: 700; line-height: 1.2; }
.hero-coin-name a { color: #fff; text-decoration: none; }
.hero-ticker { color: #888; font-family: 'Rajdhani', sans-serif; letter-spacing: 2px; font-weight: bold; font-size: 0.9rem; }

/* Stats Row */
.hero-stats-row {
    display: flex; justify-content: space-between;
    background: rgba(255,255,255,0.03);
    padding: 15px; border-radius: 12px;
    margin: 25px 0; border: 1px solid rgba(255,255,255,0.05);
}

.h-stat-box .label { font-size: 0.75rem; color: #666; text-transform: uppercase; font-weight: 600; }
.h-stat-box .val { font-weight: 800; font-size: 1.2rem; display: block; }
.vote-val { color: var(--primary); }
.roi-val { color: #fff; }

/* Action Button */
.btn-hero-analyze {
    display: block; width: 100%;
    background: var(--primary); color: #000;
    padding: 14px; border-radius: 10px;
    font-weight: 800; font-size: 1rem;
    text-transform: uppercase; letter-spacing: 1px;
    transition: 0.3s;
}
.btn-hero-analyze:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
    transform: translateY(-2px);
}


/* --- MOBILE RESPONSIVE FIT --- */
@media (max-width: 900px) {
    .hero-title { font-size: 2.2rem; padding: 0 10px; }
    
    .hero-wrapper {
        flex-direction: column; /* Stack vertically */
        gap: 40px;
    }

    /* Reset Podium offsets for mobile */
    .hero-coin-card.rank-1,
    .hero-coin-card.rank-2,
    .hero-coin-card.rank-3 {
        order: unset; /* Follow HTML order or custom mobile order */
        margin-top: 0;
        transform: none;
        width: 100%;
        max-width: 340px; /* Prevent too wide on tablets */
    }

    /* Keep Rank 1 highlighted but fit */
    .hero-coin-card.rank-1 {
        order: -1; /* Ensure Rank 1 is ALWAYS top on mobile */
        transform: scale(1.05); /* Slightly larger */
        margin-bottom: 10px;
    }

    .hero-coin-card:hover { transform: none; } /* Disable hover lift on touch */
}


/* =========================================
   PREMIUM HIDDEN GEMS LIST
   ========================================= */

.section-hidden-list {
    padding: 80px 0;
    background: #050607;
}

.sec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.view-all-link {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    padding-bottom: 3px;
    transition: 0.3s;
}
.view-all-link:hover {
    border-bottom-color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 255, 163, 0.4);
}

/* --- DESKTOP TABLE (FLOATING STRIPS LAYOUT) --- */

.desktop-view {
    background: transparent; /* No container background */
    border: none;
    border-radius: 0;
    overflow: visible;
}

/* Header Row */
.table-head {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 0.8fr; /* Same grid as PHP */
    padding: 15px 25px;
    margin-bottom: 10px;
    color: #666;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    background: transparent;
}

/* Coin Rows (The Premium Strips) */
.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 0.8fr;
    padding: 20px 25px;
    align-items: center;
    background: #0E1217; /* Dark Strip Background */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 15px; /* Gap between rows */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Hover Effect: Border Glow & Lift */
.table-row:hover {
    transform: translateY(-3px) scale(1.01);
    background: #13171D;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Active/Hover Line Indicator */
.table-row::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--primary);
    opacity: 0;
    transition: 0.3s;
}
.table-row:hover::before { opacity: 1; }


/* --- COLUMNS STYLING --- */

/* 1. Name & Icon */
.col-name {
    display: flex;
    align-items: center;
    gap: 15px;
}
.list-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}
.table-row:hover .list-icon {
    border-color: var(--primary);
}
.col-name a {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    transition: 0.3s;
}
.table-row:hover .col-name a { color: var(--primary); }

/* 2. Ticker (Pill Badge) */
.col-ticker {
    font-family: 'Rajdhani', sans-serif;
    background: rgba(255, 255, 255, 0.05);
    color: #aaa;
    padding: 5px 10px;
    border-radius: 6px;
    display: inline-block;
    width: fit-content;
    font-size: 0.85rem;
    font-weight: 600;
}

/* 3. Price */
.col-price {
    font-family: monospace;
    font-size: 1rem;
    color: #eee;
}

/* 4. Risk (Bordered Tag) */
.col-risk { display: flex; align-items: center; }
.risk-tag {
    background: transparent;
    color: #FFCC00;
    border: 1px solid rgba(255, 204, 0, 0.3);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* 5. ROI (Neon Text) */
.col-roi {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(0, 255, 163, 0.2);
}

/* 6. Action Button (Glass) */
.col-action { text-align: right; }
.btn-view-sm {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
}
.btn-view-sm:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 163, 0.3);
}

/* --- MOBILE VIEW --- */
.mobile-view { display: none; } /* Default hidden on desktop */

@media (max-width: 900px) {
    .desktop-view { display: none; }
    .mobile-view { display: grid; gap: 20px; }
}


/* =========================================
   PREMIUM UPCOMING GEMS SECTION
   ========================================= */

.section-upcoming {
    padding: 80px 0;
    background: #050607; /* Pitch Black Background */
    position: relative;
    overflow: hidden;
}

/* Background Glow Effect (Optional Decoration) */
.section-upcoming::before {
    content: '';
    position: absolute;
    top: -10%; left: -10%; width: 50%; height: 50%;
    background: radial-gradient(circle, rgba(41, 98, 255, 0.05), transparent 70%);
    z-index: 0;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* --- PREMIUM CARD DESIGN --- */
.up-box-premium {
    background: linear-gradient(145deg, #0E1217, #080A0C); /* Deep Gradient */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 25px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy smooth transition */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Hover Effect: Lift & Neon Blue Glow */
.up-box-premium:hover {
    transform: translateY(-10px);
    border-color: #2962FF; /* Electric Blue Border */
    box-shadow: 0 15px 40px rgba(41, 98, 255, 0.15); /* Blue Glow */
}

/* --- STATUS BADGE (Top Right) --- */
.up-status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

/* --- TITLE --- */
.up-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.up-title a {
    color: #fff;
    transition: 0.3s;
}

.up-title a:hover {
    color: #2962FF; /* Blue Text Hover */
    text-shadow: 0 0 15px rgba(41, 98, 255, 0.4);
}

/* --- DATA GRID (COLORFUL FIELDS) --- */
.up-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Individual Data Box */
.u-meta {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 3px solid #333; /* Default border */
    transition: 0.3s;
}

.u-meta:hover {
    background: rgba(255, 255, 255, 0.05);
}

.u-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.u-val {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #eee;
}

/* --- COLOR CODING (Using nth-child to color specific fields) --- */

/* 1. Release Date (Cyan/Blue) */
.u-meta:nth-child(1) {
    border-left-color: #00E5FF;
}
.u-meta:nth-child(1) .u-val { color: #00E5FF; }

/* 2. Network (Purple/Pink) */
.u-meta:nth-child(2) {
    border-left-color: #D500F9;
}
.u-meta:nth-child(2) .u-val { color: #D500F9; text-transform: uppercase; }

/* 3. Supply (Orange/Yellow) */
.u-meta:nth-child(3) {
    border-left-color: #FFAB00;
}
.u-meta:nth-child(3) .u-val { color: #FFAB00; }

/* 4. ROI (Neon Green) */
.u-meta:nth-child(4) {
    border-left-color: #00FFA3;
    background: rgba(0, 255, 163, 0.05); /* Slight green background */
}
.u-meta:nth-child(4) .u-val { color: #00FFA3; text-shadow: 0 0 10px rgba(0, 255, 163, 0.3); }


/* --- BLOG SECTION (No Images) --- */
.section-blog { padding: 60px 0; background: #050607; }
.blog-grid-premium { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.blog-card-clean {
    background: transparent; border: 1px solid #222; border-radius: 12px; padding: 30px;
    display: flex; flex-direction: column; align-items: flex-start; transition: 0.3s;
}
.blog-card-clean:hover { border-color: #444; background: #0a0c10; }

.blog-date-badge {
    background: #111; color: #888; padding: 5px 12px; border-radius: 20px;
    font-size: 0.8rem; margin-bottom: 15px; border: 1px solid #333;
}

.blog-title { font-size: 1.4rem; margin-bottom: 15px; line-height: 1.4; }
.blog-excerpt { color: #888; font-size: 0.95rem; margin-bottom: 25px; line-height: 1.6; }

.btn-read-clean {
    color: var(--primary); font-weight: 700; font-size: 0.9rem;
    border-bottom: 2px solid transparent; padding-bottom: 2px;
}
.btn-read-clean:hover { border-bottom-color: var(--primary); }


/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    /* Hero */
    .hero-title { font-size: 2.2rem; }
    
    /* List View Switch */
    .desktop-view { display: none; }
    .mobile-view { display: grid; gap: 15px; }
    
    .mob-gem-card {
        background: #0E1217; padding: 15px; border-radius: 10px; border: var(--border);
    }
    .mob-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
    .mob-head div { flex: 1; padding-left: 15px; }
    .mob-head h4 { font-size: 1.1rem; margin: 0; }
    .mob-ticker { font-size: 0.8rem; color: #666; }
    .mob-stats { display: flex; justify-content: space-between; font-size: 0.9rem; border-top: 1px solid #222; padding-top: 10px; }
}



























/* =========================================
   SIDEBAR STYLES
   ========================================= */
.sidebar-column { width: 350px; flex-shrink: 0; position: sticky; top: 100px; }
.sidebar-widget { background: #0E1217; padding: 25px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); margin-bottom: 30px; }
.widget-title { font-size: 1.1rem; color: #fff; margin-bottom: 20px; border-bottom: 1px solid #222; padding-bottom: 10px; }

/* Recent Gems List */
.side-item { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; border-bottom: 1px dashed #222; padding-bottom: 10px; }
.side-left { display: flex; align-items: center; gap: 10px; }
.mini-circle { width: 35px; height: 35px; border-radius: 50%; }
.side-link { font-weight: bold; font-size: 0.95rem; color: #ddd; display: block; }
.side-meta { font-size: 0.75rem; color: #666; font-family: monospace; }
.side-vote-badge { background: rgba(0,255,163,0.1); color: var(--primary); font-size: 0.8rem; padding: 2px 8px; border-radius: 4px; font-weight: bold; }

/* Upcoming List */
.side-list-simple li { margin-bottom: 12px; }
.side-list-simple a { display: flex; justify-content: space-between; font-size: 0.9rem; color: #ccc; }
.u-date { color: #666; font-size: 0.8rem; }

/* Ad Box */
.ad-box { height: 250px; background: #080A0C; display: flex; align-items: center; justify-content: center; border: 1px dashed #333; color: #444; font-weight: bold; }

/* Categories */
.cat-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.cat-cloud a { background: #1a1a1a; padding: 5px 12px; border-radius: 4px; font-size: 0.8rem; color: #aaa; transition: 0.2s; }
.cat-cloud a:hover { background: var(--primary); color: #000; }


/* =========================================
   SINGLE PAGE PREMIUM STYLES
   ========================================= */

/* Main Layout */
.single-layout-wrapper { display: flex; gap: 40px; margin-top: 40px; margin-bottom: 80px; align-items: flex-start; }
.main-content-area { flex: 1; min-width: 0; }

/* Hidden Gems Header */
.gem-header-card {
    background: linear-gradient(135deg, #151920, #080A0C);
    padding: 30px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px;
}
.gh-left { display: flex; align-items: center; gap: 20px; }
.gh-logo { width: 70px; height: 70px; border-radius: 50%; border: 2px solid var(--primary); }
.gh-title { font-size: 2rem; margin: 0; line-height: 1; }
.gh-ticker { font-family: monospace; color: #888; font-size: 1.1rem; }
.gh-rating { text-align: right; }
.gh-rating span { display: block; font-size: 0.8rem; color: #888; }
.gh-rating strong { font-size: 1.5rem; color: var(--primary); }

/* Data Grid (3 Columns) */
.data-grid-premium {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px;
    background: #0E1217; padding: 25px; border-radius: 12px; margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.05);
}
.d-item { display: flex; flex-direction: column; text-align: center; padding: 10px; background: rgba(255,255,255,0.02); border-radius: 8px; }
.d-item span { font-size: 0.75rem; color: #666; text-transform: uppercase; margin-bottom: 5px; }
.d-item b { font-size: 1rem; color: #eee; }

/* Premium Buy Button (Color Fixed) */
.btn-buy-premium {
    display: block; text-align: center;
    background: linear-gradient(90deg, #00C853, #009624); /* Darker Green Gradient */
    color: #fff; padding: 16px; border-radius: 8px; font-weight: 800; font-size: 1.1rem;
    margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3); transition: 0.3s;
}
.btn-buy-premium:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 200, 83, 0.5); color: #fff; }

/* CA Box */
.ca-box { background: #111; padding: 15px; border-radius: 8px; border: 1px dashed #333; margin-bottom: 30px; display: flex; align-items: center; gap: 10px; }
.ca-label { font-weight: bold; color: #888; }
.ca-code { font-family: monospace; color: var(--primary); word-break: break-all; }

/* Voting Bottom Section */
.vote-section-bottom {
    background: #0E1217; padding: 30px; border-radius: 12px; text-align: center;
    margin-top: 50px; border: 1px solid rgba(255,255,255,0.05);
}
.vote-section-bottom h3 { margin-bottom: 20px; font-size: 1.3rem; }
.vote-widget-inline { display: flex; justify-content: center; align-items: center; gap: 20px; }
.vote-btn {
    background: rgba(255,255,255,0.05); border: 1px solid #333; color: #ccc;
    padding: 10px 20px; border-radius: 30px; cursor: pointer; font-size: 1rem; transition: 0.2s;
    display: flex; align-items: center; gap: 8px;
}
.vote-btn:hover { background: var(--primary); color: #000; border-color: var(--primary); }
.vote-sep { font-size: 0.9rem; color: #666; font-weight: bold; }

/* Upcoming Layout Styles */
.up-header-card { margin-bottom: 30px; border-bottom: 1px solid #222; padding-bottom: 20px; }
.status-badge-lg { background: #2962FF; color: #fff; padding: 5px 12px; border-radius: 4px; font-size: 0.8rem; font-weight: bold; }
.up-title-lg { font-size: 2.5rem; margin-top: 15px; }

.data-grid-simple { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; background: #0E1217; padding: 25px; border-radius: 12px; margin-bottom: 40px; }
.ds-item { border-bottom: 1px solid #222; padding-bottom: 10px; }
.ds-item small { display: block; color: #666; font-size: 0.8rem; margin-bottom: 3px; }
.ds-item strong { color: #fff; font-size: 1rem; }
.full-width { grid-column: 1 / -1; border-bottom: none; }

/* =========================================
   PREMIUM CONTENT TYPOGRAPHY & DISCLAIMER
   ========================================= */

/* --- 1. ARTICLE CONTENT TYPOGRAPHY --- */
.article-body {
    font-family: 'Inter', sans-serif; /* Clean Reading Font */
    font-size: 1.15rem; /* Slightly larger for easier reading */
    line-height: 1.9;   /* More breathing room */
    color: #D1D5DB;     /* Premium Light Gray (Not harsh white) */
    margin-bottom: 40px;
}

/* Headings Design */
.article-body h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

/* Neon Underline Effect for H2 */
.article-body h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary); /* Neon Green Accent */
    box-shadow: 0 0 10px var(--primary);
}

.article-body h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary); /* Neon Text */
    margin-top: 40px;
    margin-bottom: 15px;
}

/* Lists & Links inside Article */
.article-body p { margin-bottom: 25px; }

.article-body ul, .article-body ol {
    margin-bottom: 30px;
    padding-left: 20px;
    background: rgba(255,255,255,0.02);
    padding: 20px 20px 20px 40px;
    border-radius: 8px;
    border-left: 2px solid rgba(255,255,255,0.1);
}

.article-body li { margin-bottom: 10px; }
.article-body li::marker { color: var(--primary); font-weight: bold; } /* Green Bullets */

.article-body a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 255, 163, 0.3);
    transition: 0.3s;
}
.article-body a:hover {
    border-bottom-color: var(--primary);
    color: #fff;
}


/* --- 2. PREMIUM DISCLAIMER BOX --- */
.disclaimer-box-premium {
    background: linear-gradient(145deg, rgba(255, 59, 48, 0.05), rgba(20, 20, 20, 1));
    border: 1px solid rgba(255, 59, 48, 0.2);
    border-left: 5px solid #FF3B30; /* Solid Red Line */
    padding: 30px;
    border-radius: 12px;
    margin-top: 60px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Deep Shadow */
}

/* Warning Icon Circle */
.disc-icon {
    font-size: 1.8rem;
    background: rgba(255, 59, 48, 0.15);
    color: #FF3B30;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 59, 48, 0.3);
}

.disc-content h4 {
    font-family: 'Rajdhani', sans-serif;
    color: #FF3B30;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disc-content p {
    color: #aaa;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}
/* =========================================
   PREMIUM RELATED POSTS SECTION
   ========================================= */

.related-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.related-section h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Grid Layout */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns on Desktop */
    gap: 25px;
}

/* Card Design */
.related-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #0E1217; /* Dark Panel Background */
    border: 1px solid rgba(255, 255, 255, 0.05); /* Subtle Border */
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect (Premium Glow) */
.related-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary); /* Neon Green Border */
    box-shadow: 0 10px 30px rgba(0, 255, 163, 0.1); /* Soft Glow */
    background: linear-gradient(145deg, #151920, #0E1217);
}

/* Icon Styling */
.rel-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0; /* Icon shrink nahi hoga */
}

/* Text Styling */
.related-card h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.3;
    font-weight: 700;
}

.rel-meta {
    font-size: 0.85rem;
    color: var(--primary); /* Neon Color Text */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: 0.3s;
}

.related-card:hover .rel-meta {
    transform: translateX(5px); /* Arrow move effect */
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .related-grid {
        grid-template-columns: 1fr; /* Stack 1 column on Mobile */
    }
    
    .related-card {
        padding: 15px;
    }
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .single-layout-wrapper { flex-direction: column; }
    .sidebar-column { width: 100%; margin-top: 40px; }
    .gem-header-card { flex-direction: column; text-align: center; gap: 15px; }
    .gh-left { flex-direction: column; }
    .gh-rating { text-align: center; margin-top: 10px; }
    .data-grid-premium { grid-template-columns: 1fr 1fr; } /* 2 cols on mobile */
    .related-grid { grid-template-columns: 1fr; }
    .ca-box { flex-direction: column; text-align: center; }
}
















/* Vote Click Animation */
.pulse-vote {
    animation: votePop 0.3s ease-in-out;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes votePop {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); }
    100% { transform: scale(1); }
}

/* Button Active State */
.vote-btn:active {
    transform: scale(0.9);
}

















/* --- PAGINATION STYLES --- */
.pagination-wrapper .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-wrapper .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: #0E1217;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.pagination-wrapper .page-numbers.current,
.pagination-wrapper .page-numbers:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.pagination-wrapper .next, 
.pagination-wrapper .prev {
    width: auto;
    padding: 0 15px;
}