:root {
    --prism-magenta: #ff0080;
    --prism-cyan: #00f5ff;
    --prism-yellow: #ffea00;
    --prism-lime: #39ff14;
    --prism-orange: #ff6700;
    --prism-purple: #c724b1;
    --prism-blue: #0080ff;
    --dark-bg: #0a0a0f;
    --white: #ffffff;
    
    /* Twilight palette - soft gradual colors */
    --twilight-pink: #e879a0;
    --twilight-coral: #f0a080;
    --twilight-peach: #e8a090;
    --twilight-orange: #d89070;
    --twilight-mauve: #c080a0;
    --twilight-purple: #a080c0;
    --twilight-lavender: #b090d0;
}

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

body {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Global Link Styling - Content Links Only */
.article-content a,
.article-content p a,
.related-card a {
    background: linear-gradient(135deg, var(--prism-magenta), var(--prism-orange), var(--prism-cyan), var(--prism-purple));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.article-content a:hover,
.article-content p a:hover,
.related-card a:hover {
    background-position: 100% 100%;
    filter: brightness(1.2);
}

.article-content a:visited,
.article-content p a:visited,
.related-card a:visited {
    background: linear-gradient(135deg, var(--prism-orange), var(--prism-blue));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.article-content a:visited:hover,
.article-content p a:visited:hover,
.related-card a:visited:hover {
    background-position: 100% 100%;
    filter: brightness(1.15);
}

/* Cosmic Shimmer Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, var(--prism-magenta) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--prism-cyan) 0%, transparent 50%),
        radial-gradient(circle at 40% 90%, var(--prism-yellow) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, var(--prism-lime) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, var(--prism-purple) 0%, transparent 60%);
    opacity: 0.08;
    animation: cosmic-shimmer 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes cosmic-shimmer {
    0%, 100% { 
        opacity: 0.08;
        background-position: 0% 0%, 100% 100%, 50% 100%, 100% 0%, 50% 50%;
    }
    50% { 
        opacity: 0.15;
        background-position: 100% 50%, 0% 50%, 100% 0%, 0% 100%, 70% 30%;
    }
}

/* Starfield Effect */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        radial-gradient(1px 1px at 20% 30%, white, transparent),
        radial-gradient(1px 1px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(1px 1px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 30% 80%, white, transparent);
    background-size: 300% 300%;
    animation: twinkle 40s linear infinite;
    opacity: 0.3;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(90deg, 
        var(--twilight-pink), 
        var(--twilight-coral), 
        var(--twilight-orange), 
        var(--twilight-mauve),
        var(--twilight-purple), 
        var(--twilight-lavender),
        var(--twilight-pink));
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: twilight-flow 25s ease-in-out infinite;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

@keyframes rainbow-flow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes twilight-flow {
    0% { background-position: 0% center; }
    50% { background-position: 150% center; }
    100% { background-position: 300% center; }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--prism-magenta), var(--prism-cyan));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-links a:hover::before {
    transform: scaleX(1);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 95vh;
    display: grid;
    place-items: center;
    position: relative;
    padding: 3rem;
}

.hero-prism {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-prism h1 {
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -4px;
}

.hero-prism h1 .word {
    display: block;
    background: linear-gradient(90deg, 
        var(--twilight-pink), 
        var(--twilight-coral), 
        var(--twilight-orange), 
        var(--twilight-mauve),
        var(--twilight-purple), 
        var(--twilight-lavender),
        var(--twilight-pink));
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: twilight-flow 30s ease-in-out infinite;
}

.hero-prism h1 .word:nth-child(2) {
    animation-delay: -2s;
}

.hero-prism h1 .word:nth-child(3) {
    animation-delay: -4s;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Prism Buttons */
.prism-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--prism-magenta), var(--prism-purple), var(--prism-cyan));
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.prism-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.prism-btn:hover::before {
    width: 300px;
    height: 300px;
}

.prism-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.6);
}

.prism-btn-secondary {
    background: transparent;
    border: 2px solid var(--prism-cyan);
    clip-path: none;
}

.prism-btn-secondary:hover {
    background: var(--prism-cyan);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.6);
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 0;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--prism-magenta), var(--prism-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feature Sections */
.features {
    position: relative;
    z-index: 1;
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, 
        var(--twilight-pink), 
        var(--twilight-coral), 
        var(--twilight-orange), 
        var(--twilight-mauve),
        var(--twilight-purple), 
        var(--twilight-lavender),
        var(--twilight-pink));
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    text-align: center;
    animation: twilight-flow 28s ease-in-out infinite;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4rem;
}

/* Feature Cards Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.1), transparent 50%);
    opacity: 0;
    transition: all 0.5s;
}

.feature-card:hover::before {
    opacity: 1;
    transform: translate(25%, 25%);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--prism-magenta);
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.3);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 6s ease-in-out infinite;
}

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

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
}

.feature-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--prism-cyan);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.feature-link:hover {
    color: var(--prism-magenta);
    transform: translateX(10px);
}

/* Page Header */
.page-header {
    margin-top: 80px;
    padding: 6rem 3rem 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, 
        var(--twilight-pink), 
        var(--twilight-coral), 
        var(--twilight-orange), 
        var(--twilight-mauve),
        var(--twilight-purple), 
        var(--twilight-lavender),
        var(--twilight-pink));
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
    animation: twilight-flow 28s ease-in-out infinite;
}

.page-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Filter Tags */
.filter-section {
    position: relative;
    z-index: 1;
    padding: 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.filter-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Sweeping light reflection over all tags */
.filter-tags::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.08) 45%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.08) 55%,
        transparent 100%);
    animation: filterTagSweep 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 10;
}

@keyframes filterTagSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.filter-tag {
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
    position: relative;
}

.filter-tag:hover, .filter-tag.active {
    background: var(--prism-magenta);
    border-color: var(--prism-magenta);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
    transform: translateY(-3px);
}

/* Mobile/Desktop visibility helpers */
.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

/* Mobile Category Dropdown */
.filter-dropdown {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.filter-dropdown select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.filter-dropdown select:focus {
    outline: none;
    border-color: var(--prism-magenta);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

.filter-dropdown select option {
    background: #1a1a2e;
    color: white;
    padding: 0.5rem;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
    position: relative;
    z-index: 1;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.blog-card::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.5s;
}

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

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--prism-magenta);
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.3);
}

/* Blog Card Sizes */
.blog-card-1 { grid-column: span 6; background: linear-gradient(135deg, rgba(255, 0, 128, 0.05), transparent); }
.blog-card-2 { grid-column: span 6; background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), transparent); }
.blog-card-3 { grid-column: span 4; background: linear-gradient(135deg, rgba(255, 234, 0, 0.05), transparent); }
.blog-card-4 { grid-column: span 8; background: linear-gradient(135deg, rgba(57, 255, 20, 0.05), transparent); }
.blog-card-5 { grid-column: span 7; background: linear-gradient(135deg, rgba(255, 103, 0, 0.05), transparent); }
.blog-card-6 { grid-column: span 5; background: linear-gradient(135deg, rgba(199, 36, 177, 0.05), transparent); }

/* Blog Card Colors - named variants */
.card-magenta { background: linear-gradient(135deg, rgba(255, 0, 128, 0.08), transparent); }
.card-cyan { background: linear-gradient(135deg, rgba(0, 245, 255, 0.08), transparent); }
.card-yellow { background: linear-gradient(135deg, rgba(255, 234, 0, 0.08), transparent); }
.card-lime { background: linear-gradient(135deg, rgba(57, 255, 20, 0.08), transparent); }
.card-orange { background: linear-gradient(135deg, rgba(255, 103, 0, 0.08), transparent); }
.card-purple { background: linear-gradient(135deg, rgba(199, 36, 177, 0.08), transparent); }

.card-magenta:hover { border-color: var(--prism-magenta); box-shadow: 0 20px 60px rgba(255, 0, 128, 0.3); }
.card-cyan:hover { border-color: var(--prism-cyan); box-shadow: 0 20px 60px rgba(0, 245, 255, 0.3); }
.card-yellow:hover { border-color: var(--prism-yellow); box-shadow: 0 20px 60px rgba(255, 234, 0, 0.3); }
.card-lime:hover { border-color: var(--prism-lime); box-shadow: 0 20px 60px rgba(57, 255, 20, 0.3); }
.card-orange:hover { border-color: var(--prism-orange); box-shadow: 0 20px 60px rgba(255, 103, 0, 0.3); }
.card-purple:hover { border-color: var(--prism-purple); box-shadow: 0 20px 60px rgba(199, 36, 177, 0.3); }

/* Blog card link wrapper */
.blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.blog-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.card-1 .blog-category { background: var(--prism-magenta); }
.card-2 .blog-category { background: var(--prism-cyan); }
.card-3 .blog-category { background: var(--prism-yellow); color: var(--dark-bg); }
.card-4 .blog-category { background: var(--prism-lime); color: var(--dark-bg); }
.card-5 .blog-category { background: var(--prism-orange); }
.card-6 .blog-category { background: var(--prism-purple); }

/* Named color category backgrounds */
.card-magenta .blog-category { background: var(--prism-magenta); }
.card-cyan .blog-category { background: var(--prism-cyan); color: var(--dark-bg); }
.card-yellow .blog-category { background: var(--prism-yellow); color: var(--dark-bg); }
.card-lime .blog-category { background: var(--prism-lime); color: var(--dark-bg); }
.card-orange .blog-category { background: var(--prism-orange); }
.card-purple .blog-category { background: var(--prism-purple); }

.blog-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.2;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.blog-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.read-more {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    gap: 1rem;
    color: var(--prism-cyan);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
}

.page-btn {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.page-btn:hover, .page-btn.active {
    background: var(--prism-cyan);
    border-color: var(--prism-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

/* Article Container */
.article-container {
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

/* Article Hero */
.article-hero {
    height: 70vh;
    background: linear-gradient(135deg, var(--prism-magenta), var(--prism-purple), var(--prism-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.4);
}

.article-hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 3rem;
}

.article-category {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--prism-magenta);
    color: white;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
}

.article-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-style: italic;
}

.article-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

/* Article Content */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 3rem;
    font-family: 'Georgia', 'Crimson Text', serif;
}

/* Mid-Article Ad Styling */
.article-ad {
    margin: 3rem -1rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.article-ad::before {
    content: 'Advertisement';
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.article-content p {
    font-size: 1.25rem;
    line-height: 2;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.article-content p:first-of-type::first-letter {
    font-size: 5rem;
    float: left;
    line-height: 1;
    margin: 0 0.5rem 0 0;
    background: linear-gradient(135deg, var(--prism-magenta), var(--prism-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.article-content h2 {
    font-size: 2.5rem;
    margin: 4rem 0 2rem;
    font-weight: 400;
    font-style: italic;
    background: linear-gradient(135deg, var(--prism-cyan), var(--prism-magenta));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
}

.article-content h3 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    font-weight: 600;
    color: var(--prism-cyan);
    font-family: 'Space Grotesk', sans-serif;
}

.article-content blockquote {
    border-left: 6px solid var(--prism-magenta);
    padding: 2rem 3rem;
    margin: 3rem 0;
    background: rgba(255, 0, 128, 0.05);
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.article-content ul,
.article-content ol {
    margin: 2rem 0 2rem 2rem;
    font-size: 1.2rem;
    line-height: 2;
}

.article-content li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.article-content code {
    background: rgba(0, 245, 255, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--prism-cyan);
    font-size: 1.1rem;
}

.article-content pre {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-left: 4px solid var(--prism-cyan);
    overflow-x: auto;
    margin: 2rem 0;
}

.article-content pre code {
    background: none;
    padding: 0;
    font-size: 1rem;
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--prism-magenta), var(--prism-cyan), var(--prism-yellow));
    z-index: 1001;
    transition: width 0.1s;
}

/* Article Actions */
.article-actions {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.action-btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn:hover {
    background: var(--prism-magenta);
    border-color: var(--prism-magenta);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
}

/* Related Posts */
.related-posts {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 3rem;
}

.related-posts h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, var(--prism-magenta), var(--prism-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    font-weight: 900;
}

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

.related-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--white);
    display: block;
}

.related-card:hover {
    transform: translateY(-10px);
    border-color: var(--prism-cyan);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.3);
}

.related-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

.related-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.02);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

footer h4 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, 
        var(--prism-magenta), 
        var(--prism-cyan), 
        var(--prism-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 1rem;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* ========================================
       MOBILE - HIDE FEATURES & STATS SECTIONS
       ======================================== */
    
    .features,
    .stats {
        display: none !important;
    }
    
    /* ========================================
       MOBILE BLOG GRID - UNIFORM SQUARE TILES
       Only apply on small mobile screens
       ======================================== */
}

@media (max-width: 768px) {
    /* Show mobile dropdown, hide desktop tags */
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    /* Mobile blog grid - full-width rows */
    .blog-grid,
    .blog-grid-prismatic {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .blog-card-prismatic {
        grid-column: span 1 !important;
        grid-row: auto !important;
    }
    
    /* Reset the old span classes */
    .blog-card-1, .blog-card-2, .blog-card-3, 
    .blog-card-4, .blog-card-5, .blog-card-6,
    .blog-card-7, .blog-card-8 {
        grid-column: unset;
    }
    
    /* Compact card styles for mobile */
    .blog-card,
    .blog-card-prismatic {
        padding: 0.9rem 1rem;
        min-height: 88px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
        position: relative;
        overflow: hidden;
        gap: 0.35rem;
    }
    
    .blog-card::before,
    .blog-card-prismatic::before {
        display: none;
    }
    
    .blog-card:hover,
    .blog-card-prismatic:hover {
        transform: scale(1.02);
    }
    
    /* Hide meta info, keep title and category */
    .blog-meta,
    .blog-card p,
    .blog-card-prismatic p,
    .read-more,
    .blog-card-image,
    .card-reflection {
        display: none !important;
    }
    
    /* Show category badge */
    .blog-category {
        display: inline-block;
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
        margin-bottom: 0;
        position: relative;
        z-index: 2;
        letter-spacing: 1px;
    }
    
    /* Title styling */
    .blog-card h3,
    .blog-card-prismatic h3 {
        font-size: 0.9rem;
        line-height: 1.3;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-weight: 700;
        color: var(--white);
        position: relative;
        z-index: 2;
    }
    
    /* Make entire card clickable */
    .blog-card,
    .blog-card-prismatic {
        cursor: pointer;
    }
    
    /* Page Header mobile */
    .page-header {
        padding: 5rem 1rem 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 0.85rem;
    }
    
    /* Filter section mobile */
    .filter-section {
        padding: 0.5rem;
    }
    
    .filter-tags {
        gap: 0.4rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.5rem;
    }
    
    .filter-tags::-webkit-scrollbar {
        display: none;
    }
    
    .filter-tag {
        padding: 0.35rem 0.7rem;
        font-size: 0.65rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    /* Pagination mobile - hidden on index, shown on blog page */
    .latest-posts .pagination {
        display: none;
    }
    
    /* Mobile "View All" link */
    .mobile-view-all {
        display: block !important;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .mobile-view-all-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 2rem;
        background: linear-gradient(135deg, var(--prism-magenta), var(--prism-purple));
        color: white;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.9rem;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 20px rgba(255, 0, 128, 0.3);
    }
    
    /* Blog page pagination */
    .container .pagination {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1.5rem;
        justify-content: center;
    }
    
    .page-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    /* Latest posts section compact */
    .latest-posts {
        padding: 1.5rem 0;
    }
    
    .blog-container-full {
        padding: 0;
    }
}

@media (max-width: 600px) {
    .hero-prism h1 {
        font-size: 2.5rem;
        letter-spacing: -2px;
    }
    
    .article-hero h1 {
        font-size: 2rem;
    }
    
    .article-content {
        padding: 3rem 1.5rem;
    }
    
    .prism-btn {
        padding: 1rem 2rem;
    }
}

/* Extra small screens - even more compact */
@media (max-width: 400px) {
    .blog-grid,
    .blog-grid-prismatic {
        gap: 0.4rem;
    }
    
    .blog-card,
    .blog-card-prismatic {
        padding: 0.5rem;
        min-height: 80px;
    }
    
    .blog-card h3,
    .blog-card-prismatic h3 {
        font-size: 0.7rem;
        -webkit-line-clamp: 3;
    }
    
    .blog-card-link {
        padding: 0.5rem;
    }
}

/* ========================================
   ENHANCED NAVIGATION WITH ICONS
   ======================================== */

/* Logo with icon */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.6rem;
    font-weight: 900;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--twilight-pink);
    animation: icon-glow 3s ease-in-out infinite;
}

@keyframes icon-glow {
    0%, 100% { 
        stroke: var(--twilight-pink);
        filter: drop-shadow(0 0 5px var(--twilight-pink));
    }
    33% { 
        stroke: var(--twilight-coral);
        filter: drop-shadow(0 0 5px var(--twilight-coral));
    }
    66% { 
        stroke: var(--twilight-purple);
        filter: drop-shadow(0 0 5px var(--twilight-purple));
    }
}

.logo-text {
    background: linear-gradient(90deg, 
        var(--twilight-pink), 
        var(--twilight-coral), 
        var(--twilight-orange), 
        var(--twilight-mauve),
        var(--twilight-purple), 
        var(--twilight-lavender),
        var(--twilight-pink));
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: twilight-flow 25s ease-in-out infinite;
}

/* Nav links with icons */
.nav-links li {
    position: relative;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.nav-links a svg {
    width: 18px;
    height: 18px;
    stroke: var(--twilight-pink);
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a:hover svg,
.nav-links a.active svg {
    stroke: var(--twilight-coral);
    filter: drop-shadow(0 0 8px var(--twilight-coral));
}

/* Dropdown arrow */
.dropdown-arrow {
    width: 14px !important;
    height: 14px !important;
    margin-left: -0.25rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: rgba(15, 15, 25, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-menu a svg {
    width: 18px;
    height: 18px;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transform: translateX(5px);
}

/* Nav actions (search & mobile toggle) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-actions button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-actions button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--twilight-pink);
}

.nav-actions button svg {
    width: 20px;
    height: 20px;
    stroke: var(--twilight-pink);
    display: block;
}

.mobile-toggle {
    display: none;
}

/* ========================================
   SEARCH OVERLAY
   ======================================== */

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.open {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 100%;
    max-width: 600px;
    padding: 0 2rem;
}

.search-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--twilight-pink);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: 0 0 30px rgba(232, 121, 160, 0.2);
}

.search-header svg {
    width: 24px;
    height: 24px;
    stroke: var(--twilight-pink);
    flex-shrink: 0;
}

.search-header input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 1.2rem;
    font-family: inherit;
}

.search-header input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.search-close svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.6);
}

.search-results {
    margin-top: 2rem;
    max-height: 50vh;
    overflow-y: auto;
}

/* ========================================
   MOBILE MENU
   ======================================== */

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-menu a svg {
    width: 22px;
    height: 22px;
    stroke: var(--twilight-pink);
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transform: translateX(10px);
}

/* ========================================
   ENHANCED FOOTER
   ======================================== */

footer {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 25, 0.8) 20%, rgba(15, 15, 25, 0.95) 100%);
    padding: 5rem 3rem 2rem;
    margin-top: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-logo svg {
    width: 26px;
    height: 26px;
    stroke: var(--twilight-pink);
}

.footer-logo-img {
    height: 36px;
    width: auto;
    border-radius: 6px;
}

.footer-logo span {
    background: linear-gradient(90deg, var(--twilight-pink), var(--twilight-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    stroke: var(--twilight-pink);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--twilight-pink);
    border-color: var(--twilight-pink);
    transform: translateY(-3px);
}

.footer-social a:hover svg {
    stroke: var(--white);
}

.footer-nav h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-nav h5 svg {
    width: 18px;
    height: 18px;
    stroke: var(--twilight-coral);
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--twilight-pink);
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.heart-icon {
    width: 16px;
    height: 16px;
    stroke: var(--twilight-pink);
    fill: var(--twilight-pink);
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

/* Nebula overlay for depth */
.nebula-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        radial-gradient(circle at 10% 20%, var(--twilight-purple) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, var(--twilight-pink) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, var(--twilight-mauve) 0%, transparent 60%);
    opacity: 0.08;
    animation: nebula-drift 40s ease-in-out infinite;
    pointer-events: none;
}

@keyframes nebula-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.03); }
}

/* ========================================
   RESPONSIVE NAVIGATION
   ======================================== */

@media (max-width: 1200px) {
    .nav-links a span {
        display: none;
    }
    
    .nav-links a {
        padding: 0.6rem;
    }
    
    .nav-links a svg {
        width: 20px;
        height: 20px;
    }
    
    .dropdown-arrow {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-nav h5 {
        justify-content: center;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    footer {
        padding: 3rem 1.5rem 2rem;
    }
}

/* ========================================
   HOMEPAGE FEATURE CARDS (Prismatic Style)
   ======================================== */

/* Feature card color variants */
.feature-card[data-color="magenta"]:hover {
    border-color: var(--prism-magenta);
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.3);
}

.feature-card[data-color="magenta"] .feature-icon svg {
    stroke: var(--prism-magenta);
}

.feature-card[data-color="cyan"]:hover {
    border-color: var(--prism-cyan);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.3);
}

.feature-card[data-color="cyan"] .feature-icon svg {
    stroke: var(--prism-cyan);
}

.feature-card[data-color="yellow"]:hover {
    border-color: var(--prism-yellow);
    box-shadow: 0 20px 60px rgba(255, 234, 0, 0.3);
}

.feature-card[data-color="yellow"] .feature-icon svg {
    stroke: var(--prism-yellow);
}

.feature-card[data-color="purple"]:hover {
    border-color: var(--prism-purple);
    box-shadow: 0 20px 60px rgba(199, 36, 177, 0.3);
}

.feature-card[data-color="purple"] .feature-icon svg {
    stroke: var(--prism-purple);
}

.feature-card[data-color="lime"]:hover {
    border-color: var(--prism-lime);
    box-shadow: 0 20px 60px rgba(57, 255, 20, 0.3);
}

.feature-card[data-color="lime"] .feature-icon svg {
    stroke: var(--prism-lime);
}

.feature-card[data-color="orange"]:hover {
    border-color: var(--prism-orange);
    box-shadow: 0 20px 60px rgba(255, 103, 0, 0.3);
}

.feature-card[data-color="orange"] .feature-icon svg {
    stroke: var(--prism-orange);
}

/* Feature icon with Lucide */
.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
    animation: float 6s ease-in-out infinite;
}

/* Feature link with icon */
.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--twilight-coral);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.feature-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.feature-link:hover {
    color: var(--twilight-pink);
}

.feature-link:hover svg {
    transform: translateX(5px);
}

/* ========================================
   LATEST POSTS SECTION
   ======================================== */

.latest-posts {
    position: relative;
    z-index: 1;
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.post-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--twilight-pink), var(--twilight-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.post-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Post card color variants */
.post-card[data-color="magenta"]:hover { border-color: var(--prism-magenta); }
.post-card[data-color="magenta"]:hover::before { background: var(--prism-magenta); }

.post-card[data-color="cyan"]:hover { border-color: var(--prism-cyan); }
.post-card[data-color="cyan"]:hover::before { background: var(--prism-cyan); }

.post-card[data-color="yellow"]:hover { border-color: var(--prism-yellow); }
.post-card[data-color="yellow"]:hover::before { background: var(--prism-yellow); }

.post-card[data-color="purple"]:hover { border-color: var(--prism-purple); }
.post-card[data-color="purple"]:hover::before { background: var(--prism-purple); }

.post-card[data-color="lime"]:hover { border-color: var(--prism-lime); }
.post-card[data-color="lime"]:hover::before { background: var(--prism-lime); }

.post-card[data-color="orange"]:hover { border-color: var(--prism-orange); }
.post-card[data-color="orange"]:hover::before { background: var(--prism-orange); }

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.post-meta time {
    color: rgba(255, 255, 255, 0.5);
}

.post-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--twilight-coral);
}

.post-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.post-card h3 a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.post-card h3 a:hover {
    color: var(--twilight-pink);
}

.post-card > p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--twilight-coral);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.read-more svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}

.read-more:hover {
    color: var(--twilight-pink);
}

.read-more:hover svg {
    transform: translateX(5px);
}

.view-all-cta {
    text-align: center;
}

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

@media (max-width: 700px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .latest-posts {
        padding: 4rem 1.5rem;
    }
}

/* ========================================
   PROJECTS PAGE STYLES
   ======================================== */

.projects-stats {
    margin: 0;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.projects-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Featured Project - 25cent.cloud */
.featured-project {
    margin-bottom: 4rem;
}

.featured-project-link {
    display: block;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.1) 0%, rgba(0, 245, 255, 0.1) 100%);
    border: 2px solid rgba(57, 255, 20, 0.3);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.featured-project-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, var(--prism-lime) 0%, transparent 50%);
    opacity: 0.05;
    transition: opacity 0.4s;
}

.featured-project-link:hover {
    border-color: var(--prism-lime);
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(57, 255, 20, 0.3);
}

.featured-project-link:hover::before {
    opacity: 0.15;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--prism-lime), var(--prism-cyan));
    color: var(--dark-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.featured-badge svg {
    width: 16px;
    height: 16px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 20px rgba(57, 255, 20, 0.5); }
    50% { opacity: 0.9; box-shadow: 0 0 40px rgba(57, 255, 20, 0.8); }
}

.featured-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--prism-lime), var(--prism-cyan));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.featured-icon svg {
    width: 80px;
    height: 80px;
    stroke: var(--dark-bg);
    stroke-width: 1.5;
}

.featured-info h2 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--prism-lime), var(--prism-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured-tagline {
    font-size: 1.3rem;
    color: var(--prism-lime);
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.featured-tech {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.featured-tech .tech-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 8px;
    color: var(--prism-lime);
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-tech .tech-tag svg {
    width: 14px;
    height: 14px;
}

.launch-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--prism-lime), var(--prism-cyan));
    color: var(--dark-bg);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    transition: all 0.3s;
}

.launch-btn svg {
    width: 18px;
    height: 18px;
}

.featured-project-link:hover .launch-btn {
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.5);
}

/* Apps Grid */
.apps-section {
    margin-top: 4rem;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
}

a.app-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.app-preview {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.app-card[data-color="cyan"] .app-preview {
    background: linear-gradient(135deg, var(--prism-cyan), var(--prism-blue));
}

.app-card[data-color="purple"] .app-preview {
    background: linear-gradient(135deg, var(--prism-purple), var(--prism-magenta));
}

.app-card[data-color="orange"] .app-preview {
    background: linear-gradient(135deg, var(--prism-orange), var(--prism-yellow));
}

.app-card[data-color="magenta"] .app-preview {
    background: linear-gradient(135deg, var(--prism-magenta), var(--prism-purple));
}

.app-card[data-color="yellow"] .app-preview {
    background: linear-gradient(135deg, var(--prism-yellow), var(--prism-lime));
}

.live-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    background: var(--prism-lime);
    color: var(--dark-bg);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    animation: pulse 2s ease-in-out infinite;
}

.live-badge svg {
    width: 12px;
    height: 12px;
}

.app-icon svg {
    width: 64px;
    height: 64px;
    stroke: white;
    stroke-width: 1.5;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.app-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.app-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--twilight-coral);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    width: fit-content;
    border-radius: 5px;
}

.app-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.app-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.app-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tech-tag {
    padding: 0.25rem 0.6rem;
    background: rgba(0, 245, 255, 0.1);
    color: var(--prism-cyan);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 4px;
}

.app-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--twilight-coral);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.app-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.app-card:hover .app-link {
    color: var(--twilight-pink);
}

.app-card:hover .app-link svg {
    transform: translateX(5px);
}

/* ========================================
   ASYMMETRIC BLOG GRID
   ======================================== */

.blog-grid-asymmetric {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--twilight-pink), var(--twilight-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Size variants */
.blog-card-large {
    grid-column: span 6;
}

.blog-card-medium {
    grid-column: span 4;
}

.blog-card-small {
    grid-column: span 3;
}

/* Color variants */
.blog-card[data-color="magenta"]:hover {
    border-color: var(--prism-magenta);
}
.blog-card[data-color="magenta"]::before {
    background: var(--prism-magenta);
}

.blog-card[data-color="cyan"]:hover {
    border-color: var(--prism-cyan);
}
.blog-card[data-color="cyan"]::before {
    background: var(--prism-cyan);
}

.blog-card[data-color="yellow"]:hover {
    border-color: var(--prism-yellow);
}
.blog-card[data-color="yellow"]::before {
    background: var(--prism-yellow);
}

.blog-card[data-color="purple"]:hover {
    border-color: var(--prism-purple);
}
.blog-card[data-color="purple"]::before {
    background: var(--prism-purple);
}

.blog-card[data-color="lime"]:hover {
    border-color: var(--prism-lime);
}
.blog-card[data-color="lime"]::before {
    background: var(--prism-lime);
}

.blog-card[data-color="orange"]:hover {
    border-color: var(--prism-orange);
}
.blog-card[data-color="orange"]::before {
    background: var(--prism-orange);
}

.blog-card-inner {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.blog-card-meta time {
    color: rgba(255, 255, 255, 0.5);
}

.blog-card-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--twilight-coral);
}

.blog-card h3 {
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card-large h3 {
    font-size: 1.6rem;
}

.blog-card-medium h3 {
    font-size: 1.3rem;
}

.blog-card-small h3 {
    font-size: 1.1rem;
}

.blog-card h3 a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h3 a:hover {
    color: var(--twilight-pink);
}

.blog-card-excerpt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--twilight-coral);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin-top: auto;
}

.blog-card-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}

.blog-card-link:hover {
    color: var(--twilight-pink);
}

.blog-card-link:hover svg {
    transform: translateX(5px);
}

/* Responsive asymmetric grid */
@media (max-width: 1100px) {
    .blog-card-large,
    .blog-card-medium {
        grid-column: span 6;
    }
    
    .blog-card-small {
        grid-column: span 6;
    }
}

@media (max-width: 700px) {
    .blog-card-large,
    .blog-card-medium,
    .blog-card-small {
        grid-column: span 12;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .featured-icon {
        margin: 0 auto 2rem;
    }
    
    .featured-info h2 {
        font-size: 2.5rem;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   THIN NAVIGATION - UPDATED
   ======================================== */

nav.nav-thin {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

nav.nav-thin .nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav.nav-thin .logo {
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(90deg, 
        var(--prism-magenta), 
        var(--prism-cyan), 
        var(--prism-yellow), 
        var(--prism-lime));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: rainbow-flow 8s linear infinite;
    text-decoration: none;
}

nav.nav-thin .nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav.nav-thin .nav-links li {
    margin: 0;
}

nav.nav-thin .nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    padding: 0.25rem 0;
    position: relative;
}

nav.nav-thin .nav-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--prism-magenta), var(--prism-cyan));
    transform: scaleX(0);
    transition: transform 0.3s;
}

nav.nav-thin .nav-links a:hover,
nav.nav-thin .nav-links a.active {
    color: var(--white);
}

nav.nav-thin .nav-links a:hover::before,
nav.nav-thin .nav-links a.active::before {
    transform: scaleX(1);
}

nav.nav-thin .nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

nav.nav-thin .nav-actions button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

nav.nav-thin .nav-actions button:hover {
    color: var(--prism-cyan);
}

nav.nav-thin .nav-actions button svg {
    width: 18px;
    height: 18px;
}

/* Update hero margin for thinner nav */
.hero {
    margin-top: 50px;
}

/* ========================================
   LARGE FEATURE ICONS (EMOJI STYLE)
   ======================================== */

.feature-icon-large {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(255, 0, 128, 0.3));
}

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

.feature-card[data-color="magenta"] .feature-icon-large { filter: drop-shadow(0 10px 30px rgba(255, 0, 128, 0.4)); }
.feature-card[data-color="cyan"] .feature-icon-large { filter: drop-shadow(0 10px 30px rgba(0, 245, 255, 0.4)); }
.feature-card[data-color="yellow"] .feature-icon-large { filter: drop-shadow(0 10px 30px rgba(255, 234, 0, 0.4)); }
.feature-card[data-color="purple"] .feature-icon-large { filter: drop-shadow(0 10px 30px rgba(199, 36, 177, 0.4)); }
.feature-card[data-color="lime"] .feature-icon-large { filter: drop-shadow(0 10px 30px rgba(57, 255, 20, 0.4)); }
.feature-card[data-color="orange"] .feature-icon-large { filter: drop-shadow(0 10px 30px rgba(255, 103, 0, 0.4)); }

/* ========================================
   SCROLLING MARQUEE - NEWS & UPDATES
   ======================================== */

.marquee-section {
    position: relative;
    z-index: 1;
    margin: 4rem 0;
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 4rem;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.marquee-item {
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

/* ========================================
   PRISMATIC BLOG GRID - FULL WIDTH
   ======================================== */

.blog-container-full {
    width: 100%;
    padding: 0 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.blog-grid-prismatic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.blog-card-prismatic {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

/* Sweep reflection effect */
.blog-card-prismatic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.15), 
        transparent);
    transition: left 0.5s;
    z-index: 2;
}

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

.blog-card-prismatic:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* Card reflection at bottom */
.card-reflection {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
}

/* Size variants - matching prismatic-blog-list */
.blog-card-6 { grid-column: span 6; }
.blog-card-4 { grid-column: span 4; }
.blog-card-8 { grid-column: span 8; }
.blog-card-7 { grid-column: span 7; }
.blog-card-5 { grid-column: span 5; }

/* Color variants with matching border outline on hover */
.card-magenta { 
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.08), transparent);
    --card-accent: var(--prism-magenta);
}
.card-magenta .blog-category {
    background: var(--prism-magenta);
}
.card-magenta:hover { 
    border-color: var(--prism-magenta);
    box-shadow: 
        0 0 0 2px var(--prism-magenta),
        0 25px 60px rgba(255, 0, 128, 0.4),
        inset 0 0 30px rgba(255, 0, 128, 0.1);
}

.card-cyan { 
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.08), transparent);
    --card-accent: var(--prism-cyan);
}
.card-cyan .blog-category {
    background: var(--prism-cyan);
    color: var(--dark-bg);
}
.card-cyan:hover { 
    border-color: var(--prism-cyan);
    box-shadow: 
        0 0 0 2px var(--prism-cyan),
        0 25px 60px rgba(0, 245, 255, 0.4),
        inset 0 0 30px rgba(0, 245, 255, 0.1);
}

.card-yellow { 
    background: linear-gradient(135deg, rgba(255, 234, 0, 0.08), transparent);
    --card-accent: var(--prism-yellow);
}
.card-yellow .blog-category {
    background: var(--prism-yellow);
    color: var(--dark-bg);
}
.card-yellow:hover { 
    border-color: var(--prism-yellow);
    box-shadow: 
        0 0 0 2px var(--prism-yellow),
        0 25px 60px rgba(255, 234, 0, 0.4),
        inset 0 0 30px rgba(255, 234, 0, 0.1);
}

.card-lime { 
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.08), transparent);
    --card-accent: var(--prism-lime);
}
.card-lime .blog-category {
    background: var(--prism-lime);
    color: var(--dark-bg);
}
.card-lime:hover { 
    border-color: var(--prism-lime);
    box-shadow: 
        0 0 0 2px var(--prism-lime),
        0 25px 60px rgba(57, 255, 20, 0.4),
        inset 0 0 30px rgba(57, 255, 20, 0.1);
}

.card-orange { 
    background: linear-gradient(135deg, rgba(255, 103, 0, 0.08), transparent);
    --card-accent: var(--prism-orange);
}
.card-orange .blog-category {
    background: var(--prism-orange);
    color: var(--dark-bg);
}
.card-orange:hover { 
    border-color: var(--prism-orange);
    box-shadow: 
        0 0 0 2px var(--prism-orange),
        0 25px 60px rgba(255, 103, 0, 0.4),
        inset 0 0 30px rgba(255, 103, 0, 0.1);
}

.card-purple { 
    background: linear-gradient(135deg, rgba(199, 36, 177, 0.08), transparent);
    --card-accent: var(--prism-purple);
}
.card-purple .blog-category {
    background: var(--prism-purple);
}
.card-purple:hover { 
    border-color: var(--prism-purple);
    box-shadow: 
        0 0 0 2px var(--prism-purple),
        0 25px 60px rgba(199, 36, 177, 0.4),
        inset 0 0 30px rgba(199, 36, 177, 0.1);
}

.blog-card-prismatic .blog-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.card-magenta .blog-category { background: var(--prism-magenta); color: white; }
.card-cyan .blog-category { background: var(--prism-cyan); color: var(--dark-bg); }
.card-yellow .blog-category { background: var(--prism-yellow); color: var(--dark-bg); }
.card-lime .blog-category { background: var(--prism-lime); color: var(--dark-bg); }
.card-orange .blog-category { background: var(--prism-orange); color: white; }
.card-purple .blog-category { background: var(--prism-purple); color: white; }

.blog-card-prismatic h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.2;
    color: var(--white);
}

.blog-card-prismatic .blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.blog-card-prismatic p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-card-prismatic .read-more {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 3;
}

.blog-card-prismatic .read-more:hover {
    color: var(--prism-cyan);
    gap: 1rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.page-btn {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-btn:hover, .page-btn.active {
    background: var(--prism-cyan);
    border-color: var(--prism-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

/* ========================================
   APPS GRID - ASYMMETRIC BLOCKS
   ======================================== */

.apps-grid-asymmetric {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.app-card-block {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    text-decoration: none;
    color: inherit;
    display: block;
}

.app-card-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.15), 
        transparent);
    transition: left 0.5s;
    z-index: 2;
}

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

.app-card-block:hover {
    transform: translateY(-10px);
}

.app-block-large { grid-column: span 7; }
.app-block-medium { grid-column: span 5; }
.app-block-small { grid-column: span 4; }

.app-card-block[data-color="cyan"] { 
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.08), transparent);
}
.app-card-block[data-color="cyan"]:hover { 
    border-color: var(--prism-cyan);
    box-shadow: 0 25px 60px rgba(0, 245, 255, 0.3);
}

.app-card-block[data-color="purple"] { 
    background: linear-gradient(135deg, rgba(199, 36, 177, 0.08), transparent);
}
.app-card-block[data-color="purple"]:hover { 
    border-color: var(--prism-purple);
    box-shadow: 0 25px 60px rgba(199, 36, 177, 0.3);
}

.app-card-block[data-color="orange"] { 
    background: linear-gradient(135deg, rgba(255, 103, 0, 0.08), transparent);
}
.app-card-block[data-color="orange"]:hover { 
    border-color: var(--prism-orange);
    box-shadow: 0 25px 60px rgba(255, 103, 0, 0.3);
}

.app-card-block[data-color="magenta"] { 
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.08), transparent);
}
.app-card-block[data-color="magenta"]:hover { 
    border-color: var(--prism-magenta);
    box-shadow: 0 25px 60px rgba(255, 0, 128, 0.3);
}

.app-card-block[data-color="yellow"] { 
    background: linear-gradient(135deg, rgba(255, 234, 0, 0.08), transparent);
}
.app-card-block[data-color="yellow"]:hover { 
    border-color: var(--prism-yellow);
    box-shadow: 0 25px 60px rgba(255, 234, 0, 0.3);
}

.app-block-inner {
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.app-block-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.app-block-inner h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--white);
}

.app-block-inner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.app-block-inner .app-link {
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-block;
}

.app-card-block:hover .app-link {
    color: var(--prism-cyan);
}

/* Featured Icon in projects - large emoji style */
.featured-icon {
    font-size: 6rem !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   PAGE HEADER ADJUSTMENTS
   ======================================== */

.page-header {
    margin-top: 60px;
    padding: 5rem 3rem 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, 
        var(--prism-magenta), 
        var(--prism-cyan), 
        var(--prism-yellow));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
    animation: rainbow-flow 8s linear infinite;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   RESPONSIVE - THIN NAV + GRIDS
   ======================================== */

@media (max-width: 1200px) {
    .blog-card-6, .blog-card-7, .blog-card-8 { grid-column: span 6; }
    .blog-card-4, .blog-card-5 { grid-column: span 6; }
    
    .app-block-large { grid-column: span 6; }
    .app-block-medium { grid-column: span 6; }
    .app-block-small { grid-column: span 6; }
}

@media (max-width: 968px) {
    nav.nav-thin .nav-links {
        display: none;
    }
    
    nav.nav-thin .mobile-toggle {
        display: flex;
    }
    
    .blog-card-6, .blog-card-4, .blog-card-8, 
    .blog-card-7, .blog-card-5 {
        grid-column: span 12;
    }
    
    .app-block-large, .app-block-medium, .app-block-small {
        grid-column: span 12;
    }
    
    .feature-icon-large {
        font-size: 4rem;
    }
}

/* ========================================
   MOBILE PRISMATIC BLOG GRID - MOSAIC TILES
   (Styles consolidated in main 768px media query above)
   ======================================== */

@media (max-width: 600px) {
    nav.nav-thin .nav-container {
        padding: 0.5rem 1rem;
    }
    
    nav.nav-thin .logo {
        font-size: 1.1rem;
    }
    
    .marquee-item {
        font-size: 0.85rem;
    }
}

/* Featured Project Logo Styling */
.featured-project {
    padding: 0 2rem;
    margin-bottom: 4rem;
}

.featured-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.08) 0%, rgba(0, 245, 255, 0.08) 100%);
    border: 2px solid rgba(57, 255, 20, 0.3);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.featured-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, var(--prism-lime) 0%, transparent 60%);
    opacity: 0.05;
    animation: shimmer 8s ease-in-out infinite;
}

.featured-inner:hover {
    border-color: var(--prism-lime);
    box-shadow: 0 30px 80px rgba(57, 255, 20, 0.2);
}

.featured-logo-wrapper {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 24px;
    padding: 1rem;
    animation: float 6s ease-in-out infinite;
}

.featured-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.3));
}

.featured-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--prism-lime), var(--prism-cyan));
    color: var(--dark-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
    animation: pulse 2s ease-in-out infinite;
}

.featured-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    background: linear-gradient(90deg, var(--prism-lime), var(--prism-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.featured-description strong em {
    color: var(--prism-lime);
    font-style: italic;
}

.featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--prism-lime), var(--prism-cyan));
    color: var(--dark-bg);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
}

.featured-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(57, 255, 20, 0.4);
}

.featured-btn svg {
    width: 18px;
    height: 18px;
}

/* Blog Card Image Support */
.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
}

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

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

/* Responsive Featured Section */
@media (max-width: 768px) {
    .featured-inner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .featured-logo-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .featured-title {
        font-size: 2rem;
    }
    
    .featured-badge,
    .featured-btn {
        margin: 0 auto;
    }
    
    .featured-description {
        text-align: center;
    }
}

/* ===== Guides Page Styles ===== */
.guides-hero {
    padding: 8rem 2rem 4rem;
    position: relative;
}

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

.guides-hero-content {
    flex: 1;
}

.guides-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--prism-yellow), var(--prism-orange));
    color: var(--dark-bg);
    border-radius: 30px;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.guides-hero-visual {
    flex-shrink: 0;
}

.floating-icons {
    display: flex;
    gap: 1.5rem;
}

.float-icon {
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

/* Guide Categories */
.guide-categories {
    padding: 4rem 2rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-category-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.guide-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--prism-magenta);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.guide-category-card[data-color="magenta"]::before { background: var(--prism-magenta); }
.guide-category-card[data-color="cyan"]::before { background: var(--prism-cyan); }
.guide-category-card[data-color="yellow"]::before { background: var(--prism-yellow); }
.guide-category-card[data-color="lime"]::before { background: var(--prism-lime); }
.guide-category-card[data-color="orange"]::before { background: var(--prism-orange); }
.guide-category-card[data-color="purple"]::before { background: var(--prism-purple); }

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

.guide-category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guide-category-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.guide-category-card > p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.guide-list {
    list-style: none;
    padding: 0;
}

.guide-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.guide-list li:last-child {
    border-bottom: none;
}

.guide-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guide-list a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s ease;
}

.guide-list a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.guide-list a:hover {
    color: var(--white);
    padding-left: 1rem;
}

/* Featured Guides */
.featured-guides {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
}

.featured-guide-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.featured-guide {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.featured-guide::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--prism-magenta);
}

.featured-guide[data-color="magenta"]::before { background: var(--prism-magenta); }
.featured-guide[data-color="cyan"]::before { background: var(--prism-cyan); }
.featured-guide[data-color="purple"]::before { background: var(--prism-purple); }

.featured-guide:hover {
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.guide-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.guide-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.guide-content > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.guide-meta {
    display: flex;
    gap: 1.5rem;
}

.guide-time,
.guide-level {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.guide-link {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--prism-magenta), var(--prism-purple));
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.guide-link:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
}

/* All Guides Section */
.all-guides {
    padding: 4rem 2rem;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.empty-state p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

/* Guides CTA */
.guides-cta {
    padding: 4rem 2rem;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(0, 245, 255, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    animation: rotate 20s linear infinite;
}

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

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    position: relative;
}

.cta-box .prism-btn {
    position: relative;
}

/* Responsive Guides */
@media (max-width: 768px) {
    .guides-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-icons {
        margin-top: 2rem;
    }
    
    /* Category cards - horizontal scroll on mobile */
    .category-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 1rem;
        padding: 1rem 0.5rem 1.5rem;
    }
    
    .category-grid::-webkit-scrollbar {
        display: none;
    }
    
    .guide-category-card {
        flex: 0 0 85vw;
        max-width: 85vw;
        scroll-snap-align: center;
        padding: 1.5rem;
    }
    
    .guide-category-card h3 {
        font-size: 1.3rem;
    }
    
    .guide-category-card .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .guide-list {
        font-size: 0.9rem;
    }
    
    .guide-list li {
        padding: 0.5rem 0;
    }
    
    /* Featured guides - compact cards */
    .featured-guide-list {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .featured-guide-list::-webkit-scrollbar {
        display: none;
    }
    
    .featured-guide {
        flex: 0 0 80vw;
        max-width: 80vw;
        scroll-snap-align: center;
        padding: 1.25rem;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        text-align: left;
    }
    
    .guide-number {
        font-size: 1.5rem;
    }
    
    .featured-guide h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .featured-guide p {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .guide-meta {
        justify-content: flex-start;
        font-size: 0.75rem;
        gap: 0.75rem;
    }
    
    .guide-link {
        justify-self: start;
        font-size: 0.85rem;
    }
    
    /* Guides hero - compact */
    .guides-hero-prismatic {
        padding: 5rem 1rem 2rem;
    }
    
    .guides-title-block h1 {
        font-size: 2.5rem;
    }
    
    .guides-tagline {
        font-size: 0.9rem;
    }
    
    /* Category blocks in hero - horizontal scroll */
    .guides-category-blocks {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0.75rem;
        padding: 0.5rem;
    }
    
    .guides-category-blocks::-webkit-scrollbar {
        display: none;
    }
    
    .category-block {
        flex: 0 0 auto;
        min-width: 100px;
        scroll-snap-align: start;
        padding: 0.75rem;
    }
    
    .category-block i {
        width: 24px;
        height: 24px;
    }
    
    .category-block span {
        font-size: 0.7rem;
    }
    
    /* Stats block */
    .guides-stats-block {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* ===== Electric/Static Effects for Feature Cards ===== */

/* Gentle breathing glow animation */
@keyframes gentle-breathe {
    0%, 100% {
        box-shadow: 
            0 0 8px rgba(255, 255, 255, 0.05),
            0 0 15px var(--card-color),
            inset 0 0 3px rgba(255, 255, 255, 0.05);
    }
    50% {
        box-shadow: 
            0 0 15px rgba(255, 255, 255, 0.1),
            0 0 30px var(--card-color),
            inset 0 0 8px rgba(255, 255, 255, 0.08);
    }
}

/* Static flicker effect */
@keyframes static-flicker {
    0%, 100% { opacity: 1; }
    10% { opacity: 0.95; }
    20% { opacity: 1; }
    30% { opacity: 0.9; }
    40% { opacity: 1; }
    50% { opacity: 0.97; }
    60% { opacity: 1; }
    70% { opacity: 0.85; }
    75% { opacity: 1; }
    80% { opacity: 0.92; }
    90% { opacity: 1; }
}

/* Electricity arc animation */
@keyframes electricity-arc {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(15deg);
    }
    100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
}

/* Cascade reveal for cards */
@keyframes cascade-glow {
    0%, 16.66% {
        --active: 1;
    }
    16.67%, 100% {
        --active: 0;
    }
}

/* Feature card electricity styling */
.feature-card {
    --card-color: var(--prism-magenta);
    position: relative;
    overflow: hidden;
}

.feature-card[data-color="magenta"] { --card-color: var(--prism-magenta); }
.feature-card[data-color="cyan"] { --card-color: var(--prism-cyan); }
.feature-card[data-color="yellow"] { --card-color: var(--prism-yellow); }
.feature-card[data-color="purple"] { --card-color: var(--prism-purple); }
.feature-card[data-color="lime"] { --card-color: var(--prism-lime); }
.feature-card[data-color="orange"] { --card-color: var(--prism-orange); }

/* Staggered gentle breathing animation */
.feature-card:nth-child(1) { animation: gentle-breathe 6s ease-in-out infinite 0s; }
.feature-card:nth-child(2) { animation: gentle-breathe 6s ease-in-out infinite 1s; }
.feature-card:nth-child(3) { animation: gentle-breathe 6s ease-in-out infinite 2s; }
.feature-card:nth-child(4) { animation: gentle-breathe 6s ease-in-out infinite 3s; }
.feature-card:nth-child(5) { animation: gentle-breathe 6s ease-in-out infinite 4s; }
.feature-card:nth-child(6) { animation: gentle-breathe 6s ease-in-out infinite 5s; }

/* Electric border effect */
.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--card-color),
        transparent,
        var(--card-color),
        transparent
    );
    background-size: 400% 100%;
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    animation: electricity-arc 3s linear infinite;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

/* Inner glow overlay - full card highlight on hover */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    border-radius: 16px;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--card-color);
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px color-mix(in srgb, var(--card-color) 30%, transparent);
}

/* Electric sparks on corners */
.feature-card .electric-spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px var(--card-color), 0 0 20px var(--card-color);
}

.feature-card .electric-spark:nth-child(1) { top: 10%; left: 10%; }
.feature-card .electric-spark:nth-child(2) { top: 10%; right: 10%; }
.feature-card .electric-spark:nth-child(3) { bottom: 10%; left: 10%; }
.feature-card .electric-spark:nth-child(4) { bottom: 10%; right: 10%; }

.feature-card:hover .electric-spark {
    animation: spark-flash 0.3s ease-in-out infinite alternate;
}

@keyframes spark-flash {
    0% { opacity: 0; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
    100% { opacity: 0.5; transform: scale(1); }
}

/* Hero subtitle star styling */
.hero-subtitle .star {
    display: inline-block;
    color: var(--prism-yellow);
    animation: star-twinkle 2s ease-in-out infinite;
    margin: 0 0.5rem;
}

@keyframes star-twinkle {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg);
        text-shadow: 0 0 10px var(--prism-yellow);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.2) rotate(15deg);
        text-shadow: 0 0 20px var(--prism-yellow), 0 0 30px var(--prism-orange);
    }
}

/* Cascade reflection effect for category cards */
.feature-grid {
    --reflection-delay: 0s;
}

.feature-card {
    position: relative;
}

/* Sweep reflection that cascades across cards */
.feature-card .card-sweep {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-20deg);
    pointer-events: none;
    border-radius: 16px;
}

/* Cascade animation - cards take turns (slow elegant sweep) */
.feature-card:nth-child(1) .card-sweep { animation: sweep-across 24s ease-in-out infinite 0s; }
.feature-card:nth-child(2) .card-sweep { animation: sweep-across 24s ease-in-out infinite 4s; }
.feature-card:nth-child(3) .card-sweep { animation: sweep-across 24s ease-in-out infinite 8s; }
.feature-card:nth-child(4) .card-sweep { animation: sweep-across 24s ease-in-out infinite 12s; }
.feature-card:nth-child(5) .card-sweep { animation: sweep-across 24s ease-in-out infinite 16s; }
.feature-card:nth-child(6) .card-sweep { animation: sweep-across 24s ease-in-out infinite 20s; }

@keyframes sweep-across {
    0%, 5% { left: -100%; opacity: 0; }
    8% { opacity: 0.8; }
    20% { left: 200%; opacity: 0.8; }
    23%, 100% { left: 200%; opacity: 0; }
}

/* Power surge effect - random card highlights */
@keyframes power-surge {
    0%, 100% { 
        filter: brightness(1);
        transform: scale(1);
    }
    5% {
        filter: brightness(1.3);
        transform: scale(1.02);
    }
    10% {
        filter: brightness(1);
        transform: scale(1);
    }
}

/* Gentle breathing only - no power surge shake */
.feature-card:nth-child(1) { animation: gentle-breathe 6s ease-in-out infinite 0s; }
.feature-card:nth-child(2) { animation: gentle-breathe 6s ease-in-out infinite 1s; }
.feature-card:nth-child(3) { animation: gentle-breathe 6s ease-in-out infinite 2s; }
.feature-card:nth-child(4) { animation: gentle-breathe 6s ease-in-out infinite 3s; }
.feature-card:nth-child(5) { animation: gentle-breathe 6s ease-in-out infinite 4s; }
.feature-card:nth-child(6) { animation: gentle-breathe 6s ease-in-out infinite 5s; }

/* Smooth text glow on hover */
.feature-card:hover h3 {
    text-shadow: 0 0 20px var(--card-color);
    transition: text-shadow 0.3s ease;
}

/* ===== Blog Page Hero & Category Showcase ===== */
.blog-hero {
    padding: 8rem 2rem 3rem;
    text-align: center;
}

.blog-hero .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Category Showcase - Floating Orbs */
.category-showcase {
    padding: 2rem 2rem 4rem;
}

.category-showcase .container {
    max-width: 1200px;
    margin: 0 auto;
}

.category-orbit {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.category-orb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    min-width: 120px;
}

.category-orb[data-color="cyan"] { --orb-color: var(--prism-cyan); }
.category-orb[data-color="purple"] { --orb-color: var(--prism-purple); }
.category-orb[data-color="orange"] { --orb-color: var(--prism-orange); }
.category-orb[data-color="lime"] { --orb-color: var(--prism-lime); }
.category-orb[data-color="magenta"] { --orb-color: var(--prism-magenta); }
.category-orb[data-color="yellow"] { --orb-color: var(--prism-yellow); }

.category-orb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--orb-color) 0%, transparent 70%);
    opacity: 0.1;
    transition: opacity 0.4s ease;
}

.category-orb:hover::before {
    opacity: 0.25;
}

.category-orb:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--orb-color);
    box-shadow: 
        0 0 0 2px var(--orb-color),
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px color-mix(in srgb, var(--orb-color) 30%, transparent);
}

.orb-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px var(--orb-color));
    transition: transform 0.3s ease;
}

.category-orb:hover .orb-icon {
    transform: scale(1.2);
}

.orb-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.orb-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: var(--orb-color);
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-orb:hover .orb-glow {
    opacity: 0.5;
}

.orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border: 2px solid var(--orb-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.category-orb:hover .orb-ring {
    width: 150%;
    height: 150%;
    opacity: 0.3;
}

/* Filter Section */
.filter-section {
    padding: 0 2rem 3rem;
}

.filter-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.filter-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tag {
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-tag:hover,
.filter-tag.active {
    background: linear-gradient(135deg, var(--prism-magenta), var(--prism-purple));
    border-color: transparent;
    color: white;
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.3);
}

/* Blog Content Section */
.blog-content {
    padding: 0 2rem 4rem;
}

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

/* Responsive */
@media (max-width: 768px) {
    .blog-hero {
        padding: 6rem 1rem 2rem;
    }
    
    .category-orbit {
        gap: 1rem;
    }
    
    .category-orb {
        min-width: 100px;
        padding: 1rem 1.5rem;
    }
    
    .orb-icon {
        font-size: 2rem;
    }
    
    .orb-label {
        font-size: 0.75rem;
    }
    
    .filter-tags {
        gap: 0.5rem;
    }
    
    .filter-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* ===== Blog Page Hero & Category Showcase ===== */
.blog-hero {
    padding: 8rem 2rem 3rem;
    text-align: center;
}

.blog-hero .container {
    max-width: 800px;
    margin: 0 auto;
}

/* Category Showcase - Orbital Layout */
.category-showcase {
    padding: 2rem 2rem 4rem;
}

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

.category-orbit {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.category-orb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    min-width: 120px;
}

.category-orb[data-color="cyan"] { --orb-color: var(--prism-cyan); }
.category-orb[data-color="purple"] { --orb-color: var(--prism-purple); }
.category-orb[data-color="orange"] { --orb-color: var(--prism-orange); }
.category-orb[data-color="lime"] { --orb-color: var(--prism-lime); }
.category-orb[data-color="magenta"] { --orb-color: var(--prism-magenta); }
.category-orb[data-color="yellow"] { --orb-color: var(--prism-yellow); }

.category-orb:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--orb-color);
    box-shadow: 
        0 0 0 2px var(--orb-color),
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px color-mix(in srgb, var(--orb-color) 30%, transparent);
}

.orb-icon {
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.category-orb:hover .orb-icon {
    transform: scale(1.2);
}

.orb-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.category-orb:hover .orb-label {
    opacity: 1;
    color: var(--orb-color);
}

.orb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: var(--orb-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    filter: blur(30px);
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.category-orb:hover .orb-glow {
    opacity: 0.3;
}

.orb-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--orb-color);
    border-radius: 24px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s ease;
    pointer-events: none;
}

.category-orb:hover .orb-ring {
    opacity: 0.5;
    transform: scale(1);
}

/* Filter Section */
.filter-section {
    padding: 1rem 2rem 2rem;
}

.filter-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.filter-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-tag {
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--prism-magenta);
    border-color: var(--prism-magenta);
    color: white;
}

/* Blog Content Section */
.blog-content {
    padding: 2rem 2rem 4rem;
}

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

/* Responsive */
@media (max-width: 768px) {
    .category-orbit {
        gap: 1rem;
    }
    
    .category-orb {
        min-width: 100px;
        padding: 1rem 1.5rem;
    }
    
    .orb-icon {
        font-size: 2rem;
    }
    
    .orb-label {
        font-size: 0.75rem;
    }
}

/* ===== Blog Page - Square Theme ===== */
.page-header {
    margin-top: 80px;
    padding: 6rem 3rem 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, 
        var(--prism-magenta), 
        var(--prism-cyan), 
        var(--prism-yellow));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
    animation: rainbow-flow 8s linear infinite;
}

.page-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Filter Tags - Square Style */
.filter-section {
    position: relative;
    z-index: 1;
    padding: 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.filter-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tag {
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 !important;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-tag:hover, .filter-tag.active {
    background: var(--prism-magenta);
    border-color: var(--prism-magenta);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

/* Blog Grid - Square Cards */
.blog-content {
    padding: 2rem 3rem 4rem;
}

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

.blog-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    border-radius: 0 !important;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.blog-card::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.5s;
}

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

.blog-card:hover {
    transform: translateY(-10px);
}

/* Card Color Variants */
.blog-card.card-magenta { background: linear-gradient(135deg, rgba(255, 0, 128, 0.08), transparent); }
.blog-card.card-cyan { background: linear-gradient(135deg, rgba(0, 245, 255, 0.08), transparent); }
.blog-card.card-yellow { background: linear-gradient(135deg, rgba(255, 234, 0, 0.08), transparent); }
.blog-card.card-lime { background: linear-gradient(135deg, rgba(57, 255, 20, 0.08), transparent); }
.blog-card.card-orange { background: linear-gradient(135deg, rgba(255, 103, 0, 0.08), transparent); }
.blog-card.card-purple { background: linear-gradient(135deg, rgba(199, 36, 177, 0.08), transparent); }

.blog-card.card-magenta:hover { border-color: var(--prism-magenta); box-shadow: 0 20px 60px rgba(255, 0, 128, 0.3); }
.blog-card.card-cyan:hover { border-color: var(--prism-cyan); box-shadow: 0 20px 60px rgba(0, 245, 255, 0.3); }
.blog-card.card-yellow:hover { border-color: var(--prism-yellow); box-shadow: 0 20px 60px rgba(255, 234, 0, 0.3); }
.blog-card.card-lime:hover { border-color: var(--prism-lime); box-shadow: 0 20px 60px rgba(57, 255, 20, 0.3); }
.blog-card.card-orange:hover { border-color: var(--prism-orange); box-shadow: 0 20px 60px rgba(255, 103, 0, 0.3); }
.blog-card.card-purple:hover { border-color: var(--prism-purple); box-shadow: 0 20px 60px rgba(199, 36, 177, 0.3); }

/* Blog Category Badge - Square */
.blog-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.card-magenta .blog-category { background: var(--prism-magenta); }
.card-cyan .blog-category { background: var(--prism-cyan); }
.card-yellow .blog-category { background: var(--prism-yellow); color: var(--dark-bg); }
.card-lime .blog-category { background: var(--prism-lime); color: var(--dark-bg); }
.card-orange .blog-category { background: var(--prism-orange); }
.card-purple .blog-category { background: var(--prism-purple); }

.blog-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.2;
}

.blog-card h3 a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h3 a:hover {
    color: var(--prism-cyan);
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.blog-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.blog-card .read-more {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card .read-more:hover {
    gap: 1rem;
    color: var(--prism-cyan);
}

/* ===== FIXES: Light Highlight Hover & Thumbnails ===== */

/* Blog Card - Light Highlight Only (No Full Color Flash) */
.blog-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    padding: 0 !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 0 !important;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.blog-card-content {
    padding: 2rem;
}

/* Card Reflection Sweep */
.card-reflection {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.08), 
        transparent);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.blog-card:hover .card-reflection {
    left: 100%;
}

/* Light Highlight on Hover - Color Matched Border + Subtle Glow */
.blog-card.card-magenta:hover {
    border-color: var(--prism-magenta) !important;
    box-shadow: 0 0 0 1px var(--prism-magenta), 0 8px 30px rgba(255, 0, 128, 0.15) !important;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.05), rgba(255, 255, 255, 0.03)) !important;
}
.blog-card.card-cyan:hover {
    border-color: var(--prism-cyan) !important;
    box-shadow: 0 0 0 1px var(--prism-cyan), 0 8px 30px rgba(0, 245, 255, 0.15) !important;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(255, 255, 255, 0.03)) !important;
}
.blog-card.card-yellow:hover {
    border-color: var(--prism-yellow) !important;
    box-shadow: 0 0 0 1px var(--prism-yellow), 0 8px 30px rgba(255, 234, 0, 0.15) !important;
    background: linear-gradient(135deg, rgba(255, 234, 0, 0.05), rgba(255, 255, 255, 0.03)) !important;
}
.blog-card.card-lime:hover {
    border-color: var(--prism-lime) !important;
    box-shadow: 0 0 0 1px var(--prism-lime), 0 8px 30px rgba(57, 255, 20, 0.15) !important;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.05), rgba(255, 255, 255, 0.03)) !important;
}
.blog-card.card-orange:hover {
    border-color: var(--prism-orange) !important;
    box-shadow: 0 0 0 1px var(--prism-orange), 0 8px 30px rgba(255, 103, 0, 0.15) !important;
    background: linear-gradient(135deg, rgba(255, 103, 0, 0.05), rgba(255, 255, 255, 0.03)) !important;
}
.blog-card.card-purple:hover {
    border-color: var(--prism-purple) !important;
    box-shadow: 0 0 0 1px var(--prism-purple), 0 8px 30px rgba(199, 36, 177, 0.15) !important;
    background: linear-gradient(135deg, rgba(199, 36, 177, 0.05), rgba(255, 255, 255, 0.03)) !important;
}

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

/* Blog Card Thumbnails - Variable Sizes */
.blog-card-thumbnail {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.blog-card-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Size variants based on card size */
.blog-card[style*="span 4"] .blog-card-thumbnail img,
.blog-card[style*="span 5"] .blog-card-thumbnail img {
    max-height: 150px;
}

.blog-card[style*="span 6"] .blog-card-thumbnail img {
    max-height: 200px;
}

.blog-card[style*="span 7"] .blog-card-thumbnail img,
.blog-card[style*="span 8"] .blog-card-thumbnail img {
    max-height: 250px;
}

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

/* ===== Homepage Feature Cards - Remove Color Flash ===== */
.feature-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

/* Remove the broken ::before gradient that causes corner flash */
.feature-card::before {
    display: none !important;
}

/* Add proper reflection sweep instead */
.feature-card .card-sweep {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.08), 
        transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.feature-card:hover .card-sweep {
    left: 100%;
}

/* Feature Card Hover - Light Outline Only */
.feature-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 15px 40px rgba(0, 0, 0, 0.3) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Feature Icon Float Animation */
.feature-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* ===== Page Header - Twilight Color Transition ===== */
.page-header h1 {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, 
        var(--twilight-pink), 
        var(--twilight-coral), 
        var(--twilight-orange), 
        var(--twilight-mauve),
        var(--twilight-purple), 
        var(--twilight-lavender),
        var(--twilight-pink));
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
    animation: twilight-flow 28s ease-in-out infinite;
}

/* ===== Filter Tags - Square Style ===== */
.filter-tag {
    padding: 0.7rem 1.5rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0 !important;
    color: var(--white) !important;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-tag:hover, .filter-tag.active {
    background: var(--prism-magenta) !important;
    border-color: var(--prism-magenta) !important;
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.4);
}

/* Blog Category Badge - Square with Slant */
.blog-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.card-magenta .blog-category { background: var(--prism-magenta); color: white; }
.card-cyan .blog-category { background: var(--prism-cyan); color: var(--dark-bg); }
.card-yellow .blog-category { background: var(--prism-yellow); color: var(--dark-bg); }
.card-lime .blog-category { background: var(--prism-lime); color: var(--dark-bg); }
.card-orange .blog-category { background: var(--prism-orange); color: white; }
.card-purple .blog-category { background: var(--prism-purple); color: white; }

/* Blog Card Text Styles */
.blog-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.2;
}

.blog-card h3 a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h3 a:hover {
    color: var(--prism-cyan);
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.blog-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-card .read-more {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card .read-more:hover {
    gap: 1rem;
    color: var(--prism-cyan);
}

/* ===== Blog Post Creative Header Image ===== */
.article-hero-prismatic {
    margin-top: 80px;
    padding: 4rem 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-image-container {
    position: relative;
}

.hero-image-frame {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image-frame:hover .hero-image {
    transform: scale(1.05);
}

/* Prismatic Corner Accents */
.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 2;
}

.frame-corner.top-left {
    top: -2px;
    left: -2px;
    border-top: 3px solid var(--prism-magenta);
    border-left: 3px solid var(--prism-magenta);
}

.frame-corner.top-right {
    top: -2px;
    right: -2px;
    border-top: 3px solid var(--prism-cyan);
    border-right: 3px solid var(--prism-cyan);
}

.frame-corner.bottom-left {
    bottom: 40px;
    left: -2px;
    border-bottom: 3px solid var(--prism-lime);
    border-left: 3px solid var(--prism-lime);
}

.frame-corner.bottom-right {
    bottom: -2px;
    right: 40px;
    border-bottom: 3px solid var(--prism-orange);
    border-right: 3px solid var(--prism-orange);
}

/* Image Reflection Effect */
.hero-image-reflection {
    position: absolute;
    bottom: -60px;
    left: 20px;
    right: 20px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
    transform: scaleY(-1);
    opacity: 0.3;
    filter: blur(3px);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Article Hero Content */
.article-hero-content {
    position: relative;
    z-index: 1;
}

.article-hero-content .article-category {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--prism-magenta);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.article-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, 
        var(--twilight-pink), 
        var(--twilight-coral), 
        var(--twilight-orange), 
        var(--twilight-mauve),
        var(--twilight-purple), 
        var(--twilight-lavender),
        var(--twilight-pink));
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    animation: twilight-flow 28s ease-in-out infinite;
}

.article-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.article-hero-content .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.article-hero-content .article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-hero-content .article-meta i {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .article-hero-prismatic {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .article-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-image-container {
        order: -1;
    }
}

@media (max-width: 768px) {
    .article-hero-content h1 {
        font-size: 2rem;
    }
    
    .article-hero-content .article-meta {
        gap: 1rem;
    }
}

/* ===== Prismatic Guides Hero - Square Theme ===== */
.guides-hero-prismatic {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(10, 10, 25, 0.98) 100%);
}

.guides-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
}

/* Title Block */
.guides-title-block {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.guides-title-block .title-frame {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.guides-title-block .frame-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    z-index: 2;
}

.guides-title-block .frame-corner.top-left {
    top: -2px;
    left: -2px;
    border-top: 3px solid var(--prism-magenta);
    border-left: 3px solid var(--prism-magenta);
}

.guides-title-block .frame-corner.top-right {
    top: -2px;
    right: -2px;
    border-top: 3px solid var(--prism-cyan);
    border-right: 3px solid var(--prism-cyan);
}

.guides-title-block .frame-corner.bottom-left {
    bottom: 30px;
    left: -2px;
    border-bottom: 3px solid var(--prism-lime);
    border-left: 3px solid var(--prism-lime);
}

.guides-title-block .frame-corner.bottom-right {
    bottom: -2px;
    right: 30px;
    border-bottom: 3px solid var(--prism-orange);
    border-right: 3px solid var(--prism-orange);
}

.guides-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--prism-cyan);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 255, 0.1);
    border-left: 3px solid var(--prism-cyan);
}

.guides-title-block h1 {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, 
        var(--twilight-pink), 
        var(--twilight-coral), 
        var(--twilight-orange), 
        var(--twilight-mauve),
        var(--twilight-purple), 
        var(--twilight-lavender),
        var(--twilight-pink));
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: twilight-flow 28s ease-in-out infinite;
}

.guides-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 450px;
}

/* Category Blocks Grid */
.guides-category-blocks {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.category-block {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    overflow: hidden;
}

.category-block i {
    width: 32px;
    height: 32px;
    margin-bottom: 0.75rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.category-block span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* Category Block Colors */
.category-block.block-magenta {
    border-color: rgba(255, 0, 128, 0.3);
}
.category-block.block-magenta i { color: var(--prism-magenta); }
.category-block.block-magenta:hover {
    background: rgba(255, 0, 128, 0.15);
    border-color: var(--prism-magenta);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

.category-block.block-purple {
    border-color: rgba(128, 0, 255, 0.3);
}
.category-block.block-purple i { color: var(--prism-purple); }
.category-block.block-purple:hover {
    background: rgba(128, 0, 255, 0.15);
    border-color: var(--prism-purple);
    box-shadow: 0 0 20px rgba(128, 0, 255, 0.3);
}

.category-block.block-cyan {
    border-color: rgba(0, 255, 255, 0.3);
}
.category-block.block-cyan i { color: var(--prism-cyan); }
.category-block.block-cyan:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: var(--prism-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.category-block.block-lime {
    border-color: rgba(0, 255, 128, 0.3);
}
.category-block.block-lime i { color: var(--prism-lime); }
.category-block.block-lime:hover {
    background: rgba(0, 255, 128, 0.15);
    border-color: var(--prism-lime);
    box-shadow: 0 0 20px rgba(0, 255, 128, 0.3);
}

.category-block.block-orange {
    border-color: rgba(255, 128, 0, 0.3);
}
.category-block.block-orange i { color: var(--prism-orange); }
.category-block.block-orange:hover {
    background: rgba(255, 128, 0, 0.15);
    border-color: var(--prism-orange);
    box-shadow: 0 0 20px rgba(255, 128, 0, 0.3);
}

.category-block.block-yellow {
    border-color: rgba(255, 255, 0, 0.3);
}
.category-block.block-yellow i { color: var(--prism-yellow); }
.category-block.block-yellow:hover {
    background: rgba(255, 255, 0, 0.15);
    border-color: var(--prism-yellow);
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

/* Stats Block */
.guides-stats-block {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 15px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--prism-cyan), var(--prism-magenta));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .guides-grid-container {
        grid-template-columns: 1fr;
    }
    
    .guides-title-block {
        grid-column: 1;
        grid-row: 1;
    }
    
    .guides-category-blocks {
        grid-column: 1;
        grid-row: 2;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .guides-stats-block {
        grid-column: 1;
        grid-row: 3;
    }
    
    .guides-title-block h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 640px) {
    .guides-hero-prismatic {
        padding: 2rem 1rem;
    }
    
    .guides-title-block .title-frame {
        padding: 2rem;
    }
    
    .guides-title-block h1 {
        font-size: 2.5rem;
    }
    
    .guides-category-blocks {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guides-stats-block {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Guide Category Cards with Icons */
.guide-category-card .category-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.guide-category-card .category-icon i {
    width: 36px;
    height: 36px;
}

.guide-category-card[data-color="magenta"] .category-icon i { color: var(--prism-magenta); }
.guide-category-card[data-color="purple"] .category-icon i { color: var(--prism-purple); }
.guide-category-card[data-color="cyan"] .category-icon i { color: var(--prism-cyan); }
.guide-category-card[data-color="yellow"] .category-icon i { color: var(--prism-yellow); }
.guide-category-card[data-color="lime"] .category-icon i { color: var(--prism-lime); }
.guide-category-card[data-color="orange"] .category-icon i { color: var(--prism-orange); }

/* Featured Guide Icons */
.featured-guide .guide-meta i {
    width: 14px;
    height: 14px;
    margin-right: 0.25rem;
}

/* ===== Prismatic About Page ===== */
.about-hero-prismatic {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(10, 10, 25, 0.98) 100%);
}

.about-hero-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: center;
}

/* Portrait Section */
.about-portrait-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.portrait-frame {
    position: relative;
    width: 280px;
    height: 350px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
    overflow: hidden;
}

.portrait-frame .frame-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    z-index: 3;
}

.portrait-frame .frame-corner.top-left {
    top: -2px;
    left: -2px;
    border-top: 3px solid var(--prism-magenta);
    border-left: 3px solid var(--prism-magenta);
}

.portrait-frame .frame-corner.top-right {
    top: -2px;
    right: -2px;
    border-top: 3px solid var(--prism-cyan);
    border-right: 3px solid var(--prism-cyan);
}

.portrait-frame .frame-corner.bottom-left {
    bottom: 40px;
    left: -2px;
    border-bottom: 3px solid var(--prism-lime);
    border-left: 3px solid var(--prism-lime);
}

.portrait-frame .frame-corner.bottom-right {
    bottom: -2px;
    right: 40px;
    border-bottom: 3px solid var(--prism-orange);
    border-right: 3px solid var(--prism-orange);
}

.portrait-image {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.9) contrast(1.05);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.portrait-frame:hover .avatar-img {
    filter: saturate(1.1) contrast(1.1);
    transform: scale(1.02);
}

.portrait-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
}

.portrait-icon {
    width: 120px;
    height: 120px;
    color: rgba(255, 255, 255, 0.2);
}

.glitch-lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.02) 2px,
        rgba(255, 255, 255, 0.02) 4px
    );
    pointer-events: none;
}

.portrait-reflection {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
    filter: blur(2px);
}

.status-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--prism-lime);
    animation: pulse 2s infinite;
}

.status-dot.online {
    background: var(--prism-lime);
    box-shadow: 0 0 10px var(--prism-lime);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Info Section */
.about-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-header .about-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--prism-cyan);
    margin-bottom: 0.5rem;
}

.info-header h1 {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, 
        var(--twilight-pink), 
        var(--twilight-coral), 
        var(--twilight-orange), 
        var(--twilight-mauve),
        var(--twilight-purple), 
        var(--twilight-lavender),
        var(--twilight-pink));
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: twilight-flow 28s ease-in-out infinite;
}

.title-role {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
}

/* Quick Facts */
.quick-facts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--prism-magenta);
    transition: all 0.3s ease;
}

.fact-item:nth-child(2) {
    border-left-color: var(--prism-cyan);
}

.fact-item:nth-child(3) {
    border-left-color: var(--prism-lime);
}

.fact-item:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(5px);
}

.fact-item i {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.5);
}

.fact-item div {
    display: flex;
    flex-direction: column;
}

.fact-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fact-value {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.social-link i {
    width: 22px;
    height: 22px;
}

.social-link:hover {
    color: white;
    transform: translateY(-3px);
}

.social-link.github:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.social-link.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: #1DA1F2;
}

.social-link.contact:hover {
    background: rgba(255, 0, 128, 0.2);
    border-color: var(--prism-magenta);
}

/* About Story Section */
.about-story {
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

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

.section-title-alt {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.title-accent {
    color: var(--prism-cyan);
    margin-right: 0.5rem;
}

.story-text {
    margin-bottom: 2rem;
}

.story-text .lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-text em {
    color: var(--prism-cyan);
    font-style: normal;
}

.identity-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.identity-item {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
}

.happiness-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.1), rgba(255, 128, 0, 0.1));
    border: 2px solid var(--prism-yellow);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--prism-yellow);
}

.happiness-badge i {
    width: 24px;
    height: 24px;
}

/* Story Visual Cards */
.story-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-card {
    position: relative;
    padding: 1.5rem;
    padding-left: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: translateX(5px);
}

.card-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.card-accent.magenta { background: var(--prism-magenta); }
.card-accent.cyan { background: var(--prism-cyan); }
.card-accent.lime { background: var(--prism-lime); }

.visual-card i {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.5);
}

.visual-card span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Topics Section */
.about-topics {
    padding: 5rem 2rem;
}

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

.topic-card {
    position: relative;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    overflow: hidden;
}

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

.topic-card[data-color="magenta"]:hover { border-color: var(--prism-magenta); box-shadow: 0 0 25px rgba(255, 0, 128, 0.2); }
.topic-card[data-color="purple"]:hover { border-color: var(--prism-purple); box-shadow: 0 0 25px rgba(128, 0, 255, 0.2); }
.topic-card[data-color="cyan"]:hover { border-color: var(--prism-cyan); box-shadow: 0 0 25px rgba(0, 255, 255, 0.2); }
.topic-card[data-color="lime"]:hover { border-color: var(--prism-lime); box-shadow: 0 0 25px rgba(0, 255, 128, 0.2); }
.topic-card[data-color="orange"]:hover { border-color: var(--prism-orange); box-shadow: 0 0 25px rgba(255, 128, 0, 0.2); }
.topic-card[data-color="yellow"]:hover { border-color: var(--prism-yellow); box-shadow: 0 0 25px rgba(255, 255, 0, 0.2); }

.topic-icon {
    margin-bottom: 1rem;
}

.topic-icon i {
    width: 40px;
    height: 40px;
}

.topic-card[data-color="magenta"] .topic-icon i { color: var(--prism-magenta); }
.topic-card[data-color="purple"] .topic-icon i { color: var(--prism-purple); }
.topic-card[data-color="cyan"] .topic-icon i { color: var(--prism-cyan); }
.topic-card[data-color="lime"] .topic-icon i { color: var(--prism-lime); }
.topic-card[data-color="orange"] .topic-icon i { color: var(--prism-orange); }
.topic-card[data-color="yellow"] .topic-icon i { color: var(--prism-yellow); }

.topic-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.topic-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Journey Section */
.about-journey {
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.4);
}

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

.journey-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--prism-magenta);
    background: rgba(255, 0, 128, 0.05);
}

.journey-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.journey-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.journey-stat {
    text-align: center;
}

.journey-stat .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--prism-cyan), var(--prism-magenta));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.journey-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Promise Section */
.about-promise {
    padding: 5rem 2rem;
}

.promise-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
}

.promise-icon {
    margin-bottom: 1.5rem;
}

.promise-icon i {
    width: 60px;
    height: 60px;
    color: var(--prism-lime);
}

.promise-box h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.promise-box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.promise-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.sig-line {
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.sig-text {
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
}

/* About CTA Section */
.about-cta {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
}

.about-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.prism-btn.secondary {
    background: transparent;
    border: 2px solid var(--prism-cyan);
    color: var(--prism-cyan);
}

.prism-btn.secondary:hover {
    background: rgba(0, 255, 255, 0.1);
}

.cta-happy {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.cta-happy em {
    color: var(--prism-lime);
    font-style: normal;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .info-header h1 {
        font-size: 3.5rem;
    }
    
    .quick-facts {
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .info-header h1 {
        font-size: 2.5rem;
    }
    
    .portrait-frame {
        width: 220px;
        height: 280px;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* ===== Prismatic Contact Page ===== */
.contact-hero-prismatic {
    margin-top: 80px;
    padding: 4rem 2rem;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(10, 10, 25, 0.98) 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

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

/* Contact Info Section */
.contact-info {
    padding: 2rem 0;
}

.contact-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--prism-cyan);
    margin-bottom: 0.5rem;
}

.contact-info h1 {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, 
        var(--twilight-pink), 
        var(--twilight-coral), 
        var(--twilight-orange), 
        var(--twilight-mauve),
        var(--twilight-purple), 
        var(--twilight-lavender),
        var(--twilight-pink));
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: twilight-flow 28s ease-in-out infinite;
}

.contact-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--prism-magenta);
    transition: all 0.3s ease;
}

.method-item:nth-child(2) {
    border-left-color: var(--prism-cyan);
}

.method-item:nth-child(3) {
    border-left-color: var(--prism-lime);
}

.method-item:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(5px);
}

.method-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.method-icon i {
    width: 22px;
    height: 22px;
    color: rgba(255, 255, 255, 0.6);
}

.method-info {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-value {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

a.method-value:hover {
    color: var(--prism-cyan);
}

/* Contact Note */
.contact-note {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 128, 0.05);
    border: 1px solid rgba(0, 255, 128, 0.2);
}

.contact-note i {
    width: 20px;
    height: 20px;
    color: var(--prism-lime);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-note p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Form Section */
.contact-form-section {
    position: relative;
}

.form-frame {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.form-frame .frame-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    z-index: 2;
}

.form-frame .frame-corner.top-left {
    top: -2px;
    left: -2px;
    border-top: 3px solid var(--prism-magenta);
    border-left: 3px solid var(--prism-magenta);
}

.form-frame .frame-corner.top-right {
    top: -2px;
    right: -2px;
    border-top: 3px solid var(--prism-cyan);
    border-right: 3px solid var(--prism-cyan);
}

.form-frame .frame-corner.bottom-left {
    bottom: 30px;
    left: -2px;
    border-bottom: 3px solid var(--prism-lime);
    border-left: 3px solid var(--prism-lime);
}

.form-frame .frame-corner.bottom-right {
    bottom: -2px;
    right: 30px;
    border-bottom: 3px solid var(--prism-orange);
    border-right: 3px solid var(--prism-orange);
}

/* Form Header */
.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header i {
    width: 28px;
    height: 28px;
    color: var(--prism-cyan);
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

/* Form Groups */
.prismatic-form .form-group {
    margin-bottom: 1.5rem;
}

.prismatic-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.prismatic-form label i {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.prismatic-form .required {
    color: var(--prism-magenta);
}

.prismatic-form input,
.prismatic-form select,
.prismatic-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.prismatic-form input::placeholder,
.prismatic-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.prismatic-form input:focus,
.prismatic-form select:focus,
.prismatic-form textarea:focus {
    outline: none;
    border-color: var(--prism-cyan);
    background: rgba(0, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.prismatic-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
    padding-right: 3rem;
}

.prismatic-form select option {
    background: #0a0a19;
    color: white;
}

.prismatic-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--prism-magenta), var(--prism-purple));
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.submit-btn i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* FAQ Section */
.contact-faq {
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

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

.faq-item {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.faq-item:hover {
    border-color: var(--prism-cyan);
    transform: translateY(-5px);
}

.faq-icon {
    margin-bottom: 1rem;
}

.faq-icon i {
    width: 36px;
    height: 36px;
    color: var(--prism-cyan);
}

.faq-item:nth-child(2) .faq-icon i {
    color: var(--prism-lime);
}

.faq-item:nth-child(3) .faq-icon i {
    color: var(--prism-magenta);
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-prismatic {
        padding: 2rem 1rem;
    }
    
    .contact-info h1 {
        font-size: 2.5rem;
    }
    
    .form-frame {
        padding: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BLOG SINGLE - PINK HERO BLOCK
   ============================================ */

.article-hero-block {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 0.3) 0%, 
        rgba(255, 0, 128, 0.15) 50%,
        rgba(139, 0, 78, 0.2) 100%);
    border: 2px solid var(--prism-magenta);
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    overflow: hidden;
}

.article-hero-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--prism-magenta), var(--prism-cyan), var(--prism-yellow));
}

.hero-block-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.article-hero-block .article-category {
    display: inline-block;
    background: var(--prism-magenta);
    color: white;
    padding: 0.3rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.hero-block-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
}

.hero-block-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.article-hero-block .article-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.article-hero-block .article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-hero-block .article-meta i {
    width: 16px;
    height: 16px;
    color: var(--prism-magenta);
}

.hero-block-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-block-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.02) 2px,
        rgba(255, 255, 255, 0.02) 4px
    );
    pointer-events: none;
}

/* ============================================
   VARIABLE THUMBNAIL SIZES
   ============================================ */

.blog-card-thumbnail {
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

/* Variable thumbnail heights based on card size */
.thumb-size-4 { height: 100px; }
.thumb-size-5 { height: 120px; }
.thumb-size-6 { height: 140px; }
.thumb-size-7 { height: 160px; }
.thumb-size-8 { height: 180px; }

/* ============================================
   PROJECTS PAGE - PRISMATIC STYLE
   ============================================ */

.projects-hero-prismatic {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    overflow: hidden;
}

.hero-prism-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.prism-shape {
    position: absolute;
    border: 2px solid;
    opacity: 0.3;
}

.prism-shape.shape-1 {
    top: 10%;
    left: 10%;
    width: 200px;
    height: 200px;
    border-color: var(--prism-magenta);
    transform: rotate(15deg);
    animation: float 8s ease-in-out infinite;
}

.prism-shape.shape-2 {
    bottom: 20%;
    right: 15%;
    width: 150px;
    height: 150px;
    border-color: var(--prism-cyan);
    transform: rotate(-10deg);
    animation: float 10s ease-in-out infinite reverse;
}

.prism-shape.shape-3 {
    top: 40%;
    right: 30%;
    width: 100px;
    height: 100px;
    border-color: var(--prism-yellow);
    transform: rotate(45deg);
    animation: float 6s ease-in-out infinite;
}

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

.projects-hero-content {
    position: relative;
    z-index: 2;
}

.projects-hero-content .hero-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--prism-magenta), var(--prism-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.projects-hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
}

.projects-hero-content .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Flagship Project Section */
.flagship-project {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(255, 0, 128, 0.05));
}

.flagship-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.flagship-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--prism-yellow), var(--prism-orange));
    color: black;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.flagship-badge i {
    width: 14px;
    height: 14px;
}

.flagship-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--prism-cyan);
    padding: 3rem;
    position: relative;
}

.flagship-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--prism-cyan), var(--prism-magenta));
}

.flagship-logo-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3), transparent 70%);
    filter: blur(30px);
}

.logo-frame {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    border: 2px solid var(--prism-cyan);
    background: rgba(0, 0, 0, 0.5);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--prism-cyan);
    text-shadow: 0 0 30px var(--prism-cyan);
}

.logo-cloud {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.flagship-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.flagship-tagline {
    font-size: 1.2rem;
    color: var(--prism-cyan);
    margin-bottom: 1rem;
}

.flagship-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.flagship-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--prism-cyan);
}

.feature-tag i {
    width: 14px;
    height: 14px;
}

.flagship-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--prism-cyan), var(--prism-magenta));
    color: white;
    padding: 1rem 2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.flagship-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.flagship-btn i {
    width: 18px;
    height: 18px;
}

/* Live Projects Grid */
.projects-live {
    padding: 4rem 2rem;
}

.projects-grid-prismatic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card-prismatic {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    text-decoration: none;
    transition: all 0.4s ease;
    overflow: hidden;
}

.project-card-prismatic[data-color="magenta"] { border-color: rgba(255, 0, 128, 0.3); }
.project-card-prismatic[data-color="cyan"] { border-color: rgba(0, 255, 255, 0.3); }
.project-card-prismatic[data-color="yellow"] { border-color: rgba(255, 255, 0, 0.3); }
.project-card-prismatic[data-color="purple"] { border-color: rgba(180, 0, 255, 0.3); }

.project-card-prismatic:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.5);
}

.project-card-prismatic[data-color="magenta"]:hover { 
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.2);
    border-color: var(--prism-magenta);
}
.project-card-prismatic[data-color="cyan"]:hover { 
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: var(--prism-cyan);
}
.project-card-prismatic[data-color="yellow"]:hover { 
    box-shadow: 0 20px 40px rgba(255, 255, 0, 0.2);
    border-color: var(--prism-yellow);
}
.project-card-prismatic[data-color="purple"]:hover { 
    box-shadow: 0 20px 40px rgba(180, 0, 255, 0.2);
    border-color: var(--prism-purple);
}

.project-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.project-card-prismatic[data-color="magenta"] .project-card-glow {
    background: radial-gradient(circle at top left, rgba(255, 0, 128, 0.1), transparent 50%);
}
.project-card-prismatic[data-color="cyan"] .project-card-glow {
    background: radial-gradient(circle at top left, rgba(0, 255, 255, 0.1), transparent 50%);
}
.project-card-prismatic[data-color="yellow"] .project-card-glow {
    background: radial-gradient(circle at top left, rgba(255, 255, 0, 0.1), transparent 50%);
}
.project-card-prismatic[data-color="purple"] .project-card-glow {
    background: radial-gradient(circle at top left, rgba(180, 0, 255, 0.1), transparent 50%);
}

.project-card-prismatic:hover .project-card-glow {
    opacity: 1;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-card-prismatic h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.project-card-prismatic p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.project-card-prismatic[data-color="magenta"] .project-link { color: var(--prism-magenta); }
.project-card-prismatic[data-color="cyan"] .project-link { color: var(--prism-cyan); }
.project-card-prismatic[data-color="yellow"] .project-link { color: var(--prism-yellow); }
.project-card-prismatic[data-color="purple"] .project-link { color: var(--prism-purple); }

.project-link i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.project-card-prismatic:hover .project-link i {
    transform: translateX(4px);
}

/* Category Blocks */
.project-categories-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
}

.category-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-block {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    overflow: hidden;
}

.category-block[data-color="cyan"] { border-left: 4px solid var(--prism-cyan); }
.category-block[data-color="lime"] { border-left: 4px solid var(--prism-lime); }
.category-block[data-color="orange"] { border-left: 4px solid var(--prism-orange); }
.category-block[data-color="purple"] { border-left: 4px solid var(--prism-purple); }

.category-block-wide {
    grid-column: span 2;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-icon {
    font-size: 2rem;
}

.category-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.dev-pulse {
    width: 10px;
    height: 10px;
    background: var(--prism-lime);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.category-block > p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list i {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

.category-glow {
    position: absolute;
    bottom: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.category-block[data-color="cyan"] .category-glow { background: var(--prism-cyan); }
.category-block[data-color="lime"] .category-glow { background: var(--prism-lime); }
.category-block[data-color="orange"] .category-glow { background: var(--prism-orange); }
.category-block[data-color="purple"] .category-glow { background: var(--prism-purple); }

.coming-soon-grid {
    margin-top: 1rem;
}

.coming-soon-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--prism-lime);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

/* Philosophy Section */
.project-philosophy {
    padding: 4rem 2rem;
}

.philosophy-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    text-align: center;
    position: relative;
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--prism-magenta), var(--prism-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.philosophy-icon i {
    width: 30px;
    height: 30px;
    color: white;
}

.philosophy-card blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.philosophy-card cite {
    display: block;
    color: var(--prism-cyan);
    font-weight: 600;
    margin-bottom: 2rem;
}

.philosophy-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--prism-magenta);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.philosophy-link:hover {
    gap: 1rem;
}

.philosophy-link i {
    width: 16px;
    height: 16px;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.faq-item:hover {
    border-color: var(--prism-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.2);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--prism-cyan);
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}

/* ============================================
   CLOUDSTRAP PAGE
   ============================================ */

.cloudstrap-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 100, 200, 0.2), rgba(100, 0, 200, 0.1));
}

.cloudstrap-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cloud-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(40px);
}

.cloud-shape.cloud-1 {
    top: 20%;
    left: 10%;
    width: 300px;
    height: 150px;
    animation: cloudFloat 15s ease-in-out infinite;
}

.cloud-shape.cloud-2 {
    bottom: 30%;
    right: 15%;
    width: 250px;
    height: 120px;
    animation: cloudFloat 20s ease-in-out infinite reverse;
}

@keyframes cloudFloat {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(30px); }
}

.bootstrap-lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 100px,
        rgba(255, 255, 255, 0.02) 100px,
        rgba(255, 255, 255, 0.02) 101px
    );
}

.cloudstrap-hero-content {
    position: relative;
    z-index: 2;
}

.cloudstrap-logo {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cloudstrap-hero-content .hero-label {
    display: inline-block;
    color: var(--prism-cyan);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.cloudstrap-hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.cloudstrap-content {
    padding: 4rem 2rem;
}

.cloudstrap-article {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.cloudstrap-article h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--prism-cyan);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

.cloudstrap-article p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.cloudstrap-article blockquote {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
    border-left: 4px solid var(--prism-magenta);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
}

.cloudstrap-article blockquote p {
    margin-bottom: 0;
}

.cloudstrap-article strong {
    color: white;
}

.cloudstrap-article em {
    color: var(--prism-cyan);
}

.cloudstrap-article hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--prism-cyan), transparent);
    margin: 3rem 0;
}

/* Powered By Section */
.powered-by-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.powered-by-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
}

.powered-projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.powered-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.powered-item:hover {
    border-color: var(--prism-cyan);
    transform: translateY(-2px);
}

.powered-icon {
    font-size: 1.5rem;
}

.powered-name {
    color: white;
    font-weight: 600;
}

/* ============================================
   FOOTER POWERED BY
   ============================================ */

.footer-powered {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.footer-powered a {
    color: var(--prism-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-powered a:hover {
    color: var(--prism-magenta);
}

/* ============================================
   RESPONSIVE - PROJECTS
   ============================================ */

@media (max-width: 768px) {
    .flagship-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .flagship-logo-area {
        margin-bottom: 2rem;
    }
    
    .flagship-features {
        justify-content: center;
    }
    
    .category-block-wide {
        grid-column: span 1;
    }
    
    .article-hero-block {
        padding: 3rem 1.5rem;
    }
    
    .hero-block-title {
        font-size: 2rem;
    }
}
/* ============================================
   MOBILE SWIPE HINT & SCROLLABLE SECTIONS
   ============================================ */

/* Swipe hint indicator animation */
@keyframes swipe-hint {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(10px);
        opacity: 0.5;
    }
}

@keyframes fade-scroll-hint {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Scrollable container base styles */
.mobile-scroll-container {
    position: relative;
}

/* Fade edges to indicate more content */
@media (max-width: 768px) {
    .blog-grid::after,
    .featured-guide-list::after,
    .category-grid::after,
    .guides-category-blocks::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 40px;
        background: linear-gradient(to right, transparent, var(--dark-bg));
        pointer-events: none;
        z-index: 10;
    }
    
    /* Container positioning for fade */
    .blog-grid,
    .featured-guide-list,
    .category-grid,
    .guides-category-blocks {
        position: relative;
    }
    
    /* Pull to refresh style bounce effect */
    .blog-card:active,
    .featured-guide:active,
    .guide-category-card:active {
        transform: scale(0.97);
        transition: transform 0.1s ease;
    }
    
    /* Touch-friendly larger tap targets */
    .blog-card a,
    .featured-guide .guide-link,
    .guide-category-card a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Smooth momentum scrolling */
    * {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Hide horizontal scrollbars everywhere */
    ::-webkit-scrollbar {
        height: 0;
        width: 0;
    }
    
    /* Compact container padding */
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* Section spacing */
    section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* Extra small screens - tighter spacing */
@media (max-width: 400px) {
    .featured-guide {
        flex: 0 0 90vw;
        max-width: 90vw;
        padding: 1rem;
    }
    
    .featured-guide h3 {
        font-size: 1rem;
    }
    
    .guide-category-card {
        flex: 0 0 90vw;
        max-width: 90vw;
        padding: 1rem;
    }
    
    .category-block {
        min-width: 80px;
        padding: 0.5rem;
    }
    
    .category-block span {
        font-size: 0.6rem;
    }
    
    .guides-title-block h1 {
        font-size: 2rem;
    }
}

/* ========================================
   TETRIS BLOG INTERACTIVE MODE
   Activated via Konami Code: ↑↑↓↓←→←→
   Interactive falling blog posts - click to read!
   10 wide × 20 tall playfield with large readable blocks
   ======================================== */

/* ===== HIDE ORIGINAL BLOG GRID IN TETRIS MODE ===== */
body.tetris-mode .blog-grid-prismatic,
body.tetris-mode .blog-grid,
body.tetris-mode .filter-tags {
    display: none !important;
}

/* ===== TETRIS CATEGORY TAGS (4 blocks each like tetrominos) ===== */
.tetris-category-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 1.5rem;
    justify-content: center;
    padding: 0 1rem;
}

.tetris-category {
    display: grid;
    gap: 2px;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
    position: relative;
    text-decoration: none;
}

.tetris-category:hover {
    transform: scale(1.08);
    filter: brightness(1.2);
}

.tetris-cat-block {
    width: 18px;
    height: 18px;
    border-radius: 2px;
    box-shadow: 
        inset 2px 2px 0 rgba(255, 255, 255, 0.4),
        inset -2px -2px 0 rgba(0, 0, 0, 0.3);
}

/* Category text overlay */
.tetris-category-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px;
    text-align: center;
    word-break: break-word;
    z-index: 2;
}

/* I-piece category: 4×1 horizontal */
.tetris-category.cat-I {
    grid-template-columns: repeat(4, 18px);
    grid-template-rows: 18px;
}

/* O-piece category: 2×2 square */
.tetris-category.cat-O {
    grid-template-columns: repeat(2, 18px);
    grid-template-rows: repeat(2, 18px);
}

/* T-piece category: T shape */
.tetris-category.cat-T {
    grid-template-columns: repeat(3, 18px);
    grid-template-rows: repeat(2, 18px);
}
.tetris-category.cat-T .tetris-cat-block:nth-child(1) { grid-column: 2; grid-row: 1; }
.tetris-category.cat-T .tetris-cat-block:nth-child(2) { grid-column: 1; grid-row: 2; }
.tetris-category.cat-T .tetris-cat-block:nth-child(3) { grid-column: 2; grid-row: 2; }
.tetris-category.cat-T .tetris-cat-block:nth-child(4) { grid-column: 3; grid-row: 2; }

/* S-piece category */
.tetris-category.cat-S {
    grid-template-columns: repeat(3, 18px);
    grid-template-rows: repeat(2, 18px);
}
.tetris-category.cat-S .tetris-cat-block:nth-child(1) { grid-column: 2; grid-row: 1; }
.tetris-category.cat-S .tetris-cat-block:nth-child(2) { grid-column: 3; grid-row: 1; }
.tetris-category.cat-S .tetris-cat-block:nth-child(3) { grid-column: 1; grid-row: 2; }
.tetris-category.cat-S .tetris-cat-block:nth-child(4) { grid-column: 2; grid-row: 2; }

/* Z-piece category */
.tetris-category.cat-Z {
    grid-template-columns: repeat(3, 18px);
    grid-template-rows: repeat(2, 18px);
}
.tetris-category.cat-Z .tetris-cat-block:nth-child(1) { grid-column: 1; grid-row: 1; }
.tetris-category.cat-Z .tetris-cat-block:nth-child(2) { grid-column: 2; grid-row: 1; }
.tetris-category.cat-Z .tetris-cat-block:nth-child(3) { grid-column: 2; grid-row: 2; }
.tetris-category.cat-Z .tetris-cat-block:nth-child(4) { grid-column: 3; grid-row: 2; }

/* J-piece category */
.tetris-category.cat-J {
    grid-template-columns: repeat(2, 18px);
    grid-template-rows: repeat(3, 18px);
}
.tetris-category.cat-J .tetris-cat-block:nth-child(1) { grid-column: 2; grid-row: 1; }
.tetris-category.cat-J .tetris-cat-block:nth-child(2) { grid-column: 2; grid-row: 2; }
.tetris-category.cat-J .tetris-cat-block:nth-child(3) { grid-column: 2; grid-row: 3; }
.tetris-category.cat-J .tetris-cat-block:nth-child(4) { grid-column: 1; grid-row: 3; }

/* L-piece category */
.tetris-category.cat-L {
    grid-template-columns: repeat(2, 18px);
    grid-template-rows: repeat(3, 18px);
}
.tetris-category.cat-L .tetris-cat-block:nth-child(1) { grid-column: 1; grid-row: 1; }
.tetris-category.cat-L .tetris-cat-block:nth-child(2) { grid-column: 1; grid-row: 2; }
.tetris-category.cat-L .tetris-cat-block:nth-child(3) { grid-column: 1; grid-row: 3; }
.tetris-category.cat-L .tetris-cat-block:nth-child(4) { grid-column: 2; grid-row: 3; }

/* ===== GAME CONTAINER ===== */
.tetris-game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

/* ===== KEYBOARD INSTRUCTIONS ===== */
.tetris-instructions {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    background: rgba(20, 20, 40, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.tetris-instructions kbd {
    display: inline-block;
    background: linear-gradient(135deg, #1a1a2e, #2a2a4e);
    border: 1px solid #00f5ff;
    border-radius: 4px;
    padding: 0.15rem 0.4rem;
    margin: 0 0.1rem;
    font-family: monospace;
    font-size: 0.8rem;
    color: #00f5ff;
    box-shadow: 0 2px 0 rgba(0, 245, 255, 0.3);
}

/* ===== PLAYFIELD: 10×20 Grid - LARGE for readability ===== */
.tetris-playfield {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(20, 1fr);
    gap: 3px;
    width: 100%;
    max-width: 700px; /* Larger than before */
    aspect-ratio: 10 / 20;
    padding: 10px;
    background: linear-gradient(180deg, #0a0a15 0%, #1a1a2e 100%);
    border: 4px solid #333;
    border-radius: 8px;
    box-shadow: 
        inset 0 0 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 245, 255, 0.2);
}

/* ===== GRID CELLS ===== */
.tetris-cell {
    background: rgba(20, 20, 35, 0.6);
    border-radius: 4px;
    border: 1px solid rgba(0, 245, 255, 0.08);
    transition: all 0.15s ease;
    position: relative;
    overflow: hidden;
}

/* Block title text inside cells */
.block-title {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    font-size: 0.55rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.9),
        0 0 8px rgba(0, 0, 0, 0.7);
    text-align: center;
    word-break: break-word;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    hyphens: auto;
}

.block-title.active-title {
    font-size: 0.65rem;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 1),
        0 0 15px currentColor;
}

/* Filled cell (locked piece) - clickable blog link */
.tetris-cell.filled {
    background: var(--block-color, #00f5ff);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        inset 4px 4px 0 rgba(255, 255, 255, 0.35),
        inset -4px -4px 0 rgba(0, 0, 0, 0.35),
        0 0 12px var(--block-color, #00f5ff);
    cursor: pointer;
}

.tetris-cell.filled:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 
        inset 4px 4px 0 rgba(255, 255, 255, 0.5),
        inset -4px -4px 0 rgba(0, 0, 0, 0.4),
        0 0 25px var(--block-color, #00f5ff),
        0 0 40px var(--block-color, #00f5ff);
}

.tetris-cell.filled:hover .block-title {
    text-decoration: underline;
}

/* Active piece (currently falling) - also clickable */
.tetris-cell.active {
    background: var(--block-color, #00f5ff);
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        inset 4px 4px 0 rgba(255, 255, 255, 0.4),
        inset -4px -4px 0 rgba(0, 0, 0, 0.4),
        0 0 20px var(--block-color, #00f5ff);
    animation: pulsePiece 0.6s ease-in-out infinite alternate;
    cursor: pointer;
}

@keyframes pulsePiece {
    from { opacity: 0.85; box-shadow: 0 0 15px var(--block-color, #00f5ff); }
    to { opacity: 1; box-shadow: 0 0 30px var(--block-color, #00f5ff); }
}

.tetris-cell.active:hover {
    transform: scale(1.05);
    z-index: 10;
}

/* Ghost piece (landing preview) */
.tetris-cell.ghost {
    background: rgba(255, 255, 255, 0.08);
    border: 2px dashed rgba(255, 255, 255, 0.25);
    box-shadow: none;
}

/* Line clearing animation */
.tetris-cell.clearing {
    animation: lineClear 0.4s ease-in-out;
}

@keyframes lineClear {
    0% { transform: scale(1); background: #fff; }
    50% { transform: scale(1.15); background: #ff0080; }
    100% { transform: scale(0); opacity: 0; }
}

/* ===== REVERT BUTTON (Normal View) ===== */
.tetris-revert-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #333, #555);
    border: 2px solid #00f5ff;
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 245, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 9998;
}

.tetris-revert-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 245, 255, 0.5);
}

/* ===== SHARE BUTTON ===== */
.tetris-share-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9998;
}

.tetris-share-btn {
    background: linear-gradient(135deg, #ff0080, #00f5ff);
    border: none;
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(255, 0, 128, 0.4);
    transition: all 0.3s ease;
}

.tetris-share-btn:hover {
    transform: scale(1.05);
}

.share-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(20, 20, 30, 0.95);
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 10px;
    display: none;
    flex-direction: column;
    gap: 4px;
    min-width: 160px;
    backdrop-filter: blur(10px);
}

.tetris-share-container:hover .share-dropdown,
.tetris-share-container.active .share-dropdown {
    display: flex;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 1rem;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.share-option:hover {
    background: rgba(0, 245, 255, 0.2);
}

.share-option span:first-child {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-weight: bold;
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 900px) {
    .tetris-playfield {
        max-width: 550px;
    }
    
    .block-title {
        font-size: 0.5rem;
    }
    
    .block-title.active-title {
        font-size: 0.55rem;
    }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 600px) {
    .tetris-game-container {
        padding: 0.5rem;
    }
    
    .tetris-playfield {
        max-width: 100%;
        gap: 2px;
        padding: 6px;
    }
    
    .block-title {
        font-size: 0.4rem;
    }
    
    .block-title.active-title {
        font-size: 0.45rem;
    }
    
    .tetris-instructions {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    .tetris-revert-btn {
        top: 10px;
        left: 10px;
        padding: 0.4rem 0.7rem;
        font-size: 0.7rem;
    }
    
    .tetris-share-container {
        top: 10px;
        right: 10px;
    }
    
    .tetris-share-btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.7rem;
    }
}

/* ===== VERY SMALL SCREENS ===== */
@media (max-width: 400px) {
    .block-title {
        font-size: 0.35rem;
    }
    
    .tetris-instructions {
        font-size: 0.7rem;
    }
}

/* Tetris mode page background */
body.tetris-mode::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 29px,
            rgba(0, 245, 255, 0.02) 29px,
            rgba(0, 245, 255, 0.02) 30px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 29px,
            rgba(0, 245, 255, 0.02) 29px,
            rgba(0, 245, 255, 0.02) 30px
        );
    pointer-events: none;
    z-index: -1;
}

/* ===== ARCADE SPLASH SCREEN ===== */
.tetris-splash {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, #1a0a2e 0%, #000 70%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: splashFadeOut 4.5s ease-in-out forwards;
    pointer-events: none;
}

.tetris-splash::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 2px,
            rgba(0, 0, 0, 0.3) 2px,
            rgba(0, 0, 0, 0.3) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.splash-line-1 {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: clamp(1rem, 4vw, 2rem);
    color: #00f5ff;
    text-align: center;
    text-shadow: 
        0 0 10px #00f5ff,
        0 0 20px #00f5ff,
        0 0 40px #00f5ff;
    margin-bottom: 2rem;
    animation: glowPulse 0.5s ease-in-out infinite alternate;
    z-index: 2;
    padding: 0 1rem;
}

.splash-line-2 {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: clamp(1.5rem, 6vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    background: linear-gradient(90deg, #ff0080, #ff6600, #ffff00, #00ff00, #00f5ff, #8000ff, #ff0080);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowShift 0.3s linear infinite, arcadeFlash 0.15s step-end infinite;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.8)) drop-shadow(0 0 40px rgba(0, 245, 255, 0.6));
    z-index: 2;
    padding: 0 1rem;
    line-height: 1.3;
}

/* Arcade flash effect */
@keyframes arcadeFlash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Rainbow color shift */
@keyframes rainbowShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Glow pulse for line 1 */
@keyframes glowPulse {
    0% { 
        text-shadow: 0 0 10px #00f5ff, 0 0 20px #00f5ff, 0 0 40px #00f5ff;
        opacity: 0.8;
    }
    100% { 
        text-shadow: 0 0 20px #00f5ff, 0 0 40px #00f5ff, 0 0 80px #00f5ff, 0 0 120px #00f5ff;
        opacity: 1;
    }
}

/* Splash screen fade out */
@keyframes splashFadeOut {
    0% { opacity: 0; }
    5% { opacity: 1; }
    75% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}