/*
Theme Name: yoishut_ver2
Author: kanefuku
Version: 1.0
*/

:root {
    --neon-yellow: #FFD400;
    --neon-cyan: #00F0FF;
    --neon-red: #FF003C;
    --neon-black: #050505;
    --dark-gray: #111;
    --light-gray: #ccc;

    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
}

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

body {
    background-color: var(--neon-black);
    color: #fff;
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

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

ul {
    list-style: none;
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 170px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--neon-yellow);
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(255, 212, 0, 0.5);
    letter-spacing: 2px;
    border-bottom: solid 8px #00eaff;
}

.section-title.center {
    text-align: center;
}

.section-title .small {
    font-size: 1rem;
    color: #fff;
    opacity: 0.7;
}

.section-desc {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* --- Loading --- */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 1;
}

.loader {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--neon-yellow);
    animation: blink 0.5s infinite;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 212, 0, 0.2);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--neon-yellow);
    user-select: none;
    cursor: pointer;
}

.site-header nav ul {
    display: flex;
    gap: 30px;
}

.site-header nav a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #fff;
    position: relative;
}

.site-header nav a:hover {
    color: var(--neon-yellow);
    text-shadow: 0 0 8px var(--neon-yellow);
}

/* --- Custom Cursor --- */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-yellow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 212, 0, 0.6);
}

.custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor {
    width: 40px;
    height: 40px;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
}

.cursor-trail {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--neon-yellow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    animation: trailFade 0.5s ease-out forwards;
}

.click-particle {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    animation: particleExplode 0.8s ease-out forwards;
}

@keyframes trailFade {
    to {
        opacity: 0;
        transform: scale(0.5);
    }
}

@keyframes particleExplode {
    to {
        transform: translate(var(--tx), var(--ty));
        opacity: 0;
    }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.2) saturate(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(5, 5, 5, 0.9) 100%);
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.3), rgba(5, 5, 5, 1));
    z-index: 2;
}

.hero-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0) 50%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.2));
    background-size: 100% 4px;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.hero-product-img {
    max-width: 300px;
    margin-bottom: 2rem;
    margin-top: 13rem;
    filter: drop-shadow(0 0 20px rgba(255, 212, 0, 0.5));
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

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

.hero-sub {
    font-family: var(--font-heading);
    color: var(--neon-cyan);
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    position: relative;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Button Neon */
.btn-neon {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--neon-yellow);
    color: var(--neon-yellow);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-yellow);
    z-index: -1;
    transition: 0.4s;
}

.btn-neon:hover {
    color: var(--neon-black);
    box-shadow: 0 0 20px var(--neon-yellow);
}

.btn-neon:hover::before {
    left: 0;
}

.btn-neon.large {
    font-size: 1.5rem;
    padding: 20px 60px;
}

.scroll-indicator {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    z-index: 10;
    animation: bounce 2s infinite;
}

/* --- Glitch Effect --- */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    color: var(--neon-cyan);
    z-index: -1;
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch::after {
    color: var(--neon-red);
    z-index: -2;
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

.section,
.feature-card,
.topic-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

.scramble-char {
  color: #00eaff;
  text-shadow: 0 0 6px rgba(0, 234, 255, 0.8);
}

/* --- Concept Section --- */
.concept {
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 212, 0, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg,
            #050505,
            #050505 10px,
            #0a0a0a 10px,
            #0a0a0a 20px);
    position: relative;
    overflow: hidden;
}

.concept::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle, rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 212, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px;
    background-position: 0 0, 25px 25px;
    animation: bgMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes bgMove {
    0% {
        background-position: 0 0, 25px 25px;
    }
    100% {
        background-position: 50px 50px, 75px 75px;
    }
}

.concept .container {
    position: relative;
    z-index: 1;
}

.concept-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.concept-text {
    flex: 1;
    min-width: 300px;
}

.concept-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.cyber-border-img {
    max-width: 100%;
    border: 2px solid var(--neon-cyan);
    padding: 10px;
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.concept-text h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.highlight {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(255, 212, 0, 0.5);
}

/* --- Features Section --- */
.features {
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(255, 212, 0, 0.15) 0%, transparent 70%),
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255, 212, 0, 0.03) 50px, rgba(255, 212, 0, 0.03) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 212, 0, 0.03) 50px, rgba(255, 212, 0, 0.03) 51px),
        #050505;
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 212, 0, 0.3);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.card-icon {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 20px;
    right: 20px;
    transition: 0.3s;
}

.features-img {
    width: 80%;
    margin: 0 auto;
    max-width: 250px;
    display: block;
}

.feature-card:hover .card-icon {
    color: var(--neon-yellow);
    opacity: 0.2;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

/* --- Video Section --- */
.video {
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(255, 0, 60, 0.2) 0%, transparent 60%),
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255, 0, 60, 0.05) 3px, rgba(255, 0, 60, 0.05) 6px),
        #000;
    position: relative;
    overflow: hidden;
}

.video::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 60, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: redPulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

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

.video .container {
    position: relative;
    z-index: 1;
}

.cyber-frame {
    border: 2px solid #222;
    padding: 20px;
    position: relative;
}

.cyber-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--neon-yellow);
    border-left: 2px solid var(--neon-yellow);
}

.cyber-frame::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--neon-yellow);
    border-right: 2px solid var(--neon-yellow);
}

.video-slider {
    margin-top: 40px;
}

.video-slide {
    padding: 0 15px;
    outline: none;
}

.video-container {
    position: relative;
    background: #000;
    border: 2px solid #333;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container:hover {
    border-color: var(--neon-yellow);
    box-shadow: 0 0 20px rgba(255, 212, 0, 0.3);
}

.archive-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
    pointer-events: none;
}

.video-slide.playing .video-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border: 3px solid var(--neon-yellow);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--neon-yellow);
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 212, 0, 0.8);
    pointer-events: none;
}

.video-container:hover .video-play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 212, 0, 0.6);
}

.video-slide.playing .video-play-btn {
    opacity: 0;
}

.video-info {
    margin-top: 20px;
    text-align: center;
}

.video-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.video-info p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
}

.video-slider .slick-prev,
.video-slider .slick-next {
    width: 50px;
    height: 50px;
    z-index: 10;
}

.video-slider .slick-prev {
    left: -60px;
}

.video-slider .slick-next {
    right: -60px;
}

.video-slider .slick-prev:before,
.video-slider .slick-next:before {
    font-size: 40px;
    color: var(--neon-cyan);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.video-slider .slick-prev:hover:before,
.video-slider .slick-next:hover:before {
    color: var(--neon-yellow);
    opacity: 1;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
}

.video-slider .slick-dots {
    bottom: -50px;
}

.video-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--neon-cyan);
    opacity: 0.5;
}

.video-slider .slick-dots li.slick-active button:before {
    color: var(--neon-yellow);
    opacity: 1;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    animation: scan 3s infinite linear;
}

@keyframes scan {
    0% {
        top: 0;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* --- Article Topics Section --- */
.article-topics {
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 60, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 50%, rgba(0, 240, 255, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, rgba(5, 5, 15, 0.98) 0%, rgba(10, 10, 25, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.article-topics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255, 212, 0, 0.02) 80px, rgba(255, 212, 0, 0.02) 81px);
    pointer-events: none;
    z-index: 0;
}

.article-topics .container {
    position: relative;
    z-index: 1;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.topic-card {
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.95) 0%, rgba(40, 20, 60, 0.9) 100%);
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.topic-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-yellow));
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.topic-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-yellow);
    box-shadow: 
        0 20px 50px rgba(0, 240, 255, 0.3),
        0 0 40px rgba(255, 212, 0, 0.2);
}

.topic-card:hover::before {
    opacity: 0.2;
}

.topic-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.topic-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.topic-card:hover .topic-image {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.topic-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 16px;
    background: var(--neon-yellow);
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 212, 0, 0.6);
}

.topic-content {
    padding: 25px;
}

.topic-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--neon-yellow);
    margin-bottom: 12px;
    line-height: 1.4;
    text-shadow: 0 0 10px rgba(255, 212, 0, 0.5);
    transition: all 0.3s ease;
}

.topic-card:hover .topic-title {
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
}

.topic-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.topic-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.topic-date,
.topic-read {
    display: flex;
    align-items: center;
    gap: 5px;
}

.topics-view-more {
    text-align: center;
    margin-top: 60px;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.2) 0%, rgba(0, 240, 255, 0.05) 100%);
    border: 2px solid var(--neon-cyan);
    border-radius: 50px;
    color: var(--neon-cyan);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(0, 240, 255, 0.3),
        inset 0 0 15px rgba(0, 240, 255, 0.1);
}

.btn-view-more:hover {
    background: rgba(0, 240, 255, 0.3);
    box-shadow: 
        0 0 40px rgba(0, 240, 255, 0.6),
        inset 0 0 25px rgba(0, 240, 255, 0.2);
    transform: translateY(-3px);
}

.btn-view-more .arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-view-more:hover .arrow {
    transform: translateX(5px);
}

/* Article Topics Responsive */
@media (max-width: 992px) {
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .topics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .topic-image-wrapper {
        height: 180px;
    }
    
    .topic-content {
        padding: 20px;
    }
    
    .topic-title {
        font-size: 1.2rem;
    }
}

/* --- Article Detail Page --- */
.article-detail {
    background: 
        linear-gradient(180deg, rgba(5, 5, 15, 0.98) 0%, rgba(10, 10, 25, 0.95) 100%);
    min-height: 100vh;
    padding-top: 100px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

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

.breadcrumb a:hover {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(255, 212, 0, 0.8);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.7);
}

.article-header {
    margin-bottom: 40px;
}

.article-category {
    display: inline-block;
    padding: 8px 20px;
    background: var(--neon-yellow);
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(255, 212, 0, 0.6);
}

.article-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--neon-yellow);
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(255, 212, 0, 0.6);
}

.article-meta {
    display: flex;
    gap: 25px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-featured-image {
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--neon-cyan);
    box-shadow: 
        0 0 40px rgba(0, 240, 255, 0.5),
        0 0 80px rgba(0, 240, 255, 0.2);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-body {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    margin-bottom: 60px;
}

.article-content {
    max-width: 800px;
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--neon-cyan);
    margin: 40px 0 20px;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
}

.article-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.article-cta-box {
    background: linear-gradient(135deg, rgba(255, 212, 0, 0.15) 0%, rgba(255, 212, 0, 0.05) 100%);
    border: 2px solid var(--neon-yellow);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 
        0 0 30px rgba(255, 212, 0, 0.3),
        inset 0 0 20px rgba(255, 212, 0, 0.1);
}

.article-cta-box h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--neon-yellow);
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 212, 0, 0.8);
}

.article-cta-box p {
    margin-bottom: 25px;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.sidebar-widget {
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.9) 0%, rgba(40, 20, 60, 0.85) 100%);
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

.related-articles {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-articles li {
    margin-bottom: 15px;
}

.related-articles a {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.related-articles a:hover {
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
}

.related-articles img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid rgba(0, 240, 255, 0.3);
}

.related-articles span {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: block;
    padding: 10px 15px;
    background: rgba(0, 240, 255, 0.05);
    border-left: 3px solid var(--neon-cyan);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.category-list a:hover {
    background: rgba(0, 240, 255, 0.15);
    padding-left: 20px;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

.article-back {
    text-align: center;
    margin-top: 60px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.2) 0%, rgba(0, 240, 255, 0.05) 100%);
    border: 2px solid var(--neon-cyan);
    border-radius: 50px;
    color: var(--neon-cyan);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(0, 240, 255, 0.3),
        inset 0 0 15px rgba(0, 240, 255, 0.1);
}

.btn-back:hover {
    background: rgba(0, 240, 255, 0.3);
    box-shadow: 
        0 0 40px rgba(0, 240, 255, 0.6),
        inset 0 0 25px rgba(0, 240, 255, 0.2);
    transform: translateY(-3px);
}

.btn-back .arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-back:hover .arrow {
    transform: translateX(-5px);
}

/* Article Detail Responsive */
@media (max-width: 992px) {
    .article-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .article-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .article-title {
        font-size: 1.6rem;
    }
    
    .article-meta {
        font-size: 0.85rem;
        gap: 15px;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-content p {
        font-size: 1rem;
    }
}

/* --- Ingredients Section --- */
.ingredients {
    background: linear-gradient(135deg, #1a0033 0%, #330066 50%, #1a0033 100%);
    position: relative;
    overflow: hidden;
}

.ingredients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(200, 0, 255, 0.03) 2px,
        rgba(200, 0, 255, 0.03) 4px
    );
    animation: scanDown 10s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes scanDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
    }
}

.ingredients .container {
    position: relative;
    z-index: 1;
}

/* Featured Section - Full Width for Curcumin */
.ingredient-featured-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.ingredient-card.featured-full {
    width: 100%;
    background: linear-gradient(135deg, rgba(30, 20, 50, 0.95) 0%, rgba(60, 30, 80, 0.9) 100%);
    border: 3px solid var(--neon-yellow);
    border-radius: 8px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.ingredient-card.featured-full::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-yellow), var(--neon-red));
    border-radius: 8px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.ingredient-card.featured-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 212, 0, 0.4);
}

.ingredient-card.featured-full:hover::before {
    opacity: 0.3;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.featured-text {
    display: flex;
    flex-direction: column;
}

.featured-graphs {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

/* Other Ingredients - 3 Column Grid */
.ingredients-grid-other {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ingredient-card {
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.9) 0%, rgba(40, 20, 60, 0.8) 100%);
    border: 2px solid #444;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.ingredient-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-yellow), var(--neon-red));
    border-radius: 8px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.3);
}

.ingredient-card:hover::before {
    opacity: 0.3;
}

.ingredient-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(30, 20, 50, 0.95) 0%, rgba(60, 30, 80, 0.9) 100%);
    border: 3px solid var(--neon-yellow);
}

.ingredient-card.featured:hover {
    box-shadow: 0 15px 50px rgba(255, 212, 0, 0.4);
}

.ingredient-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    background: rgba(0, 240, 255, 0.1);
}

.ingredient-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.1);
}

.ingredient-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--neon-yellow);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 212, 0, 0.5);
}

.ingredient-card .subtitle {
    font-size: 1rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    font-weight: bold;
}

.ingredient-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 20px auto;
    display: block;
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.ingredient-graph {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 30px auto 20px;
    display: block;
    border: 2px solid var(--neon-yellow);
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.ingredient-card .dose {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin: 15px 0;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
    font-weight: bold;
}

.ingredient-card p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.ingredient-card ul {
    list-style: none;
    margin-top: 15px;
}

.ingredient-card li {
    color: #aaa;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.ingredient-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-yellow);
    font-size: 1.2rem;
}

/* --- Customer Voice Section --- */
.customer-voice {
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(255, 212, 0, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(255, 0, 60, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(0, 240, 255, 0.02) 30px, rgba(0, 240, 255, 0.02) 60px),
        #0a0a0a;
    position: relative;
    overflow: hidden;
}

.customer-voice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(255, 212, 0, 0.02) 4px, rgba(255, 212, 0, 0.02) 8px);
    animation: scanDown 15s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.customer-voice .container {
    position: relative;
    z-index: 1;
}

.customer-voice-content {
    margin-top: 50px;
}

.voice-text-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.8) 0%, rgba(40, 20, 60, 0.6) 100%);
    border: 2px solid rgba(255, 212, 0, 0.3);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 50px;
    position: relative;
}

.voice-text-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 20px;
    width: 60px;
    height: 4px;
    background: var(--neon-yellow);
    box-shadow: 0 0 10px var(--neon-yellow);
}

.voice-description {
    font-size: 1.1rem;
    line-height: 2;
    color: #fff;
    margin-bottom: 20px;
}

.highlight-stat {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--neon-yellow);
    font-weight: bold;
    text-shadow: 0 0 15px rgba(255, 212, 0, 0.8);
}

.voice-note {
    font-size: 0.85rem;
    color: var(--neon-cyan);
    opacity: 0.8;
}

.voice-image-container {
    max-width: 460px;
    display: flex;
    justify-content: center;
    margin: 50px  auto;
}

.voice-image {
    max-width: 100%;
    height: auto;
    border: 3px solid var(--neon-cyan);
    border-radius: 8px;
    box-shadow: 
        0 0 30px rgba(0, 240, 255, 0.4),
        0 0 60px rgba(255, 212, 0, 0.2);
    transition: all 0.3s ease;
}

.voice-image:hover {
    transform: scale(1.02);
    box-shadow: 
        0 0 40px rgba(0, 240, 255, 0.6),
        0 0 80px rgba(255, 212, 0, 0.3);
}

.voice-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.9) 0%, rgba(40, 20, 60, 0.8) 100%);
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-yellow));
    border-radius: 8px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-yellow);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

.stat-card:hover::before {
    opacity: 0.2;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--neon-yellow);
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 212, 0, 0.6);
}

.stat-label {
    font-size: 1rem;
    color: var(--neon-cyan);
    line-height: 1.5;
}

/* --- Social Media Section --- */
.social-media {
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 212, 0, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(0, 240, 255, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, rgba(10, 10, 25, 0.95) 0%, rgba(5, 5, 15, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.social-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255, 212, 0, 0.02) 60px, rgba(255, 212, 0, 0.02) 61px),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(0, 240, 255, 0.02) 60px, rgba(0, 240, 255, 0.02) 61px);
    animation: diagonalMove 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.social-media .container {
    position: relative;
    z-index: 1;
}

.social-header {
    margin: 50px auto 30px;
    max-width: 900px;
}

.social-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.9) 0%, rgba(40, 20, 60, 0.85) 100%);
    border: 2px solid var(--neon-yellow);
    border-radius: 12px;
    box-shadow: 
        0 0 30px rgba(255, 212, 0, 0.3),
        inset 0 0 20px rgba(255, 212, 0, 0.1);
}

.social-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--neon-cyan);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-info {
    flex: 1;
}

.social-username {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--neon-yellow);
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(255, 212, 0, 0.6);
}

.social-followers {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.social-feed {
    margin: 30px auto;
    max-width: 1000px;
    position: relative;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.6) 0%, rgba(40, 20, 60, 0.5) 100%);
    border-radius: 12px;
    border: 2px solid rgba(0, 240, 255, 0.3);
    box-shadow: 
        0 0 30px rgba(0, 240, 255, 0.2),
        inset 0 0 20px rgba(0, 240, 255, 0.05);
}

.instagram-post {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram-post:hover {
    transform: scale(1.05);
    z-index: 10;
}

.post-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.instagram-post:hover .post-image img {
    filter: brightness(0.7);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.post-stats {
    display: flex;
    gap: 20px;
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.social-feed-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 3px solid var(--neon-cyan);
    box-shadow: 
        0 0 40px rgba(0, 240, 255, 0.5),
        0 0 80px rgba(0, 240, 255, 0.2);
    transition: all 0.4s ease;
}

.social-feed-image:hover {
    transform: scale(1.02);
    box-shadow: 
        0 0 60px rgba(0, 240, 255, 0.7),
        0 0 120px rgba(0, 240, 255, 0.3);
}

.social-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, rgba(255, 212, 0, 0.2) 0%, rgba(255, 212, 0, 0.05) 100%);
    border: 3px solid var(--neon-yellow);
    border-radius: 50px;
    color: var(--neon-yellow);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 30px rgba(255, 212, 0, 0.4),
        inset 0 0 20px rgba(255, 212, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.btn-social:hover {
    background: rgba(255, 212, 0, 0.3);
    box-shadow: 
        0 0 50px rgba(255, 212, 0, 0.7),
        inset 0 0 30px rgba(255, 212, 0, 0.2);
    transform: translateY(-3px);
}

.btn-social:hover::before {
    left: 100%;
}

.social-icon {
    font-size: 1.5rem;
    animation: iconBounce 2s ease-in-out infinite;
}

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

/* Responsive for Social Media Section */
@media (max-width: 992px) {
    .social-header,
    .social-feed {
        max-width: 700px;
    }
    
    .social-username {
        font-size: 1.5rem;
    }
    
    .instagram-grid {
        gap: 10px;
        padding: 15px;
    }
}

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

@media (max-width: 576px) {
    .social-profile {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .social-avatar {
        width: 60px;
        height: 60px;
    }
    
    .social-username {
        font-size: 1.3rem;
    }
    
    .social-followers {
        font-size: 1rem;
    }
    
    .btn-social {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
    }
    
    .post-stats {
        font-size: 1rem;
        gap: 15px;
    }
}

/* --- Shipment Stats Section --- */
.stats-section {
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 212, 0, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 0% 0%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 0, 60, 0.1) 0%, transparent 50%),
        #000;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(255, 212, 0, 0.03) 100px, rgba(255, 212, 0, 0.03) 101px),
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(0, 240, 255, 0.03) 100px, rgba(0, 240, 255, 0.03) 101px);
    animation: gridSlide 15s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.stats-image-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 50px auto 0;
}

.stats-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 4px solid var(--neon-yellow);
    box-shadow: 
        0 0 50px rgba(255, 212, 0, 0.6),
        0 0 100px rgba(255, 212, 0, 0.3),
        inset 0 0 30px rgba(255, 212, 0, 0.1);
    transition: all 0.4s ease;
    animation: imagePulse 3s ease-in-out infinite;
}

@keyframes imagePulse {
    0%, 100% {
        box-shadow: 
            0 0 50px rgba(255, 212, 0, 0.6),
            0 0 100px rgba(255, 212, 0, 0.3),
            inset 0 0 30px rgba(255, 212, 0, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 0 70px rgba(255, 212, 0, 0.8),
            0 0 140px rgba(255, 212, 0, 0.5),
            inset 0 0 50px rgba(255, 212, 0, 0.2);
        transform: scale(1.02);
    }
}

.stats-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 80px rgba(255, 212, 0, 0.9),
        0 0 160px rgba(255, 212, 0, 0.6),
        inset 0 0 60px rgba(255, 212, 0, 0.3);
}

.stats-image-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 25px;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Responsive for Stats Section */
@media (max-width: 992px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-image-content {
        max-width: 700px;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-image {
        border-width: 3px;
    }
    
    .stats-image-note {
        font-size: 0.85rem;
        margin-top: 20px;
    }
}

/* --- GMP Factory Section --- */
.gmp-factory {
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10, 10, 25, 0.95) 0%, rgba(5, 5, 15, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.gmp-factory::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 240, 255, 0.03) 2px, rgba(0, 240, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 240, 255, 0.03) 2px, rgba(0, 240, 255, 0.03) 4px);
    animation: gridSlide 20s linear infinite;
    pointer-events: none;
}

.gmp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.gmp-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 0 40px rgba(0, 240, 255, 0.3),
        0 0 80px rgba(0, 240, 255, 0.1);
    border: 3px solid var(--neon-cyan);
}

.gmp-factory-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gmp-image-container:hover .gmp-factory-image {
    transform: scale(1.05);
}

.gmp-text-box {
    padding: 20px;
}

.gmp-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.5;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.highlight-gmp {
    color: var(--neon-cyan);
    font-size: 2.8rem;
    font-weight: bold;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
    display: inline-block;
    animation: glowPulse 2s ease-in-out infinite;
}

.gmp-badge {
    margin: 30px 0;
    display: flex;
    justify-content: flex-start;
}

.badge-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--neon-cyan);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2) 0%, rgba(0, 120, 150, 0.3) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 30px rgba(0, 240, 255, 0.5),
        inset 0 0 20px rgba(0, 240, 255, 0.2);
    animation: rotateBadge 10s linear infinite;
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: bold;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
    letter-spacing: 2px;
}

.badge-subtext {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--neon-cyan);
    margin-top: 5px;
    letter-spacing: 1px;
}

@keyframes rotateBadge {
    0%, 100% {
        transform: rotate(0deg);
        box-shadow: 
            0 0 30px rgba(0, 240, 255, 0.5),
            inset 0 0 20px rgba(0, 240, 255, 0.2);
    }
    50% {
        transform: rotate(5deg);
        box-shadow: 
            0 0 40px rgba(0, 240, 255, 0.7),
            inset 0 0 30px rgba(0, 240, 255, 0.3);
    }
}

.gmp-description {
    margin: 30px 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.gmp-description p {
    margin: 8px 0;
}

.gmp-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.gmp-features li {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.1) 0%, transparent 100%);
    border-left: 3px solid var(--neon-cyan);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.gmp-features li:hover {
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.2) 0%, rgba(0, 240, 255, 0.05) 100%);
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-right: 15px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

.gmp-features li span:last-child {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive for GMP Section */
@media (max-width: 992px) {
    .gmp-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gmp-title {
        font-size: 1.8rem;
    }
    
    .highlight-gmp {
        font-size: 2.2rem;
    }
}

/* --- Topics Section --- */
.topics {
    background: 
        radial-gradient(circle at 80% 20%, rgba(0, 255, 0, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 255, 0, 0.03) 2px, rgba(0, 255, 0, 0.03) 4px),
        #080808;
    position: relative;
    overflow: hidden;
}

.topics::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.1) 0%, transparent 70%);
    animation: matrixPulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes matrixPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.topics .container {
    position: relative;
    z-index: 1;
}

.topic-list {
    border-top: 1px solid #333;
}

.topic-item {
    border-bottom: 1px solid #333;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    transition: 0.2s;
}

.topic-item:hover {
    background: rgba(255, 212, 0, 0.05);
    padding-left: 10px;
    border-left: 4px solid var(--neon-yellow);
}

.topic-date {
    font-family: var(--font-heading);
    color: #888;
    margin-right: 20px;
    min-width: 100px;
}

.topic-cat {
    color: var(--neon-cyan);
    font-weight: bold;
    margin-right: 20px;
    min-width: 80px;
}

.topic-link {
    color: #fff;
    flex: 1;
}

.topic-link:hover {
    text-decoration: underline;
}

/* --- Events Section --- */
.events {
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 0, 60, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 60%),
        repeating-linear-gradient(120deg, transparent, transparent 40px, rgba(255, 212, 0, 0.02) 40px, rgba(255, 212, 0, 0.02) 80px),
        #050505;
    position: relative;
    overflow: hidden;
}

.events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(0, 240, 255, 0.03) 60px, rgba(0, 240, 255, 0.03) 61px),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255, 0, 60, 0.03) 60px, rgba(255, 0, 60, 0.03) 61px);
    animation: diagonalMove 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.events .container {
    position: relative;
    z-index: 1;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.event-card {
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.95) 0%, rgba(40, 20, 60, 0.9) 100%);
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 8px;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.event-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-yellow), var(--neon-red));
    border-radius: 8px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-yellow);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.4);
}

.event-card:hover::before {
    opacity: 0.3;
}

.event-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 2;
}

.event-status.upcoming {
    background: var(--neon-yellow);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 212, 0, 0.6);
}

.event-status.past {
    background: rgba(100, 100, 100, 0.6);
    color: #888;
    border: 1px solid #555;
}

.event-date {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2) 0%, rgba(255, 0, 60, 0.2) 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid rgba(0, 240, 255, 0.3);
    min-height: 140px;
}

.date-display {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: bold;
    color: var(--neon-yellow);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 212, 0, 0.8);
    letter-spacing: -2px;
}

.date-year {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--neon-cyan);
    margin-top: 8px;
    letter-spacing: 2px;
}

.event-content {
    padding: 30px;
    flex-grow: 1;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--neon-yellow);
    margin-bottom: 15px;
    line-height: 1.4;
}

.event-location {
    color: var(--neon-cyan);
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.event-description {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.event-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.time-icon {
    font-size: 1.1rem;
}

.event-link {
    display: block;
    padding: 20px 30px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-align: center;
    border-top: 1px solid rgba(0, 240, 255, 0.3);
    transition: all 0.3s ease;
}

.event-link:hover {
    background: rgba(0, 240, 255, 0.2);
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(255, 212, 0, 0.6);
}

/* --- Partners/Retailers Section --- */
.partners {
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 212, 0, 0.08) 0%, transparent 60%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 212, 0, 0.02) 2px, rgba(255, 212, 0, 0.02) 4px),
        #0a0a0a;
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(255, 212, 0, 0.03) 100px, rgba(255, 212, 0, 0.03) 101px);
    pointer-events: none;
    z-index: 0;
}

.partners .container {
    position: relative;
    z-index: 1;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.partner-card {
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.95) 0%, rgba(40, 30, 50, 0.9) 100%);
    border: 2px solid rgba(255, 212, 0, 0.3);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-yellow), var(--neon-cyan), var(--neon-yellow));
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(255, 212, 0, 0.3),
        0 0 40px rgba(255, 212, 0, 0.2);
}

.partner-card:hover::before {
    opacity: 0.3;
}

.partner-logo-container {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo-box {
    width: 250px;
    height: 120px;
    border: 3px solid var(--neon-cyan);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 
        0 0 20px rgba(0, 240, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    padding: 15px;
}

.partner-logo-box.amazon {
    border-color: #FF9900;
    background: #ffffff;
    box-shadow: 
        0 0 20px rgba(255, 153, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.partner-logo-box.donki {
    border-color: #FFD700;
    background: #ffffff;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.partner-card:hover .partner-logo-box {
    transform: scale(1.05);
    box-shadow: 
        0 0 30px rgba(0, 240, 255, 0.5),
        inset 0 0 30px rgba(0, 240, 255, 0.2);
}

.partner-card:hover .partner-logo-box.amazon {
    box-shadow: 
        0 0 30px rgba(255, 153, 0, 0.5),
        inset 0 0 30px rgba(255, 153, 0, 0.2);
}

.partner-card:hover .partner-logo-box.donki {
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.5),
        inset 0 0 30px rgba(255, 215, 0, 0.2);
}

.partner-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo-img {
    filter: brightness(1.3) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.partner-logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: bold;
    color: #FF9900;
    text-shadow: 0 0 15px rgba(255, 153, 0, 0.8);
    letter-spacing: 2px;
}

.partner-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: bold;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
    letter-spacing: 2px;
}

.partner-name.amazon {
    color: #FF9900;
    text-shadow: 0 0 15px rgba(255, 153, 0, 0.8);
}

.partner-info {
    text-align: center;
}

.partner-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--neon-yellow);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 212, 0, 0.5);
}

.partner-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.2) 0%, rgba(0, 240, 255, 0.05) 100%);
    border: 2px solid var(--neon-cyan);
    border-radius: 6px;
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.partner-link:hover {
    background: rgba(0, 240, 255, 0.3);
    box-shadow: 
        0 0 20px rgba(0, 240, 255, 0.5),
        inset 0 0 15px rgba(0, 240, 255, 0.2);
    transform: translateX(5px);
}

.partner-link:hover::before {
    left: 100%;
}

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

.partner-link:hover .arrow {
    transform: translateX(5px);
}

/* Responsive for Partners Section */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partner-card {
        padding: 25px;
    }
    
    .partner-logo-box {
        width: 200px;
        height: 100px;
    }
    
    .partner-logo-text {
        font-size: 1.6rem;
    }
}

/* --- Contact --- */
.contact {
    background: 
        linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, transparent 50%, rgba(255, 0, 60, 0.1) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 212, 0, 0.03) 20px, rgba(255, 212, 0, 0.03) 40px),
        repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(0, 240, 255, 0.03) 20px, rgba(0, 240, 255, 0.03) 40px),
        #000;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255, 212, 0, 0.02) 40px, rgba(255, 212, 0, 0.02) 80px),
        repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(0, 240, 255, 0.02) 40px, rgba(0, 240, 255, 0.02) 80px);
    animation: diagonalMove 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes diagonalMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-box {
    text-align: center;
    background: radial-gradient(circle, #222 0%, #000 100%);
    padding: 80px 20px;
    border: 1px solid #333;
}

/* --- Footer --- */
.site-footer {
    padding: 40px 0;
    text-align: center;
    color: #666;
    border-top: 1px solid #222;
}

/* --- Animations --- */
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}

@keyframes glitch-anim-1 {
    0% {
        clip-path: inset(20% 0 80% 0);
        transform: translate(-2px, 2px);
    }
    20% {
        clip-path: inset(60% 0 10% 0);
        transform: translate(2px, -2px);
    }
    40% {
        clip-path: inset(40% 0 50% 0);
        transform: translate(-2px, 2px);
    }
    60% {
        clip-path: inset(80% 0 5% 0);
        transform: translate(2px, -2px);
    }
    80% {
        clip-path: inset(10% 0 70% 0);
        transform: translate(-2px, 2px);
    }
    100% {
        clip-path: inset(30% 0 40% 0);
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: inset(10% 0 60% 0);
        transform: translate(2px, -2px);
    }
    20% {
        clip-path: inset(80% 0 5% 0);
        transform: translate(-2px, 2px);
    }
    40% {
        clip-path: inset(30% 0 20% 0);
        transform: translate(2px, -2px);
    }
    60% {
        clip-path: inset(10% 0 80% 0);
        transform: translate(-2px, 2px);
    }
    80% {
        clip-path: inset(40% 0 40% 0);
        transform: translate(2px, -2px);
    }
    100% {
        clip-path: inset(70% 0 10% 0);
        transform: translate(-2px, 2px);
    }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .topic-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .site-header {
        padding: 15px 20px;
    }

    .site-header nav {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .video-slider .slick-prev {
        left: 10px;
    }
    
    .video-slider .slick-next {
        right: 10px;
    }

    /* Ingredients Responsive */
    .featured-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ingredients-grid-other {
        grid-template-columns: 1fr;
    }

    .ingredient-card.featured {
        grid-column: span 1;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
    }

    /* Customer Voice Responsive */
    .voice-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .voice-description {
        font-size: 1rem;
    }

    .highlight-stat {
        font-size: 1.3rem;
    }

    /* Events Responsive */
    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .ingredients-grid-other {
        grid-template-columns: repeat(2, 1fr);
    }

    .voice-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Video Popup Modal --- */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.video-modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.95) 0%, rgba(40, 20, 60, 0.95) 100%);
    border: 3px solid var(--neon-cyan);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 
        0 0 60px rgba(0, 240, 255, 0.6),
        0 0 120px rgba(0, 240, 255, 0.3),
        inset 0 0 40px rgba(0, 240, 255, 0.1);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.video-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: var(--neon-cyan);
    border: 3px solid var(--neon-yellow);
    border-radius: 50%;
    color: #000;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 30px rgba(0, 240, 255, 0.8),
        0 0 60px rgba(0, 240, 255, 0.4);
    z-index: 3;
}

.video-modal-close:hover {
    background: var(--neon-yellow);
    border-color: var(--neon-cyan);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 
        0 0 40px rgba(255, 212, 0, 0.9),
        0 0 80px rgba(255, 212, 0, 0.5);
}

.video-modal-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0, 240, 255, 0.2);
}

.video-modal-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Add cursor pointer to video containers */
.video-container {
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: scale(1.02);
}

.video-container:hover .video-play-btn {
    transform: scale(1.2);
    box-shadow: 
        0 0 30px rgba(0, 240, 255, 0.8),
        0 0 60px rgba(0, 240, 255, 0.4);
}

/* Modal Responsive */
@media (max-width: 992px) {
    .video-modal-content {
        width: 95%;
        padding: 15px;
    }
    
    .video-modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        top: -12px;
        right: -12px;
    }
}

@media (max-width: 576px) {
    .video-modal-content {
        width: 98%;
        padding: 10px;
        border-width: 2px;
    }
    
    .video-modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
        top: -10px;
        right: -10px;
    }
}


/* ===== Contact Page Form Styling ===== */
.contact-page .contact-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

.contact-page input[type="text"],
.contact-page input[type="email"],
.contact-page input[type="tel"],
.contact-page input[type="url"],
.contact-page textarea,
.contact-page select {
  width: 100%;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(0,240,255,0.35);
  color: #fff;
  padding: 14px 14px;
  border-radius: 10px;
  outline: none;
  transition: 0.25s;
  box-shadow: 0 0 0 rgba(0,240,255,0);
}

.contact-page textarea { min-height: 160px; resize: vertical; }

.contact-page input:focus,
.contact-page textarea:focus,
.contact-page select:focus {
  border-color: rgba(255,212,0,0.7);
  box-shadow: 0 0 18px rgba(0,240,255,0.18);
}

.contact-page label { display:block; margin: 14px 0 8px; opacity: .9; }

.contact-page button,
.contact-page input[type="submit"] {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,212,0,0.9);
  background: rgba(255,212,0,0.12);
  color: #fff;
  cursor: pointer;
  transition: .25s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-page button:hover,
.contact-page input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(255,212,0,0.22);

}
	
/* ===== Privacy Page Styling ===== */
.privacy-hero {
  padding-top: 140px;
  padding-bottom: 70px;
	
}

.privacy-body {
  padding-top: 70px;
}

.privacy-box {
  position: relative;
  padding: 34px 26px;
  border: 1px solid rgba(0,240,255,0.28);
  border-radius: 18px;
  background: rgba(0,0,0,0.45);
  box-shadow: 0 0 30px rgba(0,240,255,0.08);
}

.privacy-meta {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: flex-end;
  margin-bottom: 18px;
  opacity: 0.85;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.privacy-meta-label {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0,240,255,0.35);
}

.privacy-content {
  max-width: 920px;
  margin: 0 auto;
  color: rgba(255,255,255,0.92);
  line-height: 1.95;
  font-size: 0.98rem;
}

.privacy-content h2,
.privacy-content h3 {
  margin: 32px 0 12px;
  color: var(--neon-yellow);
  text-shadow: 0 0 10px rgba(255,212,0,0.25);
  letter-spacing: 1px;
}

.privacy-content p {
  margin: 10px 0 16px;
}

.privacy-content a {
  color: var(--neon-cyan);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-content ul,
.privacy-content ol {
  margin: 12px 0 18px 1.2em;
}

.privacy-content li {
  margin: 8px 0;
}

.privacy-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,240,255,0.6), transparent);
  margin: 26px 0;
}

.privacy-content blockquote {
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 4px solid rgba(255,212,0,0.75);
  background: rgba(255,212,0,0.06);
  border-radius: 10px;
}

.privacy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 26px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(0,240,255,0.22);
}

.privacy-content th,
.privacy-content td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(0,240,255,0.16);
  vertical-align: top;
}

.privacy-content th {
  width: 28%;
  color: rgba(255,255,255,0.95);
  background: rgba(0,240,255,0.06);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.privacy-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

@media (max-width: 768px) {
  .privacy-box { padding: 26px 16px; }
  .privacy-meta { justify-content: flex-start; }
  .privacy-content th { width: auto; }
}
	/* ===== Privacy readability upgrade ===== */
.privacy-page .privacy-box{
  max-width: 980px;
  margin: 0 auto;
}

.privacy-page .privacy-content{
  max-width: 860px;
  margin: 0 auto;
}

.privacy-page .privacy-prose{
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: .02em;
  color: rgba(255,255,255,.92);
}

@media (min-width: 1024px){
  .privacy-page .privacy-prose{ font-size: 17px; }
}

/* 見出しのメリハリ（読み物向け） */
.privacy-page .privacy-prose h2{
  margin: 34px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,240,255,.28);
  color: var(--neon-yellow);
  text-shadow: 0 0 10px rgba(255,212,0,.20);
  letter-spacing: .06em;
}

.privacy-page .privacy-prose h3{
  margin: 22px 0 10px;
  color: rgba(255,255,255,.96);
  letter-spacing: .04em;
}

.privacy-page .privacy-prose p{
  margin: 0 0 16px;
}

/* 箇条書きを読みやすく */
.privacy-page .privacy-prose ul,
.privacy-page .privacy-prose ol{
  margin: 10px 0 18px 1.2em;
}
.privacy-page .privacy-prose li{
  margin: 8px 0;
}

/* 連絡先ブロックを“文書の締め”っぽく */
.privacy-page .privacy-prose .wp-block-group,
.privacy-page .privacy-prose blockquote{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(0,240,255,.14);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 18px 0;
}

/* LAST UPDATE の見栄え */
.privacy-page .privacy-meta{
  justify-content: flex-start; /* 右寄せ→左寄せで文書っぽく */
  margin-bottom: 16px;
  opacity: .9;
}

/* ボタンを中央寄せ（いまちょっと弱いので） */
.privacy-page .privacy-actions{
  justify-content: center;
  margin-top: 28px;
  gap: 12px;
}
	
/* --- How to Use Section --- */
.how-to-use {
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 212, 0, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255, 212, 0, 0.03) 3px, rgba(255, 212, 0, 0.03) 6px),
        #0a0a0a;
    position: relative;
    overflow: hidden;
}

.how-to-use::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(255, 212, 0, 0.02) 100px, rgba(255, 212, 0, 0.02) 101px),
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(0, 240, 255, 0.02) 100px, rgba(0, 240, 255, 0.02) 101px);
    animation: gridSlide 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridSlide {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.how-to-use .container {
    position: relative;
    z-index: 1;
}

.usage-slider {
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.usage-slide {
    padding: 0 20px;
    outline: none;
}

.usage-card {
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.95) 0%, rgba(40, 20, 60, 0.92) 100%);
    border: 3px solid var(--neon-yellow);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(255, 212, 0, 0.3),
        0 0 60px rgba(0, 240, 255, 0.2),
        inset 0 0 30px rgba(255, 212, 0, 0.05);
}

.usage-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-yellow), var(--neon-red), var(--neon-cyan));
    border-radius: 16px;
    opacity: 0.2;
    z-index: -1;
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite;
}

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

.step-number {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--neon-cyan);
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
}

.step-image-container {
    margin: 20px auto 30px;
    display: flex;
    justify-content: center;
    position: relative;
}

.step-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    border: 4px solid var(--neon-yellow);
    box-shadow: 
        0 0 40px rgba(255, 212, 0, 0.5),
        inset 0 0 30px rgba(255, 212, 0, 0.1);
    filter: brightness(1.05) contrast(1.1);
}

.step-icon {
    margin: 20px auto 30px;
    display: flex;
    justify-content: center;
}

.icon-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 212, 0, 0.2) 0%, rgba(0, 240, 255, 0.2) 100%);
    border: 4px solid var(--neon-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 40px rgba(255, 212, 0, 0.5),
        inset 0 0 30px rgba(255, 212, 0, 0.2);
    transition: all 0.4s ease;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 
            0 0 40px rgba(255, 212, 0, 0.5),
            inset 0 0 30px rgba(255, 212, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 0 60px rgba(255, 212, 0, 0.7),
            inset 0 0 50px rgba(255, 212, 0, 0.3);
        transform: scale(1.05);
    }
}

.icon-emoji {
    font-size: 5rem;
    line-height: 1;
    filter: drop-shadow(0 0 20px rgba(255, 212, 0, 0.8));
}

.step-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--neon-yellow);
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 212, 0, 0.8);
    letter-spacing: 2px;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
}

.step-content p {
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
}

.highlight-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--neon-cyan);
    font-weight: bold;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
    display: inline-block;
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
    }
    50% {
        text-shadow: 0 0 25px rgba(0, 240, 255, 1), 0 0 40px rgba(0, 240, 255, 0.6);
    }
}

.dosage {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.dosage-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--neon-yellow);
    font-weight: bold;
    display: inline-block;
    text-shadow: 0 0 20px rgba(255, 212, 0, 0.8);
    margin: 0 10px;
}

.step-note {
    font-size: 0.95rem;
    color: var(--neon-cyan);
    opacity: 0.9;
    padding: 15px 30px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 240, 255, 0.1) 50%, transparent 100%);
    border-top: 1px solid rgba(0, 240, 255, 0.3);
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
    letter-spacing: 1px;
}

.usage-instruction {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 212, 0, 0.05) 50%, transparent 100%);
    border-radius: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.instruction-icon {
    font-size: 1.8rem;
    margin: 0;
    animation: iconBounce 2s ease-in-out infinite;
}

.instruction-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 1px;
}

/* Slick Slider Customization for Usage Section */
.usage-slider .slick-dots {
    bottom: -60px;
}

.usage-slider .slick-dots li button:before {
    font-size: 14px;
    color: var(--neon-yellow);
    opacity: 0.4;
}

.usage-slider .slick-dots li.slick-active button:before {
    color: var(--neon-yellow);
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 212, 0, 0.8);
}

.usage-slider .slick-prev,
.usage-slider .slick-next {
    width: 50px;
    height: 50px;
    z-index: 10;
}

.usage-slider .slick-prev {
    left: -70px;
}

.usage-slider .slick-next {
    right: -70px;
}

.usage-slider .slick-prev:before,
.usage-slider .slick-next:before {
    font-size: 40px;
    color: var(--neon-yellow);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.usage-slider .slick-prev:hover:before,
.usage-slider .slick-next:hover:before {
    color: var(--neon-cyan);
    opacity: 1;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
}

/* Responsive for How to Use Section */
@media (max-width: 992px) {
    .usage-card {
        padding: 40px 30px;
        min-height: 450px;
    }
    
    .step-image {
        max-width: 350px;
        height: 220px;
    }
    
    .step-title {
        font-size: 1.8rem;
    }
    
    .step-content p {
        font-size: 1.1rem;
    }
    
    .dosage-number {
        font-size: 2rem;
    }
    
    .usage-slider .slick-prev {
        left: -50px;
    }
    
    .usage-slider .slick-next {
        right: -50px;
    }
}

@media (max-width: 768px) {
    .usage-card {
        padding: 35px 25px;
        min-height: 400px;
    }
    
    .step-image {
        max-width: 300px;
        height: 190px;
    }
    
    .step-title {
        font-size: 1.6rem;
    }
    
    .step-content p {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .highlight-text {
        font-size: 1.2rem;
    }
    
    .dosage-number {
        font-size: 1.8rem;
    }
    
    .usage-slider .slick-prev {
        left: 10px;
    }
    
    .usage-slider .slick-next {
        right: 10px;
    }
    
    .usage-slider .slick-prev:before,
    .usage-slider .slick-next:before {
        font-size: 30px;
    }
    
    .usage-instruction {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .instruction-text {
        font-size: 0.85rem;
    }
}