/* 🎵 HYPNOSIS MIC - Optimized Design System 🎵 */

/* === 1. CSS VARIABLES & DESIGN SYSTEM === */
:root {
    /* Primary Colors */
    --color-hypmic-red: #cc0439;
    --color-hypmic-pink: #ff0096;
    --color-hypmic-purple: #703d91;
    --color-hypmic-blue: #1e90ff;
    --color-hypmic-cyan: #00bfff;
    --color-hypmic-gold: #ffd700;
    
    /* Neon Colors */
    --color-neon-red: #ec1f56;
    --color-neon-pink: #ff1493;
    --color-neon-blue: #00d4ff;
    --color-neon-purple: #bf3eff;
    --color-electric-cyan: #00ffff;
    --color-laser-green: #39ff14;
    
    /* Background Colors */
    --color-void: #000000;
    --color-dark-1: #0a0a0a;
    --color-dark-2: #1a1a2e;
    --color-dark-3: #16213e;
    --color-glass: rgba(255, 255, 255, 0.03);
    --color-glass-border: rgba(255, 0, 150, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-hypmic-red) 0%, var(--color-hypmic-purple) 100%);
    /* --gradient-primary: linear-gradient(135deg, var(--color-hypmic-pink) 0%, var(--color-hypmic-purple) 100%); */
    --gradient-secondary: linear-gradient(135deg, var(--color-hypmic-blue) 0%, var(--color-hypmic-cyan) 100%);
    --gradient-neon: linear-gradient(45deg, var(--color-neon-pink), var(--color-neon-blue), var(--color-neon-purple));
    --gradient-cyberpunk: linear-gradient(135deg, var(--color-dark-2) 0%, var(--color-dark-3) 50%, var(--color-void) 100%);
    
    /* Shadows */
    --shadow-neon-red: 0 0 20px var(--color-neon-red), 0 0 40px var(--color-neon-red), 0 0 60px var(--color-neon-red);
    --shadow-neon-pink: 0 0 20px var(--color-neon-pink), 0 0 40px var(--color-neon-pink), 0 0 60px var(--color-neon-pink);
    --shadow-neon-blue: 0 0 20px var(--color-neon-blue), 0 0 40px var(--color-neon-blue), 0 0 60px var(--color-neon-blue);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    --shadow-depth: 0 20px 40px rgba(0, 0, 0, 0.5), 0 10px 20px rgba(0, 0, 0, 0.3);
    
    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-full: 50px;
    
    /* Typography */
    --font-weight-normal: 500;
    --font-weight-bold: 700;
    --font-weight-black: 900;
}

/* === 2. RESET & BASE STYLES === */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    position: relative;
    padding-bottom: 120px;
}

/* === 3. BACKGROUND SYSTEM === */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: 
        linear-gradient(
            45deg,
            rgba(255, 0, 150, 0.1) 0%,
            rgba(138, 43, 226, 0.15) 25%,
            rgba(30, 144, 255, 0.1) 50%,
            rgba(0, 191, 255, 0.15) 75%,
            rgba(255, 0, 150, 0.1) 100%
        ),
        linear-gradient(90deg, rgba(255, 0, 150, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(255, 0, 150, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 30% 20%, rgba(255, 0, 150, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(30, 144, 255, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 0, 150, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(30, 144, 255, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(138, 43, 226, 0.7), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(0, 191, 255, 0.5), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    z-index: -1;
    opacity: 0.6;
}

/* ヘッダーロゴの縦方向中央配置 */
#header {
    padding: 15px 20px !important;
    height: 60px !important;
    background-color: white;
}
.white{
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}
.mt40{
    margin-top: 40px;
}

#header .main .header__logo {
    padding: 0 !important;
    margin: 0 10px;
    /* margin: 20px !important; */
    width: auto !important;
    height: 26px !important;
}

/* === 4. TYPOGRAPHY SYSTEM === */
h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    /* color: var(--color-neon-pink); */
}

/* H2 Main Heading */
h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-black);
    text-align: center;
    color: #ffffff;
    text-shadow: 
        0 0 1px #000000,
        0 0 5px #000000,
        0 0 10px #000000,
        0 0 15px #000000,
        0 0 20px #000000,
        0 0 25px #000000;
    position: relative;
    padding: var(--spacing-lg) var(--spacing-md);
    margin: var(--spacing-xl) 0;
    animation: h2Glow 3s ease-in-out infinite;
    filter: brightness(1.1) contrast(1.2);
}

/* h2::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, #cc0439, #cc0439, #8a2be2, #cc0439, #cc0439);
    border-radius: 2px;
    box-shadow: 
        0 0 10px #cc0439,
        0 0 20px #cc0439,
        0 0 30px #cc0439;
    animation: borderPulse 2s ease-in-out infinite;
    z-index: 1;
} */

/* H3 Title Style */
h3.title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: #ffffff;
    text-align: left;
    position: relative;
    padding: var(--spacing-md) 25px var(--spacing-md) 45px;
    margin: 25px 0;
    background: 
        linear-gradient(135deg, rgba(255, 0, 150, 0.1) 0%, rgba(138, 43, 226, 0.15) 100%),
        rgba(0, 0, 0, 0.3);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    backdrop-filter: blur(10px);
    text-shadow: 
        0 0 1px #ffffff,
        0 0 8px #cc0439,
        0 0 15px #cc0439;
    animation: titleGlow 4s ease-in-out infinite;
    line-height: 1.4;
}

h3.title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 2px 0 0 2px;
}

/* H3 Subtitle Style */
h3.subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: var(--font-weight-bold);
    color: #ffffff;
    text-align: center;
    position: relative;
    padding: 12px 0;
    margin: 0 0 var(--spacing-md) 0;
    border-bottom: 2px solid var(--color-neon-purple);
    text-shadow: 0 0 3px #1e90ff;
    line-height: 1.3;
}

h3.subtitle small {
    font-weight: bold;
    font-size: 1rem;
}

h4{
    color:#ffffff;
}

/* H4 Subtitle Bubble */
h4.subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    position: relative;
    padding: 12px var(--spacing-md);
    margin: var(--spacing-md) auto 0 auto;
    max-width: fit-content;
    background: rgba(138, 43, 226, 0.2);
    border-radius: var(--radius-md);
    backdrop-filter: blur(5px);
    text-shadow: 0 0 2px #8a2be2;
    line-height: 1.2;
}

h4.subtitle::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(138, 43, 226, 0.2);
}

/* === 5. HERO SECTION === */
.hero-section {
    position: relative;
    max-height: none;
    overflow: hidden;
    background: var(--gradient-cyberpunk);
}

.hero-container {
    display: flex;
    align-items: stretch;
    height: auto;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

.hero-visual {
    flex: 0 0 50%;
    height: auto;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.key-visual {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: contrast(1.2) brightness(1.0) saturate(1.3);
    /* animation: float 6s ease-in-out infinite; */
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
        var(--color-glass);
    backdrop-filter: blur(20px) saturate(150%);
    border-left: 2px solid var(--color-glass-border);
    animation: heroContentSlideIn 1.5s ease-out;
}

.hero-badge {
    margin-bottom: 0px;
    animation: bounceIn 1s ease-out 0.5s both;
}
.text_detail_small{
    font-size:.9rem;
    padding-bottom: 10px;
}

.badge-text {
    display: inline-block;
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 12px var(--spacing-lg);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-bold);
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    /* animation: badgePulse 3s ease-in-out infinite; */
    box-shadow: none;
}

.hero-title {
    margin: 0 0 var(--spacing-lg) 0;
    animation: titleSlideUp 1.2s ease-out 0.3s both;
}

.title-line-1,
.title-line-2, 
.title-line-3 {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    margin-bottom: 8px;
    /* animation: lineGlow 4s ease-in-out infinite; */
}

.title-line-1 {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0s;
}

.title-line-2 {
    color: #ffffff;
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    letter-spacing: 0.05em;
    animation-delay: 1s;
}

.title-line-3 {
    color: #ffffff;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: var(--font-weight-bold);
    animation-delay: 2s;
}

.hero-subtitle {
    margin-bottom: var(--spacing-xl);
    animation: subtitleFadeIn 1s ease-out 0.8s both;
}

.hero-subtitle p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    color: var(--color-neon-blue);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
    animation: textGlow 3s ease-in-out infinite;
}

.hero-cta {
    animation: ctaFadeIn 1s ease-out 1.2s both;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-secondary);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 
        0 8px 25px rgba(30, 144, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(30, 144, 255, 0.5),
        var(--shadow-neon-blue);
    border-color: var(--color-neon-pink);
    text-decoration: none;
}

.hero-cta-button:hover::before {
    left: 100%;
}

.hero-cta-button i {
    transition: transform 0.3s ease;
    animation: bounce 2s ease-in-out infinite;
}

.hero-cta-button:hover i {
    transform: translateY(3px);
}

/* === 6. GLASS MORPHISM SECTIONS === */
.section-secondary,
.section-white,
.section-primary_ {
    background: var(--color-glass);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--spacing-lg);
    margin: var(--spacing-xl) var(--spacing-md);
    padding: 50px var(--spacing-xl);
    box-shadow: var(--shadow-glass);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease-out;
}

/* Section White */
.section-white {
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(255, 255, 255, 0.9) 50%,
            rgba(240, 248, 255, 0.92) 100%
        ),
        rgba(255, 255, 255, 0.85);
    color: #1a1a1a;
    border: 2px solid rgba(255, 0, 150, 0.2);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 4px 15px rgba(255, 0, 150, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px) saturate(120%);
}

.section-white h2,
.section-white h3,
.section-white h4,
.section-white h5,
.section-white h6 {
    color: #2d2d2d;
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 0.8),
        0 0 5px rgba(255, 0, 150, 0.2);
}

.section-white p,
.section-white li,
.section-white div {
    color: #333333;
}

.section-white .prepare-title {
    color: #1a1a1a;
    font-weight: 800;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(255, 255, 255, 0.9) 50%,
            rgba(240, 248, 255, 0.92) 100%
        ),
        rgba(255, 255, 255, 0.85);
    border: 2px solid #cc0439;
    /* border: 2px solid rgba(255, 0, 150, 0.4); */
}

.section-white .dcard-benefits li,
.section-white .list--type_rice li {
    color: black;
}

/* === 7. BUTTONS SYSTEM === */
.button,
.apply-now-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 18px var(--spacing-xl);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.05em;
    cursor: pointer;
    /* box-shadow: 
        0 10px 30px rgba(255, 0, 150, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2); */
}

.button::before,
.apply-now-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.button:hover,
.apply-now-button:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--color-neon-red);
    text-decoration: none;
}

.button:hover::before,
.apply-now-button:hover::before {
    left: 100%;
}

.button--large {
    padding: 25px 50px;
    font-size: 1.1rem;
}

.button--gray {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 50%, #374151 100%);
    color: #ffffff;
    border: 2px solid #9ca3af;
}

.button--gray:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 50%, #1f2937 100%);
    border-color: #d1d5db;
    text-decoration: none;
}

/* === 8. FIXED BOTTOM BUTTONS === */
.fixed-apply-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-glass);
    backdrop-filter: blur(20px) saturate(150%);
    padding: 25px;
    border-top: 1px solid var(--color-glass-border);
    z-index: 1000;
    box-shadow: 
        0 -10px 40px rgba(0, 0, 0, 0.3),
        0 0 100px rgba(255, 0, 150, 0.1);
}

.button-container {
    display: flex;
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.apply-now-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-lg);
    margin: 0;
}

.apply-now-button i {
    transition: transform 0.3s ease;
}

.apply-now-button:hover i {
    transform: translateX(5px);
}

/* === 9. ACCORDION SYSTEM === */
.accordion {
    border: 2px solid var(--color-glass-border);
    border-radius: var(--radius-lg);
    background: var(--color-glass);
    backdrop-filter: blur(15px);
    overflow: hidden;
    box-shadow: var(--shadow-depth);
    padding-top: 0;
}

.accordion__button {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: var(--spacing-lg) var(--spacing-xl);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion__button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.accordion__button:hover::before {
    left: 100%;
}

.accordion__text {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    text-align: center;
    line-height: 1.4;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 1;
    padding: 0;
}

.accordion__icon {
    font-size: 1.1rem;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    margin-left: var(--spacing-md);
    flex-shrink: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    line-height: 1;
}

.accordion__icon--close .fa-plus {
    display: inline;
}

.accordion__icon--close .fa-minus {
    display: none;
}

.accordion__icon--open .fa-plus {
    display: none;
}

.accordion__icon--open .fa-minus {
    display: inline;
}

.accordion__body {
    display: none;
}

.accordion__body_open {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    list-style: none;
    margin: 0;
    border-top: 1px solid rgba(255, 0, 150, 0.2);
}

.accordion__body_open p {
    padding: 0;
}

.accordion__body_open li {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-sm);
    background: var(--color-glass);
    transition: all 0.3s ease;
    position: relative;
}

.accordion__body_open li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.accordion__body_open h3 {
    color: var(--color-neon-pink);
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 0, 150, 0.6),
        0 0 30px rgba(255, 0, 150, 0.4);
}

.section-primary .accordion__body_open h3 {
    color: #ffffff !important;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 1px 0 rgba(0, 0, 0, 0.9);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    position: relative;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    display: inline-block;
    width: 100%;
}

.section-primary .accordion__body_open h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.accordion__body_open li ul li {
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border: none;
    font-size: 0.9rem;
}

.accordion__body_open li ul li::before {
    background: none;
}

.section-primary .accordion__text {
    color: #ffffff !important;
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 1px 0 rgba(0, 0, 0, 0.9);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    position: relative;
    z-index: 2;
}

/* === 10. DCARD BENEFITS LAYOUT === */
.dcard-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.dcard-benefits li {
    flex: 1;
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefit-main {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    background: white;
    border: 1px solid var(--color-hypmic-red);
    border-radius: var(--radius-md);
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    font-weight: var(--font-weight-normal);
}

.benefit-list {
    margin-top: 0px;
    text-align: left;
    font-size: 0.8rem;
}

/* === 11. PERFORMANCE SCHEDULE === */
.performance-schedule {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.performance-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px var(--spacing-md);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    /* border-left: 3px solid var(--color-neon-pink); */
}

.performance-date .date {
    font-weight: var(--font-weight-bold);
    color: #ffffff;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    flex: 1;
    text-align: left;
}

.performance-date .time {
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    text-align: right;
    min-width: 140px;
}

/* === 12. SPECIAL ELEMENTS === */
.prepare-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    position: relative;
    padding: var(--spacing-lg) var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    background: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.8) 0%, 
            rgba(20, 20, 30, 0.85) 50%,
            rgba(0, 0, 0, 0.8) 100%
        );
    border: 2px solid rgba(255, 0, 150, 0.4);
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        0 4px 20px rgba(255, 0, 150, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(255, 0, 150, 0.3);
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.list--type_rice li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    margin-bottom: var(--spacing-sm);
    font-size: 0.8rem;
    line-height: 1.6;
    color: white;
}

.list--type_rice li::before {
    content: "▶";
    color: var(--color-hypmic-red);
    font-weight: bold;
    position: absolute;
    left: 0;
    animation: pulse 2s ease-in-out infinite;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    overflow-y: auto;
}

.modal-container {
    background: var(--color-glass);
    backdrop-filter: blur(30px);
    border: 2px solid var(--color-glass-border);
    border-radius: var(--spacing-lg);
    padding: var(--spacing-xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-depth);
    color: #ffffff;
    margin: auto;
}

.modal-close-button {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--gradient-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-button:hover {
    transform: rotate(90deg) scale(1.1);
    /* box-shadow: var(--shadow-neon-pink); */
}

strong.price {
    font-weight: var(--font-weight-black);
    font-size: 1.5rem;
}

strong.price small {
    font-size: 1.1rem;
    font-weight: bold;
}

/* === 13. UTILITY CLASSES === */
.item_center {
    text-align: center;
}

.mt30 {
    margin-top: var(--spacing-lg);
}

.text_small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.text-bg-muted {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.copy {
    text-align: center;
    padding-bottom: var(--spacing-lg);
}

.text_left {
    text-align: left;
}

.phone_br {
    display: block;
}

/* === 14. ANIMATIONS === */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes h2Glow {
    0%, 100% {
        filter: brightness(1.2) contrast(1.3) saturate(1.3);
        transform: scale(1);
    }
    50% {
        filter: brightness(1.4) contrast(1.5) saturate(1.6);
        transform: scale(1.02);
    }
}

@keyframes borderPulse {
    0%, 100% {
        opacity: 0.8;
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.1);
    }
}

@keyframes titleGlow {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(255, 0, 150, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 6px 30px rgba(255, 0, 150, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

@keyframes heroContentSlideIn {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes titleSlideUp {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctaFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            var(--shadow-neon-pink),
            0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 30px var(--color-neon-pink), 
            0 0 60px var(--color-neon-pink), 
            0 0 90px var(--color-neon-pink),
            0 15px 40px rgba(0, 0, 0, 0.4);
    }
}

@keyframes lineGlow {
    0%, 100% {
        filter: brightness(1) contrast(1);
        text-shadow: 0 0 20px currentColor;
    }
    50% {
        filter: brightness(1.2) contrast(1.1);
        text-shadow: 0 0 40px currentColor, 0 0 60px currentColor;
    }
}

@keyframes textGlow {
    0% { filter: brightness(1) contrast(1); }
    100% { filter: brightness(1.3) contrast(1.2); }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === 15. RESPONSIVE DESIGN === */
@media (min-width: 769px) {
    .phone_br {
        display: none;
    }
    
    .dcard-benefits {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin: var(--spacing-lg) 0;
        align-items: stretch;
    }
    
    .dcard-benefits li {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .benefit-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: var(--spacing-lg) var(--spacing-md);
        height: 100%;
        flex: 1;
    }
    
    .benefit-image {
        margin-bottom: var(--spacing-md);
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }
    
    .benefit-text {
        font-size: 0.95rem;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 0;
    }
    
    .hero-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-visual {
        flex: none;
        height: auto;
        min-height: 300px;
        width: 100%;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        flex: none;
        padding: var(--spacing-xl) var(--spacing-md);
        text-align: center;
        border-left: none;
        border-top: 2px solid var(--color-glass-border);
        background: var(--color-glass);
        backdrop-filter: blur(15px) saturate(120%);
    }
    
    .badge-text {
        font-size: 0.88rem;
        padding: var(--spacing-sm) 25px;
    }
    
    .title-line-1,
    .title-line-2,
    .title-line-3 {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        margin-bottom: 8px;
    }
    
    .title-line-2 {
        font-size: clamp(1.6rem, 8vw, 2.8rem);
    }
    
    .title-line-3 {
        font-size: clamp(1.2rem, 6vw, 2rem);
    }
    
    .hero-subtitle {
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-subtitle p {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
    
    .hero-cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .section-secondary,
    .section-white,
    .section-primary {
        margin: var(--spacing-md) 0;
        padding: var(--spacing-md) var(--spacing-sm);
        border-radius: 0;
    }
    
    .button-container {
        flex-direction: row;
        gap: var(--spacing-sm);
    }
    
    .button--large {
        padding: 18px var(--spacing-lg);
        font-size: 1rem;
    }
    
    .accordion__button {
        padding: 25px var(--spacing-sm);
    }
    
    .accordion__body_open {
        padding: 25px var(--spacing-sm);
    }
    
    .accordion__body_open li {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }
    
    .fixed-apply-buttons {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .list--type_rice li {
        padding-left: var(--spacing-lg);
    }
    
    .list--type_rice li::before {
        left: var(--spacing-sm);
    }
    
    .apply-now-button {
        padding: 12px 8px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .accordion__text {
        font-size: 1rem !important;
    }
    
    .prepare-title {
        padding: var(--spacing-md) var(--spacing-md);
        margin: var(--spacing-md) 0;
    }
    
    .benefit-main {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: var(--spacing-md) !important;
    }
    
    .benefit-text {
        text-align: center !important;
    }
    
    .benefit-image {
        width: 200px !important;
        height: 200px !important;
    }
    
    .modal-container {
        padding: 60px var(--spacing-md) var(--spacing-xl) var(--spacing-md);
    }
    
    .modal-content h5 {
        margin-top: 0;
        padding-right: 60px;
    }
    
    .performance-schedule {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
    }
    
    .performance-date {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: var(--spacing-md);
    }
    
    .performance-date .date,
    .performance-date .time {
        text-align: center;
        width: 100%;
        min-width: auto;
        font-size: 0.95rem;
    }
    
    .performance-date .time {
        color: #ffffff;
        font-weight: 600;
        padding-left: var(--spacing-sm);
        background: rgba(30, 144, 255, 0.2);
        padding: 8px 12px;
        border-radius: var(--radius-sm);
        margin-top: var(--spacing-xs);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
        border: 1px solid rgba(30, 144, 255, 0.3);
    }
}

@media (min-width: 769px) and (max-width: 1199px) and (max-height: 850px) {
    .hero-section {
        min-height: 100vh;
        max-height: 800px;
    }
    
    .hero-container {
        min-height: 800px;
        max-height: 800px;
    }
    
    .hero-visual {
        flex: 0 0 50%;
        height: 800px;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        flex: 1;
        padding: 60px var(--spacing-xl) 140px var(--spacing-xl);
        height: 800px;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        box-sizing: border-box;
        scrollbar-width: thin;
        scrollbar-color: var(--color-neon-pink) transparent;
        will-change: scroll-position;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    .hero-content::-webkit-scrollbar {
        width: 8px;
    }
    
    .hero-content::-webkit-scrollbar-track {
        background: transparent;
        border-radius: 4px;
    }
    
    .hero-content::-webkit-scrollbar-thumb {
        background: var(--gradient-primary);
        border-radius: 4px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-content::-webkit-scrollbar-thumb:hover {
        background: var(--gradient-secondary);
        box-shadow: 0 0 10px var(--color-neon-pink);
    }
    
    .badge-text {
        font-size: 0.85rem;
        padding: 8px var(--spacing-md);
    }
    
    .title-line-1,
    .title-line-2,
    .title-line-3 {
        font-size: clamp(1.3rem, 3vw, 2.2rem);
        margin-bottom: 6px;
        line-height: 1.1;
    }
    
    .title-line-2 {
        font-size: clamp(1.4rem, 3.2vw, 2.4rem);
    }
    
    .title-line-3 {
        font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    }
    
    .hero-content * {
        animation-duration: 0.3s !important;
    }
}

@media (min-width: 1024px) {
    .benefit-main {
        padding: var(--spacing-md) 25px;
    }
    
    .benefit-image {
        width: 180px;
        height: 180px;
    }
    
    .benefit-text {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .hero-container {
        max-width: 1600px;
    }
    
    .hero-visual {
        flex: 0 0 40%;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        padding: 80px 60px;
    }
    
    .title-line-1,
    .title-line-2,
    .title-line-3 {
        font-size: clamp(1.8rem, 4vw, 3.2rem);
    }
    
    .title-line-2 {
        font-size: clamp(2.2rem, 5vw, 3.8rem);
    }
    
    .section-secondary,
    .section-white,
    .section-primary {
        margin: var(--spacing-xl) auto;
        max-width: 1200px;
    }
    
    .main--page_campaign {
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* === 16. SCROLLBAR STYLING === */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark-1);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
    border: 2px solid var(--color-dark-1);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* === 17. ACCESSIBILITY & PERFORMANCE === */
.button:focus,
.apply-now-button:focus {
    outline: 3px solid var(--color-neon-blue);
    outline-offset: 2px;
}

.accordion__button:focus {
    outline: 3px solid var(--color-neon-pink);
    outline-offset: 2px;
}

* {
    will-change: auto;
}

.button,
.apply-now-button,
.accordion__button {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === 18. FINAL STYLES === */
.main {
    background: none;
    position: relative;
    z-index: 1;
}

.section-secondary:nth-child(1) { animation-delay: 0.1s; }
.section-secondary:nth-child(2) { animation-delay: 0.2s; }
.section-white:nth-child(3) { animation-delay: 0.3s; }
.footer{
    padding-bottom: 10px;
    color: white !important;
    font-size: .6rem;
}

.modal-content .dcard-apply-button {
    width: 100%;
}

