/*
Theme Name: Eyro3DCG Theme
Description: Custom theme for Eyro3DCG - 3D anime game artist portfolio with vibrant, creative design and Helvetica typography
Author: Custom Development
Version: 2.0.0
Text Domain: eyro3dcg
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Reset and Base Styles */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Smooth transitions for better UX */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

body {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 50%, #16213e 100%);
    overflow-x: hidden;
    position: relative;
    /* Ensure showcase images don't extend past footer */
    height: auto;
    max-height: none;
    /* Flexbox layout for proper footer positioning */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

/* Ensure main content takes up available space */
.site-main {
    margin: 0;
    padding: 0;
    flex: 1; /* Allow main content to expand and fill available space */
}

/* Ensure footer stays at bottom */
.site-footer {
    flex-shrink: 0;
}

.hero-section {
    margin: 0;
    padding: 120px 0 80px;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    animation: background-shift 20s ease-in-out infinite;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
    background: linear-gradient(45deg, #ff6b35, #ff8e53, #ffb366, #ff6b35);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
    animation: gradient-shift 4s ease-in-out infinite;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8e53, #ffb366);
    animation: line-expand 2s ease-out 0.5s forwards;
}

h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

h3 {
    font-size: 2rem;
    color: #ff8e53;
}

p {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 400;
}

/* Enhanced Typography with Helvetica */
strong, b {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
}

em, i {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-style: italic;
    font-weight: 400;
}

u {
    text-decoration: underline;
    text-decoration-color: #ff6b35;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

/* Special text styling */
.hero-tagline {
    font-family: 'Helvetica Light', 'Helvetica', Arial, sans-serif;
    font-weight: 300;
}

.hero-cta-button {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
}

/* Policy page typography */
.policy-content {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
}

.policy-content h2 {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    color: #ff6b35;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    padding-bottom: 0.5rem;
}

.policy-content h3 {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    color: #ff8e53;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content strong {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    color: #ff8e53;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-content a {
    color: #ff6b35;
    text-decoration: underline;
    text-decoration-color: #ff6b35;
    text-decoration-thickness: 1px;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: #ff8e53;
    text-decoration-color: #ff8e53;
}

/* Archive and tier page typography */
.mega-archive-content {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
}

.mega-link-box h3 {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.mega-link-box p {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Enhanced navigation typography */
.site-navigation {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
}

.site-navigation a {
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Footer typography */
.site-footer {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
}

.site-footer a {
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Button typography */
.btn, .button {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Enhanced text selection */
::selection {
    background-color: rgba(255, 107, 53, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background-color: rgba(255, 107, 53, 0.3);
    color: #ffffff;
}

/* Focus states for accessibility */
a:focus, button:focus, input:focus, textarea:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
    border-radius: 3px;
}

/* Skip link removed per design */
.skip-link { display: none !important; }

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-content h1 {
        -webkit-text-fill-color: #ff6b35;
        text-shadow: none;
    }
    
    .policy-content h2 {
        border-bottom-color: #ff6b35;
    }
}

/* Improved link hover effects */
a:hover {
    color: #ff8e53;
    transition: color 0.3s ease;
}

/* Enhanced form typography */
input, textarea, select {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center; /* Center all container content */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Enhanced text readability */
.text-content {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text-content h1, .text-content h2, .text-content h3 {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-content p {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.text-content strong {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    color: #ff8e53;
}

.text-content em {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-style: italic;
    font-weight: 400;
    color: #ffb366;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: 1.8rem;
    color: #ffb366;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 179, 102, 0.5);
    animation: fade-in-up 1s ease-out 0.3s both;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    line-height: 1.6;
    animation: fade-in-up 1s ease-out 0.6s both;
}

.hero-cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: fade-in-up 1s ease-out 0.9s both;
}

.hero-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-cta-button:hover::before {
    left: 100%;
}

.hero-cta-button:hover {
    background: linear-gradient(135deg, #ff8e53 0%, #ff6b35 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Header and Navigation */
.site-header {
    background: rgba(0, 0, 0, 0.9);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ff6b35;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* Increased to 70% opacity for darker overlay */
    z-index: -1;
}

/* Add smooth transitions for banner images */
.site-header,
.site-footer {
    transition: background-image 0.3s ease;
}

/* Debug: Add a fallback background color to see if images are loading */
.site-header {
    background-color: rgba(0, 0, 0, 0.9);
}

.site-footer {
    background-color: rgba(0, 0, 0, 0.95);
}

/* Ensure banner image covers properly on all devices */
@media (min-width: 769px) {
    .site-header,
    .site-footer {
        background-attachment: fixed;
    }
}

.site-branding {
    padding: 3.0rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.branding-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.profile-picture {
    flex-shrink: 0;
}

.profile-img {
    width: 96px; /* Increased from 80px by 20% */
    height: 96px; /* Increased from 80px by 20% */
    border-radius: 50%;
    border: 3px solid #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    object-fit: cover;
}

.profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
    border-color: #ff8e53;
}

.profile-img.placeholder {
    background: linear-gradient(45deg, #ff6b35, #ff8e53);
    padding: 10px;
    box-sizing: border-box;
}

.site-title {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b35, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.site-description {
    display: none;
}

/* Navigation Menu - Dynamic Color System */
.main-navigation {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 142, 83, 0.1));
    border-top: 2px solid rgba(255, 107, 53, 0.4);
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Add subtle animated border effect */
.main-navigation::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: border-glow 3s ease-in-out infinite;
}

@keyframes border-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Dynamic Navigation Colors for Different Pages */
.main-navigation.page-home {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 142, 83, 0.15));
    border-top-color: rgba(255, 107, 53, 0.5);
}

.main-navigation.page-about {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 142, 83, 0.15));
    border-top-color: rgba(255, 107, 53, 0.5);
}

.main-navigation.page-public-archive {
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.2), rgba(0, 200, 100, 0.15));
    border-top-color: rgba(0, 255, 127, 0.5);
}

.main-navigation.page-essential-hd {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 193, 7, 0.15));
    border-top-color: rgba(255, 215, 0, 0.5);
}

.main-navigation.page-premium-hd {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(147, 51, 234, 0.15));
    border-top-color: rgba(138, 43, 226, 0.5);
}

.main-navigation.page-ultra-hd {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.15));
    border-top-color: rgba(255, 193, 7, 0.5);
}

.main-navigation.page-vr-experience {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2), rgba(30, 144, 255, 0.15));
    border-top-color: rgba(0, 191, 255, 0.5);
}

/* Character Collector Page Navigation */
.main-navigation.page-character-collector {
    background: linear-gradient(135deg, rgba(31, 8, 54, 0.95), rgba(122, 31, 163, 0.95), rgba(255, 107, 53, 0.90));
    border-top-color: rgba(255, 107, 53, 0.65);
    color: #ffffff;
}

.main-navigation.page-character-collector .nav-menu a {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.main-navigation.page-character-collector .nav-menu a:hover {
    color: #ffd166;
    background: rgba(255, 107, 53, 0.15);
    border-bottom-color: #ffd166;
    text-shadow: 0 0 14px rgba(255, 209, 102, 0.7);
}

.main-navigation.page-character-collector .nav-menu a.current-menu-item,
.main-navigation.page-character-collector .nav-menu a.current_page_item {
    background: rgba(255, 107, 53, 0.2);
    border-bottom-color: #ff6b35;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    position: relative;
}

.nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: nav-line-expand 3s ease-out 1s forwards;
}

@keyframes nav-line-expand {
    to {
        width: 80%;
    }
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Active page styling */
.nav-menu a.current-menu-item,
.nav-menu a.current_page_item {
    background: rgba(255, 255, 255, 0.15);
    border-bottom-color: #ffffff;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    position: relative;
}

.nav-menu a.current-menu-item::after,
.nav-menu a.current_page_item::after {
    content: '●';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}



/* Main Content Spacing for Fixed Header */
.site-main {
    margin-top: 0; /* Remove top margin to eliminate gap */
    padding-top: 0; /* Remove top padding */
}

/* Responsive Design for Header */
@media (max-width: 768px) {
    .branding-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .profile-img {
        width: 72px; /* Increased from 60px by 20% */
        height: 72px; /* Increased from 60px by 20% */
    }
    
    .site-title {
        font-size: 1.8rem;
    }
    
    /* Adjust banner image for mobile */
    .site-header,
    .site-footer {
        background-attachment: scroll;
    }
    
    /* Mobile navigation adjustments */
    .main-navigation {
        backdrop-filter: blur(5px);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-menu a {
        padding: 0.75rem 1rem;
        text-align: center;
    }
    
    /* Adjust tier banner images for mobile */
    .tier-hero {
        background-attachment: scroll;
        padding: 80px 0 60px;
    }
    
    /* Adjust tier cards for mobile */
    .tier-banner {
        height: 80px;
    }
    
    .tier-card h3,
    .tier-card .tier-price,
    .tier-card .tier-description,
    .tier-card .tier-button {
        padding: 0 1.5rem;
    }
    
    /* Adjust hero character showcase for mobile */
    .character-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .character-image {
        height: 80px;
    }
    

    
    /* Adjust subtle background images for mobile */
    body::before {
        background-size: 
            120px auto,
            100px auto,
            150px auto;
        opacity: 0.05; /* Slightly more subtle on mobile */
    }
}

@media (max-width: 480px) {
    .site-branding {
        padding: 2rem 0;
    }
    
    .profile-img {
        width: 60px; /* Increased from 50px by 20% */
        height: 60px; /* Increased from 50px by 20% */
    }
    
    .site-title {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero-section {
    padding: 160px 0 80px; /* Increased top padding to account for fixed header */
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

/* Hero Character Showcase */
.hero-character-showcase {
    margin-top: 3rem;
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.character-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.character-item:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.character-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.character-item:hover .character-image {
    transform: scale(1.1);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    /* Add border styling to match other pages */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.5rem;
    color: #ffb366;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(255, 179, 102, 0.5);
}

/* Homepage Section Divider - Full Width Inward Pulse */
.section-divider {
    padding: 30px 0;
    position: relative;
    background: transparent;
}

.divider-line {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #ff6b35, #ff8e53, #ffb366, #ff8e53, #ff6b35);
    position: relative;
    animation: inward-pulse 3s ease-in-out infinite;
    box-shadow: 
        0 0 15px rgba(255, 107, 53, 0.6),
        0 0 30px rgba(255, 107, 53, 0.4),
        0 0 45px rgba(255, 107, 53, 0.2);
}

.divider-line::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #ff6b35, #ff8e53, #ffb366, #ff8e53, #ff6b35);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.4;
    filter: blur(3px);
    animation: inward-pulse 3s ease-in-out infinite;
}

/* About Page Section Divider - Full Width Elegant Design */
.about-page .section-divider {
    padding: 40px 0;
    background: transparent;
    text-align: center;
}

.about-page .divider-line {
    display: inline-block;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #ff6b35, #ff8e53, #ffb366, #ff8e53, #ff6b35, transparent);
    position: relative;
    margin: 0;
}

/* Full width divider - no dots needed */

/* Tier Overview Section */
.tier-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.tier-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 0; /* Remove padding to accommodate banner image */
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Tier Banner Image Styling */
.tier-banner {
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.tier-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tier-card:hover .tier-banner-image {
    transform: scale(1.05);
}



/* Tier Card Content */
.tier-card .tier-hero-content,
.tier-card h3,
.tier-card .tier-price,
.tier-card .tier-description,
.tier-card .tier-button {
    padding: 0 2rem;
}

.tier-card h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.tier-card .tier-price {
    margin-bottom: 1rem;
}

.tier-card .tier-description {
    margin-bottom: 1.5rem;
}

.tier-card .tier-button {
    margin-bottom: 2rem;
    display: inline-block;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.tier-card:hover::before {
    left: 100%;
}

.tier-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.tier-name {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffb366;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 179, 102, 0.5);
}

.tier-description {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tier-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, #ff6b35, #ff8e53);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.tier-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* Hero CTA Button */
.hero-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #ff6b35, #ff8e53);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #ff8e53, #ff6b35);
    color: #ffffff;
    text-decoration: none;
}

/* Responsive adjustments for tier grid */
@media (max-width: 1200px) {
    .tier-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .tier-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .tier-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Further adjust subtle background images for small screens */
    body::before {
        background-size: 
            80px auto,
            70px auto,
            100px auto;
        opacity: 0.03; /* Even more subtle on small screens */
    }
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.95);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 2px solid #ff6b35;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* Increased to 70% opacity for darker overlay */
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #ffb366;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    color: #888;
    position: relative;
    z-index: 1;
}

/* Latest Content Preview */
.latest-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
}

.latest-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.preview-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.preview-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.preview-image {
    position: relative;
    overflow: hidden;
}

.preview-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preview-item:hover .preview-image img {
    transform: scale(1.05);
}

.preview-content {
    padding: 1.5rem;
}

.preview-content h3 {
    margin-bottom: 0.5rem;
}

.preview-content h3 a {
    color: #ff8e53;
    text-decoration: none;
    transition: color 0.3s ease;
}

.preview-content h3 a:hover {
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.preview-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-date {
    color: #888;
}

.tier-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tier-badge.public {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

/* Footer Lists */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

/* About Page Styles - Enhanced Background */
.about-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    animation: background-shift 20s ease-in-out infinite;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="polka-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,107,53,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23polka-dots)"/></svg>');
    opacity: 0.6;
    animation: pattern-float 40s linear infinite;
}

.about-subtitle {
    font-size: 1.8rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Simple about-hero content without borders or animations */
.about-hero .about-content {
    background: transparent;
    border: none;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero .about-content h1 {
    color: #ffffff;
    text-shadow: none;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    animation: none;
}

.about-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding: 1.5rem !important;
        text-align: center !important;
        border: 2px solid rgba(255, 107, 53, 0.3) !important;
        border-radius: 15px !important;
        background: rgba(255, 255, 255, 0.02) !important;
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.1) !important;
    }
    
    .creation-list li {
        max-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
}

.about-text {
    text-align: center !important; /* Center all text content - force override */
    border: 2px solid rgba(255, 107, 53, 0.3) !important; /* Add border around text body - force override */
    border-radius: 15px !important; /* Rounded corners - force override */
    padding: 2rem !important; /* Add padding inside border - force override */
    background: rgba(255, 255, 255, 0.02) !important; /* Subtle background - force override */
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.1) !important; /* Add glow effect */
}

/* Force override any conflicting styles */
.about-page .about-content-section .about-grid .about-text {
    text-align: center !important;
    border: 2px solid rgba(255, 107, 53, 0.3) !important;
    border-radius: 15px !important;
    padding: 2rem !important;
    background: rgba(255, 255, 255, 0.02) !important;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.1) !important;
}

/* Force button centering */
.about-page .about-content-section .about-grid .about-text .cta-buttons {
    justify-content: center !important;
    text-align: center !important;
}





.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text h3 {
    margin: 2rem 0 1rem;
    color: #ff8e53;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.creation-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.creation-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #e0e0e0;
    text-align: left; /* Keep list items left-aligned for readability */
    margin: 0 auto; /* Center the list items container */
    max-width: 80%; /* Limit width for better readability */
}

.creation-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.cta-buttons {
    display: flex !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
    flex-wrap: wrap !important;
    justify-content: center !important; /* Center the buttons - force override */
    text-align: center !important; /* Additional centering */
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: linear-gradient(45deg, #ff6b35, #ff8e53);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.cta-button.secondary {
    background: transparent;
    color: #ff6b35;
    border-color: #ff6b35;
}

.cta-button.secondary:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
}

.about-sidebar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.artist-stats {
    margin-bottom: 2rem;
}

.artist-stats h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.stat-item {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b35;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.stat-label {
    display: block;
    color: #e0e0e0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tools-used h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.tools-used ul {
    list-style: none;
    padding: 0;
}

.tools-used li {
    padding: 0.5rem 0;
    text-align: center;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.tools-used li:last-child {
    border-bottom: none;
}

/* Archive Page Styles */
.tier-hero {
    padding: 160px 0 80px; /* Increased top padding to account for fixed header */
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0; /* Remove top margin for tier pages */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.tier-hero.public-tier {
    background: radial-gradient(circle at center, rgba(76, 175, 80, 0.15) 0%, transparent 70%);
}

.tier-hero.essential-tier {
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
}

.tier-hero.premium-tier {
    background: radial-gradient(circle at center, rgba(156, 39, 176, 0.15) 0%, transparent 70%);
}

.tier-hero.ultra-tier {
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
}

.tier-hero.vr-tier {
    background: radial-gradient(circle at center, rgba(233, 30, 99, 0.15) 0%, transparent 70%);
}

.tier-subtitle {
    font-size: 1.5rem;
    color: #ffb366;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 179, 102, 0.5);
}

.tier-info {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.tier-price-badge {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 1rem 2rem;
    text-align: center;
}

.tier-price-badge .price {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b35;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.tier-price-badge .period {
    display: block;
    color: #ffb366;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-benefits {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tier-benefits .benefit {
    background: rgba(255, 107, 53, 0.1);
    color: #ff8e53;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
}



/* Archive Access Section */
.archive-access {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.archive-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.archive-content > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.archive-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.main-archive, .funscripts-archive {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.main-archive h3, .funscripts-archive h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.main-archive p, .funscripts-archive p {
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.funscripts-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 1rem;
}

/* Archive Buttons */
.archive-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1.1rem;
}

.archive-button.primary {
    background: linear-gradient(45deg, #ff6b35, #ff8e53);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.archive-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.archive-button.secondary {
    background: transparent;
    color: #ff6b35;
    border-color: #ff6b35;
}

.archive-button.secondary:hover {
    background: #ff6b35;
    color: #ffffff;
}

/* New Archive Sections */
.funscripts-archive-section,
.wip-archive-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.funscripts-content,
.wip-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

.funscripts-content h3,
.wip-content h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.funscripts-content p,
.wip-content p {
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.wip-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 1rem;
}

/* Tier Archive Button Spacing */
.tier-archive-button {
    margin-top: 2rem;
}

.button-icon {
    font-size: 1.2rem;
}

/* Content Preview */
.content-preview {
    margin-top: 3rem;
}

.content-preview h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #ff8e53;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.preview-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.preview-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.preview-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preview-item:hover .preview-image img {
    transform: scale(1.05);
}

.preview-content {
    padding: 1.5rem;
}

.preview-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.preview-content h4 a {
    color: #ff8e53;
    text-decoration: none;
    transition: color 0.3s ease;
}

.preview-content h4 a:hover {
    color: #ff6b35;
}

.preview-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tier-badge.essential {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.tier-badge.premium {
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.tier-badge.ultra {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.tier-badge.vr {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.no-content {
    text-align: center;
    color: #888;
    font-style: italic;
    grid-column: 1 / -1;
}

/* Tier Promotion Section */
.tier-promotion {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
}

.tier-promotion h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.tier-promotion > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.tier-promotion .tier-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    justify-items: center;
}

/* Discord Community Section */
.discord-community {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.discord-community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(114, 137, 218, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(114, 137, 218, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(114, 137, 218, 0.05) 0%, transparent 50%);
    animation: background-shift 20s ease-in-out infinite;
}

@keyframes background-shift {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes grid-move {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-10px) translateY(-10px);
    }
}

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

@keyframes line-expand {
    0% {
        width: 0;
    }
    100% {
        width: 200px;
    }
}

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

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

@keyframes border-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

@keyframes line-glow {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.1);
    }
}

@keyframes inward-pulse {
    0% {
        opacity: 0.3;
        box-shadow: 
            0 0 15px rgba(255, 107, 53, 0.6),
            0 0 30px rgba(255, 107, 53, 0.4),
            0 0 45px rgba(255, 107, 53, 0.2);
        background: linear-gradient(90deg, #ff6b35, #ff8e53, #ffb366, #ff8e53, #ff6b35);
    }
    25% {
        opacity: 0.8;
        box-shadow: 
            0 0 25px rgba(255, 107, 53, 0.8),
            0 0 50px rgba(255, 107, 53, 0.6),
            0 0 75px rgba(255, 107, 53, 0.4);
        background: linear-gradient(90deg, #ff8e53, #ffb366, #ff6b35, #ffb366, #ff8e53);
    }
    50% {
        opacity: 1;
        box-shadow: 
            0 0 35px rgba(255, 107, 53, 1),
            0 0 70px rgba(255, 107, 53, 0.8),
            0 0 105px rgba(255, 107, 53, 0.6);
        background: linear-gradient(90deg, #ffb366, #ff6b35, #ff8e53, #ff6b35, #ffb366);
    }
    75% {
        opacity: 0.8;
        box-shadow: 
            0 0 25px rgba(255, 107, 53, 0.8),
            0 0 50px rgba(255, 107, 53, 0.6),
            0 0 75px rgba(255, 107, 53, 0.4);
        background: linear-gradient(90deg, #ff8e53, #ffb366, #ff6b35, #ffb366, #ff8e53);
    }
    100% {
        opacity: 0.3;
        box-shadow: 
            0 0 15px rgba(255, 107, 53, 0.6),
            0 0 30px rgba(255, 107, 53, 0.4),
            0 0 45px rgba(255, 107, 53, 0.2);
        background: linear-gradient(90deg, #ff6b35, #ff8e53, #ffb366, #ff8e53, #ff6b35);
    }
}

/* Removed about-divider-pulse animation - no longer needed */

.discord-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.discord-orb-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    /* Ensure container is visible */
    overflow: visible;
    z-index: 10;
}

.discord-orb-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
}

.discord-orb-link:hover {
    transform: scale(1.05);
}

.discord-orb-link:hover .discord-orb {
    filter: brightness(1.2);
}

.discord-orb-link .discord-orb {
    cursor: pointer;
}

/* Remove focus outline from Discord orb link */
.discord-orb-link:focus {
    outline: none;
}

.discord-orb-link:focus-visible {
    outline: 2px solid rgba(114, 137, 218, 0.5);
    outline-offset: 4px;
    border-radius: 50%;
}

.discord-admin-notice {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    color: #ff6b35;
    font-size: 0.9rem;
    text-align: center;
}

.discord-admin-notice a {
    color: #ff6b35;
    text-decoration: underline;
    font-weight: 600;
}

.discord-admin-notice a:hover {
    color: #e55a2b;
}

.discord-orb {
    position: relative;
    width: 100%;
    height: 100%;
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
    display: block;
    /* Ensure orb is visible and properly positioned */
    overflow: visible;
    z-index: 5;
}

.orb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(114, 137, 218, 0.3) 0%, rgba(114, 137, 218, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

.discord-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    object-fit: contain;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 20px rgba(114, 137, 218, 0.5));
    transition: all 0.3s ease;
}

.discord-orb:hover .discord-logo {
    transform: translate(-50%, -50%) scale(1.1);
    filter: drop-shadow(0 0 30px rgba(114, 137, 218, 0.8));
}

.discord-orb-link:hover .discord-orb .discord-logo {
    transform: translate(-50%, -50%) scale(1.15);
    filter: drop-shadow(0 0 40px rgba(114, 137, 218, 1));
}

.discord-orb-link:hover .orb-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.orb-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #7289da;
    border-radius: 50%;
    animation: particle-float 8s linear infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.particle:nth-child(4) {
    top: 40%;
    left: 80%;
    animation-delay: 3s;
    animation-duration: 6.5s;
}

.particle:nth-child(5) {
    bottom: 60%;
    right: 25%;
    animation-delay: 4s;
    animation-duration: 7.5s;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes particle-float {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

.discord-text-content {
    text-align: center;
    max-width: 800px;
}

.discord-text-content h2 {
    margin-bottom: 1.5rem;
    color: #7289da;
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(114, 137, 218, 0.3);
}

.discord-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.discord-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(114, 137, 218, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(114, 137, 218, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(114, 137, 218, 0.1), transparent);
    transition: left 0.5s;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    background: rgba(114, 137, 218, 0.2);
    border-color: rgba(114, 137, 218, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(114, 137, 218, 0.2);
}

.feature-icon {
    font-size: 2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(114, 137, 218, 0.5));
}

.feature-text {
    color: #e0e0e0;
    font-size: 0.9rem;
    text-align: center;
}

/* Discord button styles removed - orb is now clickable */

.discord-icon {
    font-size: 1.2rem;
}

/* Discord button styles removed - orb is now clickable */

.discord-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Mobile Responsiveness for Discord Section */
@media (max-width: 768px) {
    .discord-orb-container {
        width: 150px;
        height: 150px;
        margin-bottom: 1.5rem;
    }
    
    .discord-content {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .discord-text-content h2 {
        font-size: 2rem;
    }
    
    .discord-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    /* Discord features removed - orb is now clickable */
    
    /* Discord button removed from mobile styles */
    
    .discord-admin-notice {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Section divider mobile styles */
    .section-divider {
        padding: 20px 0;
    }
    
    .divider-line {
        width: 100%;
    }
    
    .about-page .divider-line {
        width: 100%;
        margin: 0;
    }
    
    /* Hero section mobile styles */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .discord-orb-container {
        width: 120px;
        height: 120px;
    }
    
    .discord-text-content h2 {
        font-size: 1.8rem;
    }
    
    .discord-description {
        font-size: 1rem;
    }
}

/* Patreon Notice */
.patreon-notice {
    padding: 60px 0;
    background: rgba(255, 107, 53, 0.05);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.notice-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.notice-content h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.notice-content p {
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.notice-content p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

/* Archive and Single Post Styles */
.archive-header {
    padding: 160px 0 60px; /* Increased top padding to account for fixed header */
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    margin-top: 0; /* Remove top margin for archive pages */
}

.posts-header {
    padding: 160px 0 60px; /* Increased top padding to account for fixed header */
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    margin-top: 0; /* Remove top margin for posts pages */
}

.posts-content {
    padding: 60px 0;
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.archive-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.archive-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

.archive-content {
    padding: 60px 0;
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
    position: relative;
    z-index: 10;
    overflow: visible; /* Allow content to flow naturally */
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.post-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.post-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.post-content {
    padding: 1.5rem;
}

.entry-title {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.entry-title a {
    color: #ff8e53;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: #ff6b35;
}

.entry-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #888;
    flex-wrap: wrap;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.entry-summary {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.read-more:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Pagination */
.pagination {
    margin-top: 3rem;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-previous a, .nav-next a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.nav-previous a:hover, .nav-next a:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-subtitle {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.nav-title {
    display: block;
    font-size: 1rem;
    margin-top: 0.2rem;
}

/* Single Post Styles */
.single-post {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.single-post .entry-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.single-post .entry-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.single-post .entry-meta {
    justify-content: center;
    font-size: 1rem;
}

.single-post .post-thumbnail {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.single-post .post-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.single-post .entry-content {
    padding: 80px 0;
}

.single-post .entry-content .container {
    max-width: 800px;
}

.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4 {
    color: #ff8e53;
    margin: 2rem 0 1rem;
}

.single-post .entry-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.single-post .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.single-post .entry-footer {
    padding: 60px 0;
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.author-bio {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.author-bio h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.post-navigation {
    margin-top: 2rem;
}

.post-navigation .nav-links {
    justify-content: space-between;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
    max-width: 45%;
}

.post-navigation .nav-next {
    text-align: right;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 3rem 0;
}

.no-posts h2 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.no-posts p {
    color: #888;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .nav-menu {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu a {
        padding: 0.8rem 1rem;
    }
    
    .tier-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .about-sidebar {
        order: -1;
    }
    
    /* Archive Page Mobile Styles */
    .tier-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tier-benefits {
        justify-content: center;
    }
    
    .archive-links {
        gap: 2rem;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Removed duplicate discord-features style */
}

/* Animations */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 107, 53, 0.6); }
}

.tier-card:hover {
    animation: glow 2s ease-in-out infinite;
}

/* Funscripts Notice */
.funscripts-notice {
    padding: 40px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.3);
}

.funscripts-notice .notice-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.funscripts-notice .notice-content h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.funscripts-notice .notice-content p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

/* Archive Button Icons */
.button-icon {
    margin-right: 0.5rem;
    font-size: 1.2em;
}

/* Additional Archive Page Mobile Styles */
@media (max-width: 768px) {
    .tier-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .tier-subtitle {
        font-size: 1.1rem;
    }
}

/* MEGA Archive Styles */
.mega-archive-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* WIP Archive Specific Styles */
.wip-features {
    margin-top: 3rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.wip-features h3 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.wip-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wip-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.wip-features li:last-child {
    border-bottom: none;
}

.wip-features li::before {
    content: '🔧';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-size: 1.1rem;
}

.tier-badge.wip {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

/* Public Archive Page - Red Styling */
.public-archive-page .mega-link-box {
    border: 2px solid #ff4444;
    background: rgba(255, 68, 68, 0.05);
}

.public-archive-page .mega-link-box:hover {
    border-color: #ff6666;
    background: rgba(255, 68, 68, 0.1);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.2);
}

.public-archive-page .mega-link-button {
    background: linear-gradient(135deg, #ff4444 0%, #ff6666 100%);
    border-color: #ff4444;
}

.public-archive-page .mega-link-button:hover {
    background: linear-gradient(135deg, #ff6666 0%, #ff4444 100%);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
}

.public-archive-page .mega-icon {
    color: #ff4444;
}

/* Public Archive Page Background with Subtle Orange Grid */
.public-archive-page {
    position: relative;
}

/* Archive Pages Background with Subtle Orange Grid */
.public-archive-page,
.wip-archive-page,
.essential-archive-page,
.premium-archive-page,
.ultra-archive-page,
.vr-archive-page,
.main-archive-page,
.funscripts-archive-page {
    position: relative;
    overflow: hidden; /* Prevent showcase images from extending beyond */
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(42, 42, 62, 0.95) 100%);
    text-align: center; /* Center all content */
    flex: 1; /* Take up available space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.public-archive-page::before,
.wip-archive-page::before,
.essential-archive-page::before,
.premium-archive-page::before,
.ultra-archive-page::before,
.vr-archive-page::before,
.main-archive-page::before,
.funscripts-archive-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="orange-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,107,53,0.15)" stroke-width="0.8"/></pattern></defs><rect width="100" height="100" fill="url(%23orange-grid)"/></svg>'),
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 142, 83, 0.05) 0%, transparent 50%);
    background-size: 20px 20px, 100% 100%, 100% 100%;
    opacity: 1;
    z-index: -1;
    pointer-events: none;
}

.mega-archive-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff6b35;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

/* Ensure archive content sections have proper spacing and don't extend beyond footer */
.mega-archive-content {
    padding: 2rem 0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
    text-align: center; /* Ensure content is centered */
}

/* Add subtle glow effect to archive page content */
.public-archive-page .mega-link-box,
.wip-archive-page .mega-link-box,
.essential-archive-page .mega-link-box,
.premium-archive-page .mega-link-box,
.ultra-archive-page .mega-link-box,
.vr-archive-page .mega-link-box,
.main-archive-page .mega-link-box,
.funscripts-archive-page .mega-link-box {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2), 0 0 20px rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, rgba(42, 42, 62, 0.95) 0%, rgba(30, 30, 46, 0.9) 100%);
}

.mega-archive-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.mega-link-container {
    margin: 3rem 0;
    text-align: center;
}

.mega-link-box {
    background: linear-gradient(135deg, #2a2a3e 0%, #1e1e2e 100%);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 3rem 2rem;
    margin: 2rem auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    max-width: 600px;
    text-align: center;
}

.mega-link-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    border-color: #ff8c42;
}

.mega-link-box.gated {
    border-color: #ff4757;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.2);
}

.mega-link-box.gated:hover {
    border-color: #ff6b7a;
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.3);
}

.mega-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.mega-link-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.mega-link-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.mega-link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.mega-link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.mega-link-button.gated {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

.mega-link-button.gated:hover {
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

.button-icon {
    font-size: 1.2rem;
}

.button-text {
    font-weight: 600;
}

.tier-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.tier-badge.essential {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.tier-badge.premium {
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
}

.tier-badge.ultra {
    background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
}

.tier-badge.vr {
    background: linear-gradient(135deg, #2196f3 0%, #64b5f6 100%);
}

.tier-badge.funscripts {
    background: linear-gradient(135deg, #4caf50 0%, #81c784 100%);
}

.mega-link-placeholder {
    background: linear-gradient(135deg, #2a2a3e 0%, #1e1e2e 100%);
    border: 2px dashed #666;
    border-radius: 15px;
    padding: 3rem 2rem;
    margin: 2rem 0;
    text-align: center;
}

.mega-link-placeholder h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.mega-link-placeholder p {
    color: #888;
    margin-bottom: 0.5rem;
}

.mega-link-placeholder em {
    color: #ff6b35;
    font-style: italic;
}

.patreon-gate-notice {
    background: linear-gradient(135deg, #2a2a3e 0%, #1e1e2e 100%);
    border: 2px solid #ff4757;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.patreon-gate-notice h3 {
    color: #ff4757;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.patreon-gate-notice p {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.patreon-gate-notice em {
    color: #ff6b35;
    font-style: italic;
}

.archive-note {
    background: linear-gradient(135deg, #1e1e2e 0%, #2a2a3e 100%);
    border-left: 4px solid #ff6b35;
    padding: 1.5rem;
    margin: 2rem auto;
    border-radius: 0 10px 10px 0;
    max-width: 600px;
    text-align: center;
}

.archive-note p {
    margin: 0;
    color: #e0e0e0;
}

.archive-note strong {
    color: #ff6b35;
}

.funscripts-info {
    background: linear-gradient(135deg, #1e1e2e 0%, #2a2a3e 100%);
    border: 2px solid #4caf50;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.funscripts-info h3 {
    color: #4caf50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.funscripts-info p {
    color: #b0b0b0;
    margin: 0;
    line-height: 1.6;
}

/* WIP Archive Styling */
.tier-badge.wip {
    background: linear-gradient(135deg, #607d8b 0%, #90a4ae 100%);
}

.mega-link-box.wip-themed {
    border-color: #607d8b;
    background: linear-gradient(135deg, #1e1e2e 0%, #2a2a3e 100%);
}

.mega-link-box.wip-themed .mega-icon {
    color: #607d8b;
}

.mega-link-button.wip-themed {
    background: linear-gradient(135deg, #607d8b 0%, #90a4ae 100%);
    border-color: #607d8b;
}

.mega-link-button.wip-themed:hover {
    background: linear-gradient(135deg, #546e7a 0%, #78909c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 125, 139, 0.4);
}

.mega-link-placeholder.wip-themed {
    border-color: #607d8b;
}

.mega-link-placeholder.wip-themed h3 {
    color: #607d8b;
}

.archive-note.wip-themed {
    border-left-color: #607d8b;
}

.archive-note.wip-themed strong {
    color: #607d8b;
}

.wip-info {
    background: linear-gradient(135deg, #1e1e2e 0%, #2a2a3e 100%);
    border: 2px solid #607d8b;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.wip-info h3 {
    color: #607d8b;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.wip-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(96, 125, 139, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(96, 125, 139, 0.3);
}

.feature-icon {
    font-size: 1.5rem;
    color: #607d8b;
}

.feature-text {
    color: #b0b0b0;
    font-weight: 500;
}

.wip-archive {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(96, 125, 139, 0.1) 0%, rgba(144, 164, 174, 0.1) 100%);
    border-radius: 15px;
    border: 1px solid rgba(96, 125, 139, 0.3);
    text-align: center;
}

.wip-archive h3 {
    color: #607d8b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.wip-archive p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.archive-button.wip-themed {
    background: linear-gradient(135deg, #607d8b 0%, #90a4ae 100%);
    border-color: #607d8b;
}

.archive-button.wip-themed:hover {
    background: linear-gradient(135deg, #546e7a 0%, #78909c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 125, 139, 0.4);
}

.wip-note {
    color: #607d8b;
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Showcase Images System - Absolute positioning with proper layout */
.showcase-image {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
    filter: brightness(1.2) contrast(1.1);
    transition: all 0.4s ease;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
    animation: float 6s ease-in-out infinite;
    /* Enhanced transitions for image rotation */
    transition: opacity 0.3s ease, transform 0.4s ease, filter 0.3s ease;
    /* Ensure images don't interfere with page layout */
    max-width: 250px;
    max-height: 300px;
    overflow: hidden;
    /* Prevent images from affecting page flow */
    position: absolute;
    /* Ensure images stay behind all content */
    z-index: 1;
    /* Prevent any layout interference */
    pointer-events: none;
    /* Ensure images don't create page stretching */
    position: absolute;
    /* No margin or padding to affect layout */
    margin: 0;
    padding: 0;
    /* Ensure images are contained within viewport */
    max-width: 250px;
    max-height: 300px;
    /* Prevent any overflow issues */
    overflow: hidden;
    /* Ensure images extend through full page height */
    height: auto;
}

/* Ensure images stay within page boundaries and don't interfere */
.showcase-image {
    /* Prevent images from extending beyond page content */
    max-width: 250px;
    max-height: 300px;
    /* Ensure images stay behind content sections */
    z-index: 1;
    /* Prevent any layout interference */
    pointer-events: none;
    /* Prevent page extension */
    max-height: 100vh;
}

.showcase-image:nth-child(even) {
    transform: rotate(2deg);
    animation-delay: -3s;
}

.showcase-image:nth-child(3n) {
    transform: rotate(-1deg);
    animation-delay: -1.5s;
}

.showcase-image:nth-child(4n) {
    transform: rotate(1.5deg);
    animation-delay: -4.5s;
}

.showcase-image:hover {
    opacity: 0.25;
    transform: scale(1.08) rotate(0deg);
    transition: all 0.3s ease;
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
    filter: brightness(1.4) contrast(1.2);
}

/* Image rotation animation */
.showcase-image.rotating {
    animation: imageRotate 0.6s ease-in-out;
}

@keyframes imageRotate {
    0% {
        transform: scale(1) rotate(var(--rotation, -2deg));
    }
    50% {
        transform: scale(1.1) rotate(calc(var(--rotation, -2deg) + 5deg));
    }
    100% {
        transform: scale(1) rotate(var(--rotation, -2deg));
    }
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation, -2deg));
    }
    50% {
        transform: translateY(-10px) rotate(var(--rotation, -2deg));
    }
}

/* Custom rotation variables for different images */
.showcase-global-1 { --rotation: -2deg; }
.showcase-global-2 { --rotation: 2deg; }
.showcase-global-3 { --rotation: -1deg; }
.showcase-global-4 { --rotation: 1.5deg; }
.showcase-global-5 { --rotation: -0.5deg; }
.showcase-section-1 { --rotation: 1deg; }
.showcase-section-2 { --rotation: -1.5deg; }
.showcase-section-3 { --rotation: 0.5deg; }
.showcase-section-4 { --rotation: -0.8deg; }
.showcase-section-5 { --rotation: 1.2deg; }
.showcase-section-6 { --rotation: -0.3deg; }

/* Global Showcase Images - Conservative positioning to prevent layout interference */
.showcase-global-1 {
    top: 120px;
    left: 5%;
    width: 200px;
    height: auto;
    max-width: 22vw;
}

.showcase-global-2 {
    top: 320px;
    right: 8%;
    width: 180px;
    height: auto;
    max-width: 20vw;
}

.showcase-global-3 {
    top: 520px;
    left: 10%;
    width: 220px;
    height: auto;
    max-width: 24vw;
}

/* Section Showcase Images - Distributed throughout the page content */
.showcase-section-1 {
    top: 600px;
    right: 15%;
    width: 200px;
    height: auto;
}

.showcase-section-2 {
    top: 800px;
    left: 12%;
    width: 240px;
    height: auto;
}

.showcase-section-3 {
    top: 1000px;
    right: 8%;
    width: 180px;
    height: auto;
}

.showcase-section-4 {
    top: 1200px;
    left: 15%;
    width: 220px;
    height: auto;
}

.showcase-section-5 {
    top: 1400px;
    right: 12%;
    width: 200px;
    height: auto;
}

.showcase-section-6 {
    top: 1600px;
    left: 10%;
    width: 190px;
    height: auto;
}

/* Responsive Showcase Images */
@media (max-width: 768px) {
    .showcase-image {
        width: 140px !important;
        opacity: 0.3;
        max-width: 160px !important;
        max-height: 200px !important;
    }
    
    /* Conservative positioning for mobile to prevent layout issues */
    .showcase-section-1 { top: 500px; }
    .showcase-section-2 { top: 700px; }
    .showcase-section-3 { top: 900px; }
    .showcase-section-4 { top: 1100px; }
    .showcase-section-5 { top: 1300px; }
    .showcase-section-6 { top: 1500px; }
    
    /* Adjust global images for mobile - conservative positioning */
    .showcase-global-1 { width: 150px; top: 80px; }
    .showcase-global-2 { width: 130px; top: 250px; }
    .showcase-global-3 { width: 170px; top: 400px; }
}

@media (max-width: 480px) {
    .showcase-image {
        width: 100px !important;
        opacity: 0.35;
        max-width: 120px !important;
        max-height: 150px !important;
    }
    
    /* Conservative positioning for small screens */
    .showcase-section-1 { top: 500px; }
    .showcase-section-2 { top: 700px; }
    .showcase-section-3 { top: 900px; }
    .showcase-section-4 { top: 1100px; }
    .showcase-section-5 { top: 1300px; }
    .showcase-section-6 { top: 1500px; }
    
    /* Adjust global images for small screens - conservative positioning */
    .showcase-global-1 { width: 120px; top: 60px; }
    .showcase-global-2 { width: 100px; top: 200px; }
    .showcase-global-3 { width: 140px; top: 350px; }
}

/* Ensure main content sections stay above showcase images */
.site-main,
.hero-section,
.tier-overview,
.about-hero,
.about-content-section,
.tier-hero,
.archive-access,
.archive-header,
.archive-content,
.posts-header,
.posts-content,
.entry-header,
.entry-content,
.entry-footer {
    position: relative;
    z-index: 10;
    background: inherit;
}



/* Ensure showcase images extend through the full page height */
.showcase-image {
    position: absolute; /* Keep absolute positioning for proper layout */
    z-index: 1;
    /* Prevent images from stretching the page */
    max-height: none;
}

/* Showcase images are positioned absolutely and won't interfere with flexbox layout */

/* Container elements should also be above showcase images */
.container,
.site-header,
.site-footer {
    position: relative;
    z-index: 10;
}

/* Ensure footer is properly positioned and page content doesn't extend beyond it */
.site-footer {
    position: relative;
    z-index: 1000;
    clear: both; /* Ensure footer clears any floating elements */
    flex-shrink: 0; /* Prevent footer from shrinking */
}

/* Ensure proper page structure for archive pages */
#page {
    min-height: 100vh;
}

/* Archive pages use flexbox layout for proper footer positioning */

/* Archive page specific layout fixes */
.public-archive-page,
.wip-archive-page,
.essential-archive-page,
.premium-archive-page,
.ultra-archive-page,
.vr-archive-page,
.main-archive-page,
.funscripts-archive-page {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Ensure archive pages have proper bottom spacing */
.public-archive-page,
.wip-archive-page,
.essential-archive-page,
.premium-archive-page,
.ultra-archive-page,
.vr-archive-page,
.main-archive-page,
.funscripts-archive-page {
    margin-bottom: 0;
    padding-bottom: 2rem;
    height: auto; /* Allow natural height */
    min-height: 0; /* Allow content to shrink */
}

/* Footer positioning is now handled by the main flexbox layout */

/* Ensure archive pages have proper content height */
.public-archive-page .archive-content,
.wip-archive-page .archive-content,
.essential-archive-page .archive-content,
.premium-archive-page .archive-content,
.ultra-archive-page .archive-content,
.vr-archive-page .archive-content,
.main-archive-page .archive-content,
.funscripts-archive-page .archive-content {
    padding-bottom: 3rem;
    text-align: center; /* Center all content */
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Add visual enhancement to archive page content */
.public-archive-page .mega-archive-content,
.wip-archive-page .mega-archive-content,
.essential-archive-page .mega-archive-content,
.premium-archive-page .mega-archive-content,
.ultra-archive-page .mega-archive-content,
.vr-archive-page .mega-archive-content,
.main-archive-page .mega-archive-content,
.funscripts-archive-page .mega-archive-content {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.1);
    max-width: 800px; /* Limit width for better centering */
}

/* Showcase overlay styling for consistent page appearance */
.showcase-overlay {
    position: relative;
    z-index: 10;
}

/* Enhanced grid effect for archive pages */
.public-archive-page .showcase-overlay,
.wip-archive-page .showcase-overlay,
.essential-archive-page .showcase-overlay,
.premium-archive-page .showcase-overlay,
.ultra-archive-page .showcase-overlay,
.vr-archive-page .showcase-overlay,
.main-archive-page .showcase-overlay,
.funscripts-archive-page .showcase-overlay {
    background: 
        linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 0 0;
}

/* Add subtle animation to grid lines */
@keyframes grid-shift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 30px 30px, 30px 30px; }
}

.public-archive-page .showcase-overlay,
.wip-archive-page .showcase-overlay,
.essential-archive-page .showcase-overlay,
.premium-archive-page .showcase-overlay,
.ultra-archive-page .showcase-overlay,
.vr-archive-page .showcase-overlay,
.main-archive-page .showcase-overlay,
.funscripts-archive-page .showcase-overlay {
    animation: grid-shift 20s linear infinite;
}

/* Ensure tier cards and other interactive elements are above showcase images */
.tier-card,
.mega-link-box,
.mega-link-placeholder,
.archive-button,
.cta-button,
.nav-menu {
    position: relative;
    z-index: 15;
}

/* ========================================
   INTERACTIVE WIP SHOWCASE SECTION
   ======================================== */

.wip-showcase-section {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(42, 42, 62, 0.8) 100%),
        linear-gradient(to right, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 100% 100%, 30px 30px, 30px 30px;
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.wip-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 142, 83, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Blueprint corner markers */
.wip-showcase-section::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(255, 107, 53, 0.3) 40%, rgba(255, 107, 53, 0.3) 60%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 107, 53, 0.3) 40%, rgba(255, 107, 53, 0.3) 60%, transparent 60%);
    pointer-events: none;
    opacity: 0.6;
}

.wip-showcase-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.wip-showcase-header h3 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
    position: relative;
}

.wip-showcase-header h3::before {
    content: '📋';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.7;
}

.wip-showcase-header h3::after {
    content: '📋';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.7;
}

.wip-showcase-header p {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 30px rgba(255, 107, 53, 0.5); }
    50% { text-shadow: 0 0 50px rgba(255, 107, 53, 0.8), 0 0 70px rgba(255, 107, 53, 0.3); }
}

.wip-gallery-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.wip-item {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 107, 53, 0.2);
    position: relative;
    cursor: pointer;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    margin: 0 15px;
}

.wip-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wip-item:hover::before {
    opacity: 1;
}

.wip-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(255, 107, 53, 0.3);
}

.wip-preview {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.wip-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wip-item:hover .wip-image {
    transform: scale(1.1);
}

.wip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 53, 0.9) 0%,
        rgba(255, 142, 83, 0.8) 50%,
        rgba(26, 26, 46, 0.9) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    color: white;
    text-align: center;
}

.wip-item:hover .wip-overlay {
    opacity: 1;
}

.wip-status {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.wip-category {
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.wip-info {
    padding: 25px;
    background: rgba(26, 26, 46, 0.9);
}

.wip-info h4 {
    color: #ff8e53;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.wip-info p {
    color: #c0c0c0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.wip-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.wip-archive-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.wip-archive-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.wip-archive-button:hover::before {
    left: 100%;
}

.wip-archive-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ff8e53, #ffb366);
}

.button-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.wip-archive-button:hover .button-arrow {
    transform: translateX(5px);
}

.wip-note {
    margin-top: 20px;
    color: #a0a0a0;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wip-showcase-section {
        padding: 60px 0;
    }
    
    .wip-showcase-header h3 {
        font-size: 2rem;
    }
    
    .wip-showcase-header h3::before,
    .wip-showcase-header h3::after {
        display: none;
    }
    
    .wip-gallery-grid {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .wip-item {
        min-width: auto;
        max-width: 100%;
        width: 100%;
    }
    
    .wip-preview {
        height: 200px;
    }
    
    .wip-archive-button {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .wip-showcase-section::after {
        width: 40px;
        height: 40px;
        top: 15px;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .wip-showcase-header h3 {
        font-size: 1.8rem;
    }
    
    .wip-showcase-header p {
        font-size: 1.1rem;
    }
    
    .wip-preview {
        height: 180px;
    }
    
    .wip-info {
        padding: 20px;
    }
    
    .wip-archive-button {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

.bubble-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bubble-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 
        0 8px 32px rgba(255, 107, 53, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: bubbleFloat 6s ease-in-out infinite;
}

.bubble-icon:hover {
    transform: scale(1.1);
    box-shadow: 
        0 12px 40px rgba(255, 107, 53, 0.6),
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* Blueprint-style grid pattern overlay */
.bubble-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 8px 8px;
    border-radius: 50%;
    opacity: 0.6;
}

.bubble-tooltip {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 320px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 32px rgba(255, 107, 53, 0.2);
    border: 2px solid rgba(255, 107, 53, 0.3);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.bubble-tooltip.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.tooltip-header {
    text-align: center;
    margin-bottom: 16px;
}

.tooltip-preview {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.tooltip-preview:hover {
    transform: scale(1.05);
}

.tooltip-header h4 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin: 0;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.bubble-tooltip p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: center;
}

.tooltip-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.tooltip-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ff8e53, #ffb366);
}

.tooltip-button .button-icon {
    font-size: 1.1rem;
}

/* Floating animation */
@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(2deg);
    }
    50% {
        transform: translateY(-4px) rotate(-1deg);
    }
    75% {
        transform: translateY(-12px) rotate(1deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wip-floating-bubble {
        bottom: 20px;
        right: 20px;
    }
    
    .bubble-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .bubble-tooltip {
        width: 280px;
        right: -20px;
        padding: 16px;
    }
    
    .tooltip-preview {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .wip-floating-bubble {
        bottom: 15px;
        right: 15px;
    }
    
    .bubble-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .bubble-tooltip {
        width: 260px;
        right: -30px;
        padding: 14px;
    }
    
    .tooltip-preview {
        height: 90px;
    }
    
    .tooltip-header h4 {
        font-size: 1.1rem;
    }
    
    .bubble-tooltip p {
        font-size: 0.9rem;
    }
}

/* ========================================
   ENHANCED FUNSCRIPTS SECTION
   ======================================== */

.funscripts-enhanced-section {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(42, 42, 62, 0.8) 100%);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.funscripts-header {
    text-align: center;
    margin-bottom: 40px;
}

.funscripts-header h3 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.funscripts-header p {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.funscripts-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.device-preview {
    text-align: center;
    position: relative;
}

.device-container {
    position: relative;
    display: inline-block;
}

.handy-device {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    animation: deviceVibrate 0.8s infinite, deviceStroke 2s infinite alternate;
}

/* Vibrating animation */
@keyframes deviceVibrate {
    0% { transform: translate(0); }
    10% { transform: translate(-1px, -1px); }
    20% { transform: translate(1px, 1px); }
    30% { transform: translate(-1px, 1px); }
    40% { transform: translate(1px, -1px); }
    50% { transform: translate(-1px, -1px); }
    60% { transform: translate(1px, 1px); }
    70% { transform: translate(-1px, 1px); }
    80% { transform: translate(1px, -1px); }
    90% { transform: translate(-1px, -1px); }
    100% { transform: translate(0); }
}

/* Up and down stroking motion */
@keyframes deviceStroke {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.sync-indicator {
    position: absolute;
    top: -20px;
    right: -20px;
    background: rgba(0, 255, 0, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0, 255, 0, 0.3);
    animation: syncPulse 2s ease-in-out infinite;
}

.sync-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: syncBlink 1s ease-in-out infinite;
}

@keyframes syncPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes syncBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.ultra-badge {
    background: rgba(255, 107, 53, 0.9);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    margin-left: 8px;
}

.funscripts-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #ff8e53;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-item p {
    color: #c0c0c0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.funscripts-cta {
    text-align: center;
}

.funscript-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.funscript-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.funscript-button:hover::before {
    left: 100%;
}

.funscript-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ff8e53, #ffb366);
}

.button-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.funscript-button:hover .button-arrow {
    transform: translateX(5px);
}

.funscripts-note {
    margin-top: 20px;
    color: #a0a0a0;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .funscripts-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .handy-device {
        width: 250px;
    }
    
    .sync-indicator {
        top: -15px;
        right: -15px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .funscripts-enhanced-section {
        padding: 40px 0;
    }
    
    .funscripts-header h3 {
        font-size: 2rem;
    }
    
    .handy-device {
        width: 200px;
    }
    
    .feature-grid {
        gap: 15px;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .funscript-button {
        padding: 16px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .funscripts-header h3 {
        font-size: 1.8rem;
    }
    
    .funscripts-header p {
        font-size: 1.1rem;
    }
    
    .handy-device {
        width: 180px;
    }
    
    .sync-indicator {
        top: -10px;
        right: -10px;
        padding: 4px 8px;
        font-size: 0.6rem;
    }
    
    .feature-item {
        padding: 14px;
        gap: 15px;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .funscript-button {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* ========================================
   PRIVACY POLICY & TERMS OF USE PAGES
   ======================================== */

/* Policy Page Hero Section */
.policy-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    text-align: center;
    position: relative;
    z-index: 10;
}

.policy-hero-content h1 {
    font-size: 4rem;
    background: linear-gradient(45deg, #ff6b35, #ff8e53, #ffb366, #ff6b35);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
    animation: gradient-shift 4s ease-in-out infinite;
    margin-bottom: 1.5rem;
}

.policy-subtitle {
    font-size: 1.5rem;
    color: #ffb366;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 179, 102, 0.5);
}

/* Policy Content Section */
.policy-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(42, 42, 62, 0.9) 100%);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.1);
    text-align: left;
}

.policy-header {
    text-align: left;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.effective-date {
    font-size: 1.1rem;
    color: #ff8e53;
    margin: 0;
}

.policy-intro {
    margin-bottom: 2.5rem;
}

.policy-intro p {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.policy-section p {
    color: #c0c0c0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-section li {
    color: #c0c0c0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.policy-section li::before {
    content: '•';
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.policy-section a {
    color: #ff8e53;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

.policy-contact {
    text-align: left;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
}

.policy-contact h3 {
    color: #ff8e53;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.policy-contact p {
    color: #c0c0c0;
    font-size: 1.1rem;
    margin: 0;
}

.policy-contact a {
    color: #ff8e53;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-contact a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
    .policy-hero {
        padding: 100px 0 60px;
    }
    
    .policy-hero-content h1 {
        font-size: 3rem;
    }
    
    .policy-subtitle {
        font-size: 1.3rem;
    }
    
    .policy-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.6rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .policy-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .policy-subtitle {
        font-size: 1.2rem;
    }
    
    .policy-content {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.4rem;
    }
}

/* Archive Posts Section Styling */
.posts-archive-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
}

.archive-title {
    color: #ff8e53;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.post-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 142, 83, 0.05) 100%);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8e53, #ff6b35);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.post-card:hover::before {
    transform: scaleX(1);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.post-card.essential-hd-post {
    border-color: rgba(255, 107, 53, 0.3);
}

.post-card.essential-hd-post:hover {
    border-color: rgba(255, 107, 53, 0.6);
}

.post-card.premium-hd-post {
    border-color: rgba(255, 142, 83, 0.3);
}

.post-card.premium-hd-post:hover {
    border-color: rgba(255, 142, 83, 0.6);
}

.post-card.ultra-hd-post {
    border-color: rgba(255, 193, 7, 0.3);
}

.post-card.ultra-hd-post:hover {
    border-color: rgba(255, 193, 7, 0.6);
}

.post-card.vr-experience-post {
    border-color: rgba(156, 39, 176, 0.3);
}

.post-card.vr-experience-post:hover {
    border-color: rgba(156, 39, 176, 0.6);
}

.post-card.funscripts-post {
    border-color: rgba(76, 175, 80, 0.3);
}

.post-card.funscripts-post:hover {
    border-color: rgba(76, 175, 80, 0.6);
}

.post-card.wip-post {
    border-color: rgba(33, 150, 243, 0.3);
}

.post-card.wip-post:hover {
    border-color: rgba(33, 150, 243, 0.6);
}

.post-thumbnail {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.post-content {
    color: #c0c0c0;
}

.entry-title {
    margin-bottom: 0.5rem;
}

.entry-title a {
    color: #ff8e53;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: #ff6b35;
}

.entry-meta {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #888;
}

.entry-meta span {
    margin-right: 1rem;
}

.entry-summary {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
}

.no-posts {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 15px;
    border: 2px dashed rgba(255, 107, 53, 0.3);
}

.no-posts p {
    color: #888;
    margin-bottom: 0.5rem;
}

.no-posts em {
    color: #ff6b35;
    font-style: normal;
}

/* Single Post Templates */
.single-post {
    padding: 2rem 0;
}

.single-post .entry-header {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 142, 83, 0.05) 100%);
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.post-header-content {
    text-align: center;
}

.single-post .entry-title {
    font-size: 3rem;
    color: #ff8e53;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.single-post .entry-meta {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.single-post .tier-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.single-post .entry-content {
    max-width: 800px;
    margin: 0 auto;
}

.single-post .post-thumbnail {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.single-post .post-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #c0c0c0;
}

.single-post .entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.nav-previous,
.nav-next {
    flex: 1;
    max-width: 45%;
}

.nav-previous a,
.nav-next a {
    display: block;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-previous a:hover,
.nav-next a:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.nav-subtitle {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.nav-title {
    display: block;
    color: #ff8e53;
    font-weight: 600;
    font-size: 1rem;
}

.back-to-archive {
    text-align: center;
}

.back-link {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.back-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Responsive Design for Archive Posts */
@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .archive-title {
        font-size: 2rem;
    }
    
    .single-post .entry-title {
        font-size: 2.5rem;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-previous,
    .nav-next {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .post-card {
        padding: 1rem;
    }
    
    .archive-title {
        font-size: 1.8rem;
    }
    
    .single-post .entry-title {
        font-size: 2rem;
    }
    
    .single-post .entry-header {
        padding: 2rem 0;
    }
}

/* New Archive Template Styles */

/* Archive Header Styles */
.archive-header {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.archive-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.archive-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.archive-description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Tier Badge Styles */
.tier-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin: 0.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.tier-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.tier-name {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-price {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.tier-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

/* MEGA Links Section Styles */
.mega-links-section {
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.mega-links-card {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mega-links-card:hover {
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.mega-links-card h2 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.mega-links-card p {
    color: #ffffff;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* MEGA Link Container Styles */
.mega-link-container {
    text-align: center;
}

.mega-link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.mega-link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

.mega-icon {
    font-size: 1.2rem;
}

.mega-link-note {
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* MEGA Link Placeholder Styles */
.mega-link-placeholder {
    background: rgba(255, 107, 53, 0.1);
    border: 2px dashed rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.mega-link-placeholder p {
    color: #ff6b35;
    margin: 0.5rem 0;
}

.mega-link-placeholder em {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Tier-Specific Card Styles */
.essential-hd-card {
    border-color: rgba(255, 107, 53, 0.4);
}

.essential-hd-card:hover {
    border-color: rgba(255, 107, 53, 0.7);
}

.premium-hd-card {
    border-color: rgba(255, 107, 53, 0.5);
}

.premium-hd-card:hover {
    border-color: rgba(255, 107, 53, 0.8);
}

.ultra-hd-card {
    border-color: rgba(255, 107, 53, 0.6);
}

.ultra-hd-card:hover {
    border-color: rgba(255, 107, 53, 0.9);
}

.vr-experience-card {
    border-color: rgba(255, 107, 53, 0.7);
}

.vr-experience-card:hover {
    border-color: rgba(255, 107, 53, 1);
}

.funscripts-card {
    border-color: rgba(255, 107, 53, 0.4);
}

.funscripts-card:hover {
    border-color: rgba(255, 107, 53, 0.7);
}

.wip-card {
    border-color: rgba(255, 107, 53, 0.3);
}

.wip-card:hover {
    border-color: rgba(255, 107, 53, 0.6);
}

/* Tier-Specific Button Styles */
.essential-hd-button {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.premium-hd-button {
    background: linear-gradient(135deg, #ff8c42, #ffa726);
}

.ultra-hd-button {
    background: linear-gradient(135deg, #ffa726, #ffb74d);
}

.vr-experience-button {
    background: linear-gradient(135deg, #ffb74d, #ffcc02);
}

.funscripts-button {
    background: linear-gradient(135deg, #ff6b35, #e91e63);
}

.wip-button {
    background: linear-gradient(135deg, #ff6b35, #9c27b0);
}

/* Archive Content Styles */
.archive-content {
    padding: 2rem 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.post-content {
    padding: 1.5rem;
}

.entry-title {
    margin-bottom: 1rem;
}

.entry-title a {
    color: #ff6b35;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: #ff8c42;
}

.entry-meta {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.entry-meta span {
    margin-right: 1rem;
}

.entry-summary {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ff8c42;
}

/* Pagination Styles */
.pagination {
    text-align: center;
    margin-top: 3rem;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.nav-previous a,
.nav-next a {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.nav-previous a:hover,
.nav-next a:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.6);
    color: #ffffff;
}

/* No Posts Styles */
.no-posts {
    text-align: center;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.no-posts h2 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.no-posts p {
    color: #cccccc;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .archive-title {
        font-size: 2rem;
    }
    
    .archive-description {
        font-size: 1rem;
    }
    
    .tier-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .mega-links-card {
        padding: 1.5rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .archive-header {
        padding: 2rem 0;
    }
    
    .mega-links-card {
        padding: 1rem;
    }
    
    .mega-link-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* MEGA Link Button Styles */
.mega-link-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.mega-link-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.mega-link-card .mega-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.mega-link-card h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mega-link-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.mega-link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.mega-link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    text-decoration: none;
}

.mega-link-button .button-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.mega-link-button:hover .button-icon {
    transform: translateX(3px);
}

.mega-link-note {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
    font-style: italic;
}

/* Responsive Design for MEGA Link Button */
@media (max-width: 768px) {
    .mega-link-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .mega-link-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Ensure MEGA Links work well within content area */
.entry-content .mega-link-section {
    margin: 40px 0;
    max-width: 100%;
}

.entry-content .mega-link-card {
    margin: 0;
}

/* SubscribeStar Login Section Styling */
.subscribestar-login-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.subscribestar-login-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.subscribestar-login-card h2 {
    color: var(--accent-orange);
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.subscribestar-login-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.login-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.patreon-option,
.subscribestar-option {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.patreon-option h3,
.subscribestar-option h3 {
    color: var(--accent-orange);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.patreon-option p,
.subscribestar-option p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tier-info {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-info h4 {
    color: var(--accent-orange);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tier-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-info li {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-info li:last-child {
    border-bottom: none;
}

.tier-info strong {
    color: var(--accent-orange);
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .subscribestar-login-card {
        padding: 30px 20px;
    }
    
    .subscribestar-login-card h2 {
        font-size: 2rem;
    }
}

/* SubscribeStar Unlock Modal Styling */
.eyro-unlock-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.8) !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto !important;
}

.eyro-unlock-modal {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    border-radius: 20px !important;
    padding: 40px !important;
    max-width: 600px !important;
    width: 90% !important;
    text-align: center !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
    position: relative !important;
    z-index: 1000000 !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    transform: none !important;
}

.eyro-unlock-modal h3 {
    color: var(--accent-orange) !important;
    margin-bottom: 15px !important;
    font-size: 2rem !important;
    text-align: center !important;
}

.eyro-unlock-modal p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 30px !important;
    font-size: 1.1rem !important;
    text-align: center !important;
}

.eyro-unlock-buttons {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    margin: 30px 0 !important;
    text-align: center !important;
}

.eyro-patreon-option,
.eyro-subscribestar-option {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 15px !important;
    padding: 25px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: center !important;
}

.eyro-patreon-option h4,
.eyro-subscribestar-option h4 {
    color: var(--accent-orange) !important;
    margin-bottom: 15px !important;
    font-size: 1.3rem !important;
    text-align: center !important;
}

.eyro-patreon-option p,
.eyro-subscribestar-option p {
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 20px !important;
    line-height: 1.6 !important;
    text-align: center !important;
}

.eyro-tier-info {
    margin-top: 30px !important;
    padding: 25px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: center !important;
}

.eyro-tier-info h4 {
    color: var(--accent-orange);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.eyro-tier-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eyro-tier-info li {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.eyro-tier-info li:last-child {
    border-bottom: none;
}

.eyro-tier-info strong {
    color: var(--accent-orange);
}

/* Close button styling */
.eyro-close-unlock {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s ease;
    pointer-events: auto !important;
    z-index: 1000000;
}

.eyro-close-unlock:hover {
    background: #e55a2b;
    transform: scale(1.05);
}

/* SubscribeStar button in modal */
.eyro-subscribestar-option button,
.eyro-subscribestar-option .subscribestar-login-button,
.eyro-subscribestar-option input[type="submit"] {
    background: var(--accent-orange) !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    pointer-events: auto !important;
    z-index: 1000000 !important;
    display: inline-block !important;
    width: auto !important;
    min-width: 200px !important;
}

.eyro-subscribestar-option button:hover,
.eyro-subscribestar-option .subscribestar-login-button:hover,
.eyro-subscribestar-option input[type="submit"]:hover {
    background: #e55a2b !important;
    transform: scale(1.05) !important;
}

.eyro-close-unlock {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.eyro-close-unlock:hover {
    background: #e55a2b;
}

/* SubscribeStar Toggle Button */
.eyro-subscribestar-toggle {
    background: var(--accent-orange) !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    margin: 10px 5px !important;
    cursor: pointer !important;
    font-size: 1rem !important;
    transition: background 0.3s ease !important;
    display: inline-block !important;
}

.eyro-subscribestar-toggle:hover {
    background: #e55a2b !important;
}

/* Ensure Patreon and SubscribeStar buttons are side by side */
.patreon-unlock-container,
.patreon-login-container,
.patreon-button-container {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    align-items: center !important;
}

/* Style the button container */
.eyro-subscribestar-toggle {
    flex-shrink: 0 !important;
}

/* Ensure SubscribeStar button is clickable */
.eyro-subscribestar-toggle {
    position: relative !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
    user-select: none !important;
    cursor: pointer !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Override any theme CSS that might be hiding the button */
.eyro-subscribestar-toggle:hover {
    background: #e55a2b !important;
    transform: scale(1.05) !important;
    transition: all 0.2s ease !important;
}

/* Handle overlapping elements */
.eyro-subscribestar-toggle {
    isolation: isolate !important;
}

/* Ensure button is above all other content */
.eyro-subscribestar-toggle {
    position: fixed !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
}

/* Alternative positioning if fixed doesn't work */
.eyro-subscribestar-toggle.alternative-position {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 999999 !important;
}



/* Responsive Design for Modal */
@media (max-width: 768px) {
    .eyro-unlock-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .eyro-unlock-modal {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .eyro-unlock-modal h3 {
        font-size: 1.5rem;
    }
}

/* Ensure button is above all other content */
.eyro-subscribestar-toggle {
    position: fixed !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
}

/* Alternative positioning if fixed doesn't work */
.eyro-subscribestar-toggle.alternative-position {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 999999 !important;
}

/* Character Grid Styling */
/* Parent container: stack games vertically */
#character-library-grid {
  display: flex;
  flex-direction: column; /* one game per row */
  gap: 40px; /* space between game sections */
}

/* ===== MAIN PAGE TITLE ===== */
.character-library-title {
  font-size: 3.5rem;   /* much larger than game titles */
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
  font-weight: 800;    /* bold and strong */
  letter-spacing: 1px;
}


/* Parent container: stack games vertically */
#character-library-grid {
  display: flex;
  flex-direction: column; /* one game per row */
  gap: 40px; /* space between game sections */
}

/* Each game gets its own block */
.game-section {
  width: 100%;
  display: block;
}

/* Game heading */
.game-section h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
}

/* Characters inside each game: 3 per row */
.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* Character card styles */
.character-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: #1e1e2f;
  border-radius: 10px;
  padding: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.character-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.character-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.character-card h4 {
  margin: 0;
  color: #fff;
}

















