/*
Theme Name: All-Star Discounts
Theme URI: https://allstardiscounts.com
Description: Dark theme with modern effects and animations
Author: All-Star Discounts
Template: twentytwentyfour
Version: 3.0.0
*/

/* Import parent theme styles */
@import url('../twentytwentyfour/style.css');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:wght@400;700&display=swap');

/* ========================================
   DARK THEME VARIABLES & ANIMATIONS
======================================== */
:root {
    --primary-dark: #0a0e27;
    --secondary-dark: #1a1f3a;
    --accent-neon: #00ffff;
    --accent-purple: #b24bf3;
    --accent-pink: #ff6b9d;
    --text-light: #e0e0e0;
    --text-bright: #ffffff;
    --card-bg: #15192e;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --glow-cyan: 0 0 20px rgba(0, 255, 255, 0.5);
    --glow-purple: 0 0 20px rgba(178, 75, 243, 0.5);
    --mouse-x: 50%;
    --mouse-y: 50%;
}

/* Mouse glow effect */
.mouse-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(
        circle 150px at var(--mouse-x) var(--mouse-y),
        rgba(0, 255, 255, 0.08) 0%,
        rgba(178, 75, 243, 0.04) 40%,
        transparent 70%
    );
    transition: background 0.1s ease;
}

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

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 5px var(--accent-neon), 0 0 10px var(--accent-neon); }
    50% { box-shadow: 0 0 20px var(--accent-neon), 0 0 30px var(--accent-neon); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slide-in-left {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; filter: brightness(1.5); }
}

@keyframes pop-in {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes drop-fade {
    0% { transform: translateY(-30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 5px #ff6b35, 0 0 10px #ff6b35, 0 2px 4px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 0 15px #ff6b35, 0 0 25px #ff6b35, 0 0 35px #ff6b35, 0 2px 4px rgba(0,0,0,0.3); }
}

/* ========================================
   GLOBAL DARK STYLES
======================================== */
body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-light);
    background: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(135deg, #0a3d2c 0%, #1a1f3a 100%);
    background-size: 50px 50px, 50px 50px, 100% 100%;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

::selection {
    background: var(--accent-purple);
    color: var(--text-bright);
}

/* ========================================
   AFFILIATE DISCLOSURE - ANIMATED
======================================== */
.affiliate-disclosure {
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: gradient-shift 8s ease infinite;
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.affiliate-disclosure::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to { left: 100%; }
}

/* ========================================
   HEADER - DARK WITH GLOW
======================================== */
.site-header {
    background: var(--secondary-dark);
    color: white;
    padding: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.8);
    border-bottom: 2px solid var(--accent-neon);
    position: relative;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-3);
    animation: gradient-shift 5s ease infinite;
    background-size: 200% 100%;
}

.site-branding {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    padding: 0 20px;
    align-items: center;
}

.site-title-wrapper {
    text-align: center;
}

.social-icons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-title {
    margin: 0;
    font-size: 52px;
    font-weight: 900;
    background: var(--gradient-3);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    letter-spacing: -1px;
}

.title-star {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.1em;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    animation: star-entrance 2s ease-out, star-glow 3s ease-in-out 2s infinite;
}

@keyframes star-entrance {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.3) rotate(720deg);
    }
    100% {
        transform: scale(1) rotate(1080deg);
        opacity: 1;
    }
}

@keyframes star-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1)) drop-shadow(0 0 30px rgba(255, 255, 0, 0.6));
        transform: scale(1.1);
    }
}

.site-title a {
    background: var(--gradient-3);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.site-tagline {
    font-size: 16px;
    font-style: italic;
    margin: 8px 0 0 0;
    color: var(--accent-neon);
    opacity: 0.9;
    animation: fade-in 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.site-motto {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0 0 0;
    color: var(--accent-purple);
    animation: fade-in 1s ease 0.3s backwards;
    text-shadow: 2px 2px 4px rgba(10, 14, 39, 0.8), 0 0 10px rgba(178, 75, 243, 0.6);
}

.tagline-emoji {
    font-size: 20px;
    display: inline-block;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1) rotate(360deg);
    box-shadow: var(--glow-purple);
}

/* ========================================
   NAVIGATION - NEON STYLE (Full width, centered)
======================================== */
.main-navigation {
    background: var(--card-bg);
    padding: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.main-navigation-inner {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.nav-menu-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.nav-spacer {
    display: none;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: var(--text-light);
    text-decoration: none;
    padding: 18px 20px;
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.main-navigation a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-3);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-navigation a:hover {
    color: var(--accent-neon);
    text-shadow: 0 0 10px var(--accent-neon);
}

.main-navigation a:hover::before {
    width: 80%;
}

/* Nav responsive - allow wrapping on smaller screens */
@media (max-width: 900px) {
    .main-navigation ul {
        flex-wrap: wrap;
    }
    
    .main-navigation a {
        padding: 15px 15px;
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .main-navigation a {
        padding: 12px 10px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}

/* ========================================
   DISCORD BANNER - GLOWING
======================================== */
.discord-banner {
    background: var(--gradient-1);
    background-size: 200% 100%;
    animation: gradient-shift 6s ease infinite, pop-in 0.6s ease;
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    position: relative;
    cursor: pointer;
}

.discord-banner:hover {
    animation: gradient-shift 6s ease infinite, flash 0.5s ease;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.8);
}

.discord-banner::before {
    content: '🎮';
    margin-right: 10px;
    font-size: 20px;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

.discord-banner a {
    color: white;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

/* Make link cover entire banner */
.discord-banner a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.discord-banner a:hover {
    text-shadow: 0 0 20px white;
}

/* Caption below Discord banner */
.info-caption {
    background: transparent;
    border: none;
    color: white;
    text-align: center;
    padding: 30px 20px 0;
    font-size: 14px;
    font-weight: 500;
    animation: drop-fade 0.8s ease 0.3s backwards;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(10, 14, 39, 0.8), 0 0 10px rgba(0, 0, 139, 0.6);
}

/* Hide info caption on single post pages */
body.single .info-caption,
body.single-post .info-caption {
    display: none;
}

.info-caption::before {
    content: '👇';
    margin-right: 8px;
    font-size: 18px;
}

.info-caption strong {
    color: white;
    font-weight: 700;
}

/* ========================================
   LAYOUT & SIDEBAR
======================================== */
.site-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    animation: fade-in 0.8s ease;
}

.main-content-area {
    min-width: 0;
}

.sidebar {
    align-self: start;
}

/* ========================================
   SEARCH BAR - DARK NEON STYLE
======================================== */
.sidebar .search-form,
.blog-posts-widget {
    background: transparent;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: none;
}

.sidebar .search-form h3,
.blog-posts-widget h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: var(--accent-neon);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
    padding-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(10, 14, 39, 0.8), 0 0 10px rgba(0, 0, 139, 0.6);
}

.sidebar .search-form input[type="search"] {
    width: 100%;
    padding: 14px 18px 14px 45px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 25px;
    font-size: 14px;
    background: var(--secondary-dark) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%2300ffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></svg>') no-repeat 15px center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.sidebar .search-form input[type="search"]::placeholder {
    color: rgba(224, 224, 224, 0.5);
}

.sidebar .search-form input[type="search"]:focus {
    outline: none;
    border-color: var(--accent-neon);
    box-shadow: var(--glow-cyan);
}

.sidebar .search-form button[type="submit"] {
    display: none;
}

/* Search category dropdown */
.search-category-filter {
    width: 100%;
    padding: 10px 15px;
    margin-top: 10px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    background: var(--secondary-dark);
    color: var(--text-light);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-category-filter:focus {
    outline: none;
    border-color: var(--accent-neon);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.search-category-filter option {
    background: var(--secondary-dark);
    color: var(--text-light);
}

/* Search Results Page */
.search-header {
    text-align: center;
    padding: 40px 20px;
    background: var(--card-bg);
    border: 2px solid var(--accent-neon);
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: var(--glow-cyan);
    animation: fade-in 0.6s ease;
}

.search-title {
    font-size: 32px;
    color: var(--text-bright);
    margin: 0 0 10px 0;
    font-weight: 900;
}

.search-title span {
    color: var(--accent-neon);
    text-shadow: 0 0 15px var(--accent-neon);
}

.search-count {
    color: var(--accent-purple);
    font-size: 16px;
    margin: 0;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--card-bg);
    border: 2px solid var(--accent-purple);
    border-radius: 20px;
    animation: fade-in 0.6s ease;
}

.no-results-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.no-results h2 {
    font-size: 28px;
    color: var(--text-bright);
    margin: 0 0 15px 0;
}

.no-results p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 20px;
}

.no-results ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: inline-block;
    text-align: left;
}

.no-results li {
    padding: 8px 0;
    color: var(--text-light);
}

.no-results li::before {
    content: '• ';
    color: var(--accent-neon);
    font-weight: bold;
    margin-right: 8px;
}

.no-results a {
    color: var(--accent-neon);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.no-results a:hover {
    border-bottom-color: var(--accent-neon);
    text-shadow: 0 0 10px var(--accent-neon);
}

/* Blog posts widget */
.blog-posts-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-posts-widget li {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--card-bg);
    border-radius: 10px;
    border: 2px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.blog-posts-widget li:hover {
    border-color: var(--accent-neon);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.blog-posts-widget a {
    color: var(--text-bright);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-posts-widget a:hover {
    color: var(--accent-neon);
}
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.sidebar .search-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
}

/* ========================================
   BLOG POSTS WIDGET
======================================== */
.blog-post-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.blog-post-item:last-child {
    border-bottom: none;
}

.blog-post-item:hover {
    padding-left: 10px;
}

.blog-post-item a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-post-item a:hover {
    color: var(--accent-neon);
    text-shadow: 0 0 10px var(--accent-neon);
}

.blog-post-date {
    font-size: 11px;
    color: var(--accent-purple);
    display: block;
    margin-top: 5px;
}

/* Newsletter Widget */
.newsletter-widget {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    margin-left: 25px;
    margin-right: 25px;
    border: 2px solid var(--accent-purple);
    box-shadow: 0 10px 30px rgba(178, 75, 243, 0.3);
    animation: glow-pulse 3s ease-in-out infinite;
}

.newsletter-widget h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    color: var(--accent-neon);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(10, 14, 39, 0.8), 0 0 10px rgba(0, 0, 139, 0.6);
}

.newsletter-description {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.newsletter-description strong {
    color: var(--accent-purple);
    font-weight: 700;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    background: var(--secondary-dark);
    color: var(--text-light);
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-neon);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.newsletter-form input::placeholder {
    color: rgba(224, 224, 224, 0.5);
}

.newsletter-button {
    padding: 14px 25px;
    background: linear-gradient(135deg, #1dd1a1 0%, #10ac84 50%, #00d2d3 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(29, 209, 161, 0.5);
    text-shadow: 2px 2px 4px rgba(10, 14, 39, 0.8), 0 0 10px rgba(0, 0, 139, 0.6);
    position: relative;
    overflow: hidden;
}

.newsletter-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    pointer-events: none;
}

.newsletter-button:hover::after {
    left: 100%;
    transition: left 0.5s ease;
}

.newsletter-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(29, 209, 161, 0.7);
    filter: brightness(1.1);
}

.newsletter-privacy {
    font-size: 11px;
    color: rgba(224, 224, 224, 0.6);
    text-align: center;
    margin: 10px 0 0 0;
}

.widget-note {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.widget-note em {
    color: var(--accent-purple);
    font-style: italic;
}

.widget-note a {
    color: var(--accent-neon);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.widget-note a:hover {
    border-bottom-color: var(--accent-neon);
    text-shadow: 0 0 10px var(--accent-neon);
}

/* ========================================
   NEWSLETTER POPUP MODAL
======================================== */
.newsletter-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.newsletter-popup.show {
    display: flex;
    animation: fade-in 0.3s ease;
}

.newsletter-popup-content {
    background: var(--card-bg);
    border: 3px solid var(--accent-neon);
    border-radius: 25px;
    max-width: 500px;
    max-height: 90vh; /* Limit height on mobile */
    overflow-y: auto; /* Allow scrolling if content is too tall */
    width: 90%;
    padding: 40px 30px 30px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.4);
    animation: pop-in 0.5s ease;
}

.newsletter-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
}

/* Fixed close button - always visible on mobile */
.newsletter-close-fixed {
    position: fixed !important;
    top: 15px !important;
    right: 15px !important;
    background: rgba(255, 107, 157, 0.95) !important;
    border: 3px solid white !important;
    font-size: 40px;
    color: white !important;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 100000 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    line-height: 1;
}

.newsletter-close-fixed:hover {
    background: rgba(255, 107, 157, 1) !important;
    transform: scale(1.15) rotate(90deg);
}

/* Mobile-specific larger button */
@media (max-width: 600px) {
    .newsletter-close-fixed {
        width: 70px !important;
        height: 70px !important;
        font-size: 48px !important;
        top: 20px !important;
        right: 20px !important;
        border: 4px solid white !important;
    }
}

.newsletter-close:hover {
    background: rgba(255, 107, 157, 0.2);
    color: var(--accent-pink);
    transform: rotate(90deg);
}

.newsletter-popup-header {
    text-align: center;
    margin-bottom: 30px;
}

.popup-icon {
    font-size: 64px;
    animation: float 3s ease-in-out infinite;
    margin-bottom: 15px;
}

.newsletter-popup-header h2 {
    font-size: 28px;
    color: var(--text-bright);
    margin: 0 0 10px 0;
    font-weight: 900;
}

.popup-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

.popup-subtitle strong {
    color: var(--accent-purple);
    font-weight: 700;
}

.newsletter-popup-body {
    margin-bottom: 20px;
}

.newsletter-benefits {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 2;
    text-align: left;
}

.popup-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.popup-newsletter-form input {
    padding: 14px 18px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    background: var(--secondary-dark);
    color: var(--text-light);
    font-size: 15px;
    transition: all 0.3s ease;
}

.popup-newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-neon);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.popup-newsletter-form input::placeholder {
    color: rgba(224, 224, 224, 0.5);
}

.popup-submit-button {
    padding: 16px 30px;
    background: linear-gradient(135deg, #1dd1a1 0%, #10ac84 50%, #00d2d3 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(29, 209, 161, 0.5);
}

.popup-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(29, 209, 161, 0.7);
    filter: brightness(1.1);
}

.popup-privacy {
    font-size: 12px;
    color: rgba(224, 224, 224, 0.7);
    text-align: center;
    line-height: 1.5;
}

.popup-no-thanks {
    background: none;
    border: none;
    color: rgba(224, 224, 224, 0.5);
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
    width: 100%;
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.popup-no-thanks:hover {
    color: var(--text-light);
}

.popup-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 72px;
    margin-bottom: 20px;
    animation: pop-in 0.5s ease;
}

.popup-success h3 {
    font-size: 24px;
    color: var(--accent-neon);
    margin: 0 0 15px 0;
}

.popup-success p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.popup-success strong {
    color: var(--accent-purple);
}

/* ========================================
   SORT CONTROLS
======================================== */
.sort-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: transparent;
}

.sort-controls label {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sort-dropdown {
    padding: 10px 15px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    background: var(--secondary-dark);
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.sort-dropdown:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.sort-dropdown:focus {
    outline: none;
    border-color: var(--accent-neon);
    box-shadow: var(--glow-cyan);
}

.sort-dropdown option {
    background: var(--secondary-dark);
    color: var(--text-light);
    padding: 10px;
}

/* ========================================
   GRID LAYOUT - GLOWING CARDS
======================================== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

/* ========================================
   POST CARDS - DARK NEON STYLE
======================================== */
.post-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(0, 255, 255, 0.2);
    animation: slide-in-left 0.6s ease;
    cursor: pointer;
}

/* Make entire card clickable via the title link */
.post-card .post-card-title a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-3);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.post-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
    border-color: var(--accent-neon);
}

.post-card:hover::before {
    opacity: 0.1;
}

.post-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
    border-color: var(--accent-neon);
}

.post-card:hover::before {
    opacity: 0.1;
}

.post-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    cursor: pointer;
}

.post-card:hover .post-card-image img {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.new-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff4500 100%);
    color: black;
    padding: 8px 18px;
    font-weight: 900;
    border-radius: 25px;
    border: 2px solid black;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.6);
    animation: fire-glow 2s ease-in-out infinite;
    pointer-events: none;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.new-badge::before {
    content: '🔥 ';
    font-size: 14px;
}

/* Shine effect on hover */
.new-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    pointer-events: none;
}

.post-card:hover .new-badge::after {
    left: 100%;
    transition: left 0.5s ease;
}

@keyframes fire-glow {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.6), 0 0 20px rgba(255, 69, 0, 0.4);
    }
    50% { 
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.9), 0 0 30px rgba(255, 69, 0, 0.7);
        filter: brightness(1.2);
    }
}

.post-card-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.post-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: var(--text-bright);
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(10, 14, 39, 0.8), 0 0 10px rgba(0, 0, 139, 0.6);
}

.post-card-title a {
    color: var(--text-bright);
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-card-title a:hover {
    color: var(--accent-neon);
    text-shadow: 0 0 10px var(--accent-neon);
}

.view-promo-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1dd1a1 0%, #10ac84 50%, #00d2d3 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 1px #5eead4, 0 4px 15px rgba(29, 209, 161, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 20;
    text-shadow: 2px 2px 4px rgba(10, 14, 39, 0.8), 0 0 10px rgba(0, 0, 139, 0.6);
}

.view-promo-button::before {
    content: '🏷️';
    font-size: 16px;
}

/* Shine effect */
.view-promo-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    pointer-events: none;
}

.view-promo-button:hover::after {
    left: 100%;
    transition: left 0.5s ease;
}

.view-promo-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 0 1px #2dd4bf, 0 8px 25px rgba(29, 209, 161, 0.6);
    filter: brightness(1.1);
}

/* ========================================
   SINGLE POST - GREEN DARK THEME WITH GRID
======================================== */
body.single-post {
    background: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(135deg, #0a3d2c 0%, #1a1f3a 100%);
    background-size: 50px 50px, 50px 50px, 100% 100%;
    background-attachment: fixed;
}

/* Electric blue gradient hr lines */
.single-post-right-content hr {
    border: none;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #00d4ff, #0099ff, #00d4ff, #00ffff);
    border-radius: 2px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 255, 255, 0.4);
}

/* Override grid layout for single posts - no sidebar */
body.single-post .site-content-wrapper,
body.single .site-content-wrapper {
    display: block;
    max-width: 1200px;
    padding: 20px;
}

.breadcrumbs {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    font-size: 13px;
    color: var(--accent-neon);
}

.breadcrumbs a {
    color: var(--accent-neon);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumbs a:hover {
    text-shadow: 0 0 10px var(--accent-neon);
}

.single-post-two-column {
    max-width: 900px;
    margin: 20px auto 50px;
    padding: 0;
    display: flex;
    flex-direction: row;
    background: var(--card-bg);
    border: 2px solid var(--accent-neon);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8), var(--glow-cyan);
    animation: fade-in 0.8s ease;
    box-sizing: border-box;
}

.single-post-left {
    flex: 0 0 45%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    background: var(--secondary-dark);
    box-sizing: border-box;
}

.single-post-left img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: zoom-in 0.8s ease;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    cursor: pointer;
}

.single-post-left img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(0, 255, 255, 0.2);
}

@keyframes zoom-in {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.single-post-right {
    flex: 1;
    background: var(--card-bg);
    padding: 40px;
    border-left: 2px solid var(--accent-neon);
    overflow-y: auto;
    box-sizing: border-box;
}

.single-post-right-content h2 {
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 20px 0;
    color: var(--accent-neon);
    letter-spacing: 1px;
}

.single-post-right-content h2 a {
    color: var(--accent-neon);
}

.single-post-right-content h2 a.store-link {
    text-decoration: underline !important;
    color: #0f52ba !important;
    transition: color 0.3s ease;
}

.single-post-right-content h2 a.store-link:hover {
    color: #00ffff !important;
    text-shadow: 0 0 15px #00ffff;
}

.single-post-right-content h2 a:hover {
    text-shadow: 0 0 15px var(--accent-neon);
}

.single-post-right-content h1 {
    font-size: 32px;
    color: var(--text-bright);
    margin: 0 0 15px 0;
    font-weight: 900;
    line-height: 1.2;
}

.single-post-meta {
    font-size: 14px;
    color: var(--accent-purple);
    margin: 0 0 25px 0;
    font-weight: 600;
}

/* Hashtag styling */
.post-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.hashtag {
    background: rgba(102, 126, 234, 0.2);
    color: var(--accent-neon);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.hashtag::before {
    content: '#';
    margin-right: 2px;
    color: var(--accent-purple);
}

.hashtag:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: var(--accent-neon);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

.single-post-right-content > p {
    margin: 10px 0;
    color: white;
}

/* Description text and links should be white */
.single-post-right-content,
.single-post-right-content p,
.single-post-right-content span,
.single-post-right-content li,
.single-post-right-content h1,
.single-post-right-content h2,
.single-post-right-content h3,
.single-post-right-content h4,
.single-post-right-content h5,
.single-post-right-content h6 {
    color: white !important;
}

.single-post-right-content a:not(.product-link-btn):not(.promo-code-box):not(.deal-expired-button):not(.store-link):not(h4 a) {
    color: #0f52ba !important;
    text-decoration: underline;
}

.single-post-right-content a:not(.product-link-btn):not(.promo-code-box):not(.deal-expired-button):not(.store-link):not(h4 a):hover {
    color: var(--accent-neon) !important;
}

/* Product Button Wrapper - ensures button doesn't get link styling */
.product-button-wrapper {
    margin: 15px 0;
    display: block;
}

/* Store links (h2) - no underline */
.single-post-right-content h2 a {
    color: var(--accent-neon) !important;
    text-decoration: none !important;
    border-bottom: none !important;
    font-weight: 700;
    transition: all 0.3s ease;
}

.single-post-right-content h2 a:hover {
    text-shadow: 0 0 15px var(--accent-neon);
}

/* Link to Product Page button - purple gradient, NO underline */
.product-link-btn,
a.product-link-btn,
.product-button-wrapper a,
.product-button-wrapper .product-link-btn {
    display: inline-block !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 15px 40px !important;
    border-radius: 30px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 0 0 1px #a78bfa, 0 6px 20px rgba(102, 126, 234, 0.5) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Chain link emoji before text */
.product-link-btn::before,
a.product-link-btn::before,
.product-button-wrapper a::before {
    content: '🔗 ';
}

/* Shine effect */
.product-link-btn::after,
a.product-link-btn::after,
.product-button-wrapper a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    pointer-events: none;
}

.product-link-btn:hover::after,
a.product-link-btn:hover::after,
.product-button-wrapper a:hover::after {
    left: 100%;
    transition: left 0.5s ease;
}

.product-link-btn:hover,
a.product-link-btn:hover,
.product-button-wrapper a:hover,
.product-button-wrapper .product-link-btn:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 0 0 1px #c084fc, 0 10px 30px rgba(102, 126, 234, 0.8) !important;
    filter: brightness(1.1) !important;
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Regular links in description - GRADIENT PILL BUTTONS */
.single-post-right-content h4 a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px 24px !important;
    margin: 10px 4px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    color: white !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease, transform 0.2s ease !important;
    border: none !important;
    border-bottom: none !important;
    font-family: 'Ubuntu Mono', monospace !important;
    font-weight: bold !important;
    text-shadow: 2px 2px 4px rgba(10, 14, 39, 0.8), 0 0 10px rgba(0, 0, 139, 0.6) !important;
}

/* H4 container spacing */
.single-post-right-content h4 {
    margin: 5px 0 !important;
    padding: 0 !important;
    display: block !important;
    font-family: 'Ubuntu Mono', monospace !important;
}

/* Remove empty p tag spacing */
.single-post-right-content p:empty,
.single-post-right-content p:has(> br:only-child),
.single-post-right-content > p:last-of-type:not(:has(a)):not(:has(strong)) {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Different colors for each h4 link - using nth-child */
.single-post-right-content h4:nth-child(6n+1) a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 0 0 1px #a78bfa, 0 4px 15px rgba(102, 126, 234, 0.4) !important;
}
.single-post-right-content h4:nth-child(6n+1) a:hover {
    box-shadow: 0 0 0 1px #a78bfa, 0 0 25px rgba(102, 126, 234, 0.8), 0 8px 30px rgba(118, 75, 162, 0.8) !important;
}

.single-post-right-content h4:nth-child(6n+2) a {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
    box-shadow: 0 0 0 1px #f9a8d4, 0 4px 15px rgba(240, 147, 251, 0.4) !important;
}
.single-post-right-content h4:nth-child(6n+2) a:hover {
    box-shadow: 0 0 0 1px #f9a8d4, 0 0 25px rgba(240, 147, 251, 0.8), 0 8px 30px rgba(245, 87, 108, 0.8) !important;
}

.single-post-right-content h4:nth-child(6n+3) a {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
    box-shadow: 0 0 0 1px #67e8f9, 0 4px 15px rgba(79, 172, 254, 0.4) !important;
}
.single-post-right-content h4:nth-child(6n+3) a:hover {
    box-shadow: 0 0 0 1px #67e8f9, 0 0 25px rgba(79, 172, 254, 0.8), 0 8px 30px rgba(0, 242, 254, 0.8) !important;
}

.single-post-right-content h4:nth-child(6n+4) a {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%) !important;
    box-shadow: 0 0 0 1px #fda4af, 0 4px 15px rgba(250, 112, 154, 0.4) !important;
}
.single-post-right-content h4:nth-child(6n+4) a:hover {
    box-shadow: 0 0 0 1px #fda4af, 0 0 25px rgba(250, 112, 154, 0.8), 0 8px 30px rgba(254, 225, 64, 0.8) !important;
}

.single-post-right-content h4:nth-child(6n+5) a {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%) !important;
    box-shadow: 0 0 0 1px #5eead4, 0 4px 15px rgba(56, 239, 125, 0.4) !important;
}
.single-post-right-content h4:nth-child(6n+5) a:hover {
    box-shadow: 0 0 0 1px #5eead4, 0 0 25px rgba(17, 153, 142, 0.8), 0 8px 30px rgba(56, 239, 125, 0.8) !important;
}

.single-post-right-content h4:nth-child(6n+6) a,
.single-post-right-content h4:nth-child(6n) a {
    background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%) !important;
    box-shadow: 0 0 0 1px #fb923c, 0 4px 15px rgba(255, 106, 0, 0.4) !important;
}
.single-post-right-content h4:nth-child(6n+6) a:hover,
.single-post-right-content h4:nth-child(6n) a:hover {
    box-shadow: 0 0 0 1px #fb923c, 0 0 25px rgba(238, 9, 121, 0.8), 0 8px 30px rgba(255, 106, 0, 0.8) !important;
}

/* Shine effect for h4 links */
.single-post-right-content h4 a::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent) !important;
    pointer-events: none !important;
}

.single-post-right-content h4 a:hover::after {
    left: 100% !important;
    transition: left 0.5s ease !important;
}

.single-post-right-content h4 a:hover {
    transform: translateY(-3px) scale(1.05) !important;
    filter: brightness(1.2) !important;
}
}

/* Promo Code Box */
.promo-code-container,
.single-post-right-content .promo-code-container,
.copy-the-code-shortcode-container {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: center !important;
    box-shadow: none !important;
    animation: none !important;
}

.promo-code-container *:not(.promo-code-box):not(.copy-the-code-shortcode) {
    background: transparent !important;
    border: none !important;
}

.promo-code-box,
.copy-the-code-shortcode {
    background: var(--gradient-3) !important;
    color: white !important;
    padding: 12px 30px !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    border-radius: 10px !important;
    border: none !important;
    font-family: 'Courier New', monospace !important;
    display: inline-block !important;
    box-shadow: 0 0 0 1px #67e8f9, 0 4px 15px rgba(0, 242, 254, 0.5) !important;
    text-shadow: 2px 2px 4px rgba(10, 14, 39, 0.8), 0 0 10px rgba(0, 0, 139, 0.6) !important;
    transition: all 0.3s ease !important;
    animation: glow-pulse 3s ease-in-out infinite !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Shine effect - only on hover */
.promo-code-box::before,
.copy-the-code-shortcode::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    pointer-events: none;
}

.promo-code-box:hover::before,
.copy-the-code-shortcode:hover::before {
    left: 100%;
    transition: left 0.5s ease;
}

.promo-code-box:hover,
.copy-the-code-shortcode:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 0 0 1px #22d3ee, 0 8px 25px rgba(0, 242, 254, 0.8) !important;
}

/* Deal Expired Section - reduced spacing */
.deal-expired-section {
    margin-top: 20px;
}

/* Deal Expired Button - Red to Blue gradient (more reddish) with pill border */
.deal-expired-button {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 25%, #f87171 50%, #7c3aed 80%, #4f46e5 100%);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 0 0 1px #ff4444,
        0 6px 20px rgba(220, 38, 38, 0.5);
    position: relative;
    overflow: hidden;
    text-shadow: 2px 2px 4px rgba(10, 14, 39, 0.8), 0 0 10px rgba(0, 0, 139, 0.6);
}

/* Shine effect */
.deal-expired-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    pointer-events: none;
}

.deal-expired-button:hover::after {
    left: 100%;
    transition: left 0.5s ease;
}

.deal-expired-button::before {
    content: '🚨 ';
}

.deal-expired-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 0 1px #8b5cf6,
        0 10px 30px rgba(220, 38, 38, 0.8);
    filter: brightness(1.1);
}

/* Undo Button - Green gradient */
.deal-expired-button.reported {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    background-size: 100% 100%;
    animation: none;
    box-shadow: 0 6px 20px rgba(56, 239, 125, 0.5);
}

.deal-expired-button.reported:hover {
    box-shadow: 0 10px 30px rgba(56, 239, 125, 0.8);
    filter: brightness(1.1);
}

/* ========================================
   FOOTER - DARK
======================================== */
.site-footer {
    background: var(--secondary-dark);
    color: var(--text-light);
    text-align: center;
    padding: 50px 20px;
    margin-top: 60px;
    border-top: 3px solid var(--accent-neon);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.8);
}

/* ========================================
   ABOUT PAGE
======================================== */
.about-page-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-article {
    background: var(--card-bg);
    border: 2px solid var(--accent-neon);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8), var(--glow-cyan);
    animation: fade-in 0.8s ease;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--accent-purple);
    animation: slide-in-left 0.6s ease;
}

.about-title {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-3);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
    margin: 0 0 15px 0;
}

.about-tagline {
    font-size: 18px;
    color: var(--accent-purple);
    font-style: italic;
    font-weight: 600;
}

.about-section {
    margin-bottom: 45px;
    padding: 30px;
    background: rgba(26, 31, 58, 0.5);
    border-radius: 15px;
    border-left: 4px solid var(--accent-neon);
    transition: all 0.3s ease;
    position: relative;
    animation: fade-in 1s ease;
}

.about-section:hover {
    background: rgba(26, 31, 58, 0.8);
    border-left-color: var(--accent-purple);
    transform: translateX(5px);
}

.about-section h2 {
    font-size: 32px;
    color: var(--accent-neon);
    margin: 0 0 20px 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-section strong {
    color: var(--accent-neon);
    font-weight: 700;
}

.section-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.community-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.community-list li {
    padding: 12px 20px 12px 50px;
    margin: 10px 0;
    background: var(--secondary-dark);
    border-radius: 10px;
    border-left: 3px solid var(--accent-purple);
    position: relative;
    transition: all 0.3s ease;
}

.community-list li:hover {
    background: rgba(102, 126, 234, 0.2);
    border-left-color: var(--accent-neon);
    transform: translateX(5px);
}

.community-list li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    color: var(--accent-neon);
    font-weight: bold;
    font-size: 18px;
}

.signature {
    font-style: italic;
    color: var(--accent-purple);
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
}

.signature-name {
    text-align: center;
    color: var(--accent-neon);
    font-weight: 700;
    font-size: 20px;
    margin-top: 10px;
}

.origin-story {
    animation-delay: 0.1s;
}

.success-story {
    animation-delay: 0.2s;
}

.mission {
    animation-delay: 0.3s;
}

.community {
    animation-delay: 0.4s;
}

.closing {
    animation-delay: 0.5s;
    border: 2px solid var(--accent-purple);
    background: rgba(178, 75, 243, 0.1);
}

/* ========================================
   BLOG ARCHIVE PAGE
======================================== */
.blog-archive-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: var(--card-bg);
    border: 2px solid var(--accent-neon);
    border-radius: 20px;
    box-shadow: var(--glow-cyan);
    animation: pop-in 0.6s ease;
}

.blog-archive-title {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-3);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.blog-icon {
    font-size: 52px;
    animation: float 3s ease-in-out infinite;
}

.blog-archive-description {
    font-size: 18px;
    color: var(--accent-purple);
    font-style: italic;
    margin: 0;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-post-card {
    background: var(--card-bg);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    animation: fade-in 0.6s ease;
}

.blog-post-card:hover {
    border-color: var(--accent-neon);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

.blog-post-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: var(--secondary-dark);
}

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

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.1);
}

.blog-post-content {
    padding: 25px;
}

.blog-post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--accent-purple);
    font-weight: 600;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-date svg {
    color: var(--accent-neon);
}

.blog-post-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.blog-post-title a {
    color: var(--text-bright);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-post-title a:hover {
    color: var(--accent-neon);
    text-shadow: 0 0 10px var(--accent-neon);
}

.blog-post-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-3);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

.blog-read-more:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
}

.no-posts-message {
    text-align: center;
    padding: 80px 20px;
    background: var(--card-bg);
    border: 2px solid var(--accent-purple);
    border-radius: 20px;
    grid-column: 1 / -1;
}

.no-posts-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.no-posts-message p {
    color: var(--text-light);
    font-size: 18px;
}


.footer-message {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 25px;
    background: var(--gradient-3);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.footer-social-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.footer-social-icon:hover {
    transform: translateY(-8px) rotate(360deg);
    box-shadow: var(--glow-purple);
}

.footer-links a {
    color: var(--accent-neon);
    text-decoration: none;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    text-shadow: 0 0 10px var(--accent-neon);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1200px) {
    .site-content-wrapper {
        grid-template-columns: 1fr;
    }
    .sidebar { position: static; }
    
    .site-branding {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-icons-wrapper {
        order: -1;
    }
    
    .main-navigation-inner {
        grid-template-columns: 1fr;
    }
    
    .nav-spacer {
        display: none;
    }
}

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

@media (max-width: 600px) {
    .posts-grid { grid-template-columns: 1fr; }
    .site-title { font-size: 36px; }

    /* Stack on mobile */
    .single-post-two-column {
        flex-direction: column;
    }

    .single-post-left {
        padding: 30px 20px 15px 20px;
    }

    .single-post-right {
        padding: 30px 20px;
        border-left: none;
        border-top: 2px solid var(--accent-neon);
    }
    
    /* Mobile newsletter popup adjustments */
    .newsletter-popup-content {
        max-height: 85vh;
        padding: 35px 20px 20px;
        width: 95%;
    }
    
    .newsletter-popup-header h2 {
        font-size: 22px;
    }
    
    .popup-subtitle {
        font-size: 14px;
    }
    
    .popup-icon {
        font-size: 48px;
    }
    
    .newsletter-benefits {
        padding: 15px;
        font-size: 14px;
    }
    
    .popup-privacy {
        font-size: 11px;
    }
    
    /* Make regular close button less prominent on mobile (fixed one is more visible) */
    .newsletter-close {
        opacity: 0.7;
        font-size: 28px;
    }
}
/* Expired Deal Overlay Styles */
.expired-post-thumbnail {
    position: relative;
}

.expired-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    background: transparent;
    color: #ff0000;
    font-size: 80px;
    font-weight: 900;
    padding: 20px 60px;
    text-transform: uppercase;
    letter-spacing: 12px;
    border: none;
    -webkit-text-stroke: 3px #000000;
    text-shadow: 
        0 0 10px #ff0000,
        0 0 20px #ff0000,
        0 0 30px #ff0000,
        0 0 40px #ff0000,
        0 0 50px #ff0000,
        0 0 60px #ff0000,
        0 0 70px #ff0000;
    z-index: 10;
    pointer-events: none;
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px #ff0000,
            0 0 20px #ff0000,
            0 0 30px #ff0000,
            0 0 40px #ff0000,
            0 0 50px #ff0000;
    }
    to {
        text-shadow: 
            0 0 20px #ff0000,
            0 0 30px #ff3333,
            0 0 40px #ff3333,
            0 0 50px #ff0000,
            0 0 60px #ff0000,
            0 0 70px #ff0000,
            0 0 80px #ff0000;
    }
}

/* Smaller expired overlay for post cards */
.post-card .expired-overlay {
    font-size: 50px;
    padding: 10px 30px;
    letter-spacing: 8px;
    -webkit-text-stroke: 2px #000000;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px #ff0000,
            0 0 20px #ff0000,
            0 0 30px #ff0000,
            0 0 40px #ff0000,
            0 0 50px #ff0000;
    }
    to {
        text-shadow: 
            0 0 20px #ff0000,
            0 0 30px #ff3333,
            0 0 40px #ff3333,
            0 0 50px #ff0000,
            0 0 60px #ff0000,
            0 0 70px #ff0000,
            0 0 80px #ff0000;
    }
}

/* Smaller expired overlay for post cards */
.post-card .expired-overlay::before,
.post-card .expired-overlay::after {
    font-size: 50px;
    letter-spacing: 12px;
    -webkit-text-stroke: 2px #000000;
}

.post-card .expired-overlay::before {
    top: 25%;
}

.post-card .expired-overlay::after {
    top: 65%;
}

.expired-notice {
    text-align: center;
    padding: 30px;
    background: #ffebee;
    border: 3px solid #d63638;
    border-radius: 8px;
    margin: 30px 0;
}

/* Expired tag in category/archive view */
.post.expired-deal {
    position: relative;
}

.post.expired-deal::before {
    content: "EXPIRED";
    position: absolute;
    top: 20px;
    right: -10px;
    background: #d63638;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 30px;
    transform: rotate(15deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 100;
    letter-spacing: 3px;
}

.post.expired-deal .post-thumbnail {
    opacity: 0.6;
    filter: grayscale(50%);
}


/* ========================================
   PAGE CARD STYLES (About, Contact, Privacy)
======================================== */
.page-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: fade-in 0.6s ease;
}

.page-card-header {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--card-bg) 100%);
    padding: 40px 30px;
    text-align: center;
    border-bottom: 2px solid rgba(0, 255, 255, 0.2);
    position: relative;
}

.page-card-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-3);
    animation: gradient-shift 5s ease infinite;
    background-size: 200% 100%;
}

.page-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.page-card-header h1 {
    margin: 0 0 10px 0;
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-3);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
}

.page-subtitle {
    color: var(--accent-neon);
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

.page-card-body {
    padding: 30px;
}

/* Info Blocks */
.info-block {
    display: flex;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-block:hover {
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateX(5px);
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block-icon {
    font-size: 36px;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.info-block-content {
    flex: 1;
}

.info-block-content h2 {
    margin: 0 0 15px 0;
    font-size: 22px;
    color: var(--accent-neon);
    font-weight: 700;
}

.info-block-content h3 {
    margin: 20px 0 10px 0;
    font-size: 16px;
    color: var(--accent-purple);
    font-weight: 600;
}

.info-block-content p {
    margin: 0 0 12px 0;
    line-height: 1.7;
    color: #ffffff;
}

.info-block-content p:last-child {
    margin-bottom: 0;
}

.info-block-content a {
    color: var(--accent-neon);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-block-content a:hover {
    text-shadow: 0 0 10px var(--accent-neon);
}

/* Highlight Block */
.highlight-block {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(178, 75, 243, 0.1) 100%);
    border-color: rgba(0, 255, 255, 0.3);
}

/* Feature List */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin: 15px 0;
}

.feature-list.compact {
    grid-template-columns: 1fr;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 14px;
    color: #ffffff;
}

.feature-item span {
    font-size: 18px;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--gradient-3);
    color: #000;
    margin-top: 15px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
}

.discord-cta {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
}

.discord-cta:hover {
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.6);
}

.submit-btn {
    width: 100%;
    justify-content: center;
}

/* Signature */
.signature-text {
    font-style: italic;
    color: var(--accent-purple);
    margin-top: 15px;
}

/* Success/Error Messages */
.success-message {
    text-align: center;
    padding: 40px;
    background: rgba(0, 255, 100, 0.1);
    border: 2px solid rgba(0, 255, 100, 0.3);
    border-radius: 15px;
    margin-bottom: 20px;
}

.success-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 15px;
}

.success-message h2 {
    color: #00ff64;
    margin: 0 0 10px 0;
}

.success-message p {
    color: #ffffff;
    margin: 0;
}

.error-message {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff6b6b;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Contact Form */
.contact-form {
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
}

.form-group .required {
    color: var(--accent-pink);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    background: var(--secondary-dark);
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-neon);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(224, 224, 224, 0.4);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Social Links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 25px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--accent-neon);
    transform: translateY(-2px);
}

.social-link-icon {
    font-size: 18px;
}

/* Page Card Responsive */
@media (max-width: 768px) {
    .page-card-header {
        padding: 30px 20px;
    }
    
    .page-icon {
        font-size: 48px;
    }
    
    .page-card-header h1 {
        font-size: 28px;
    }
    
    .page-card-body {
        padding: 20px;
    }
    
    .info-block {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .info-block-icon {
        width: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-link {
        justify-content: center;
    }
}




