/* Base Styles and Variables */
:root {
    --primary-color: #FFB7C5;
    /* Sakura Pink */
    --primary-dark: #FF9EAA;
    --secondary-color: #FFD700;
    /* Gold */
    --accent-color: #FF69B4;
    /* Hot Pink */
    --text-color: #4A4A4A;
    --text-light: #888888;
    --bg-color: #FFF0F5;
    /* Lavender Blush */
    --white: #FFFFFF;
    --max-width: 1200px;
    --border-radius: 20px;
    --shadow: 0 10px 30px rgba(255, 183, 197, 0.3);
    --shadow-hover: 0 15px 40px rgba(255, 183, 197, 0.5);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Zen Maru Gothic', sans-serif;
    color: var(--text-color);
    background: linear-gradient(135deg, #fff9fb 0%, #fff0f5 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Background Particles (Abstract) */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 25s infinite alternate;
}

.particles::before {
    background: radial-gradient(circle, #FFB7C5 0%, #FF69B4 100%);
    top: -100px;
    left: -100px;
}

.particles::after {
    background: radial-gradient(circle, #E6E6FA 0%, #DDA0DD 100%);
    bottom: -100px;
    right: -100px;
    animation-delay: -12s;
}

/* Sparkle Animation */
@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

@keyframes float-sparkle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Floating Hearts & Stars */
.sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-sparkle {
    position: absolute;
    font-size: 20px;
    animation: float-sparkle 15s linear infinite;
    opacity: 0;
}

.floating-sparkle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    font-size: 20px;
}

.floating-sparkle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    font-size: 15px;
}

.floating-sparkle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    font-size: 25px;
}

.floating-sparkle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    font-size: 18px;
}

.floating-sparkle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    font-size: 22px;
}

.floating-sparkle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    font-size: 16px;
}

.floating-sparkle:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    font-size: 24px;
}

.floating-sparkle:nth-child(8) {
    left: 80%;
    animation-delay: 4.5s;
    font-size: 19px;
}

.floating-sparkle:nth-child(9) {
    left: 90%;
    animation-delay: 1.5s;
    font-size: 21px;
}

.floating-sparkle:nth-child(10) {
    left: 15%;
    animation-delay: 3.5s;
    font-size: 17px;
}

.floating-sparkle:nth-child(11) {
    left: 25%;
    animation-delay: 0.5s;
    font-size: 23px;
}

.floating-sparkle:nth-child(12) {
    left: 35%;
    animation-delay: 5.5s;
    font-size: 14px;
}

.floating-sparkle:nth-child(13) {
    left: 45%;
    animation-delay: 2.2s;
    font-size: 26px;
}

.floating-sparkle:nth-child(14) {
    left: 55%;
    animation-delay: 4.1s;
    font-size: 20px;
}

.floating-sparkle:nth-child(15) {
    left: 65%;
    animation-delay: 1.8s;
    font-size: 18px;
}

.floating-sparkle:nth-child(16) {
    left: 75%;
    animation-delay: 3.2s;
    font-size: 22px;
}

.floating-sparkle:nth-child(17) {
    left: 85%;
    animation-delay: 0.9s;
    font-size: 15px;
}

.floating-sparkle:nth-child(18) {
    left: 95%;
    animation-delay: 4.8s;
    font-size: 24px;
}

.floating-sparkle:nth-child(19) {
    left: 5%;
    animation-delay: 2.7s;
    font-size: 20px;
}

.floating-sparkle:nth-child(20) {
    left: 50%;
    animation-delay: 1.1s;
    font-size: 28px;
}

/* Typography Helpers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header::before {
    content: '✨';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: sparkle 2s infinite;
}

.section-subtitle {
    display: block;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.3);
}

.section-title::after {
    content: '♡';
    position: absolute;
    right: -40px;
    top: -10px;
    font-size: 1.5rem;
    color: var(--accent-color);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.section-line {
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
}

.section-line::before,
.section-line::after {
    content: '★';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 1.2rem;
    animation: twinkle 2s infinite;
}

.section-line::before {
    left: -30px;
}

.section-line::after {
    right: -30px;
    animation-delay: 1s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5),
        0 0 30px rgba(255, 105, 180, 0.3);
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {

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

    50% {
        background-position: 100% 50%;
    }
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.7),
        0 0 40px rgba(255, 105, 180, 0.5);
}

.btn-primary i {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: var(--white);
    color: var(--accent-color);
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 183, 197, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 2.5rem;
    box-shadow: 0 0 20px rgba(255, 183, 197, 0.2);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.navbar.scrolled {
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 183, 197, 0.2);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 1.2rem;
    color: var(--secondary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

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

@media (max-width: 968px) {
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

.nav-links a {
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
}

.lang-switch {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Zen Maru Gothic', sans-serif;
    transition: var(--transition);
    font-size: 0.85rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    min-width: 80px;
    height: 36px;
}

.lang-switch:hover, .lang-switch.en-active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 183, 197, 0.3);
}

.lang-switch i {
    font-size: 0.9rem;
    color: var(--accent-color);
}

.lang-switch:hover i, .lang-switch.en-active i {
    color: var(--white);
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--accent-color);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--accent-color);
}

/* Mobile Nav */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #fff 0%, #fff0f5 100%);
    padding: 6rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav::after {
    content: '✨';
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    padding: 1.2rem 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: var(--transition);
}

.mobile-nav a:hover {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 100%);
    color: var(--accent-color);
    transform: translateX(5px);
}

.mobile-nav a:hover::before {
    transform: scaleY(1);
}

.mobile-nav a.active {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 100%);
    color: var(--accent-color);
}

.mobile-nav a.active::before {
    transform: scaleY(1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 2rem;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 50%, #fff9fb 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-maids-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 240, 245, 0.7) 0%,
            rgba(255, 228, 233, 0.6) 50%,
            rgba(255, 249, 251, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.3);
    border: 2px solid var(--primary-color);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #4A4A4A;
    text-shadow:
        3px 3px 0 #fff,
        0 0 15px rgba(255, 105, 180, 0.4);
}

.hero-title span {
    display: inline-block;
    color: #E91E63;
    /* Remove gradient text for better readability */
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

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

/* Hero Decoration */
.hero-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: 1;
    pointer-events: none;
}

.circle-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    animation: rotate 60s linear infinite;
    opacity: 0.3;
}

.circle-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 240, 245, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.sparkle {
    position: absolute;
    color: var(--secondary-color);
    font-size: 1.5rem;
    animation: twinkle 2s infinite alternate;
}

.s1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    font-size: 2rem;
    color: var(--primary-color);
}

.s2 {
    top: 25%;
    right: 25%;
    animation-delay: 0.5s;
    color: var(--accent-color);
}

.s3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 1s;
}

.s4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
    font-size: 1.2rem;
}

/* Sections General */
.section {
    padding: 6rem 2rem;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Concept Section */
.concept-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.concept-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 183, 197, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.concept-card::before {
    content: '🎀';
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2rem;
    animation: swing 2s infinite;
}

@keyframes swing {

    0%,
    100% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(10deg);
    }
}

.concept-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.5),
        0 0 30px rgba(255, 183, 197, 0.3);
}

.concept-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #fff0f5, #ffe4e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: var(--accent-color);
    box-shadow: 0 0 30px rgba(255, 183, 197, 0.4),
        inset 0 0 20px rgba(255, 183, 197, 0.2);
    animation: icon-glow 2s infinite alternate;
}

@keyframes icon-glow {
    0% {
        box-shadow: 0 0 20px rgba(255, 183, 197, 0.4);
    }

    100% {
        box-shadow: 0 0 40px rgba(255, 105, 180, 0.6);
    }
}

.concept-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.4rem;
}

.concept-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Cast Section */
/* How to Enjoy Guide Section */
.guide-section {
    background: linear-gradient(135deg, #fffaf0 0%, #fff5f8 100%);
}

.section-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 1rem;
}

.guide-steps {
    margin-top: 4rem;
    position: relative;
}

.guide-steps::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

@media (max-width: 768px) {
    .guide-steps::before {
        left: 25px;
    }
}

.guide-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

@media (max-width: 768px) {
    .guide-step {
        gap: 1rem;
    }
}

.step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.4);
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .step-number {
        width: 50px;
        height: 50px;
    }
}

.step-number span {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
}

@media (max-width: 768px) {
    .step-number span {
        font-size: 1.5rem;
    }
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.step-title {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.step-title i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.step-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.step-tips {
    background: linear-gradient(135deg, #fff9fb 0%, #fff0f5 100%);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.tip-badge {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    white-space: nowrap;
}

.step-tips span:last-child {
    color: var(--text-color);
    font-weight: 600;
}

/* Rules Section */
.guide-rules {
    margin-top: 5rem;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .guide-rules {
        padding: 2rem 1.5rem;
    }
}

.rules-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.rules-title i {
    color: var(--accent-color);
}

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

@media (max-width: 768px) {
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff9fb;
    border-radius: 15px;
    transition: var(--transition);
}

.rule-item:hover {
    background: #fff0f5;
    transform: translateY(-3px);
}

.rule-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.rule-item p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Cast Section */
.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cast-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 183, 197, 0.2);
}

.cast-card::after {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition);
    animation: sparkle 1.5s infinite;
}

.cast-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.6),
        0 0 40px rgba(255, 183, 197, 0.4);
}

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

/* Cast Images */
.cast-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top center;
    /* Focus on face/upper body */
    transition: var(--transition);
    background-color: #fff0f5;
    border-bottom: 2px solid #fff0f5;
}

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

.cast-info {
    padding: 1.5rem;
    text-align: center;
}

.cast-name {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.cast-role {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.cast-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.cast-tags span {
    background: #FFF0F5;
    color: var(--text-light);
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 183, 197, 0.3);
}

.view-more-container {
    text-align: center;
    margin-top: 2rem;
}

@media (min-width: 769px) {
    .view-more-container {
        margin-top: 7rem;
    }
}

/* System Section */
.system-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

.system-box {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 183, 197, 0.2);
    display: flex;
    flex-direction: column;
}

.system-box.highlight {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    z-index: 2;
}

@media (max-width: 900px) {
    .system-box.highlight {
        transform: scale(1);
    }
}

.ribbon {
    position: absolute;
    top: 15px;
    right: -10px;
    background: var(--secondary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    font-weight: 700;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.ribbon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    border-top: 10px solid #DAA520;
    border-right: 10px solid transparent;
}

.system-header {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    padding-bottom: 1rem;
    border-bottom: 2px dashed #eee;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 500;
}

.item-name {
    color: var(--text-color);
}

.item-price {
    color: var(--accent-color);
    font-weight: 700;
}

.system-note {
    font-size: 0.8rem;
    text-align: center;
    color: var(--text-light);
    margin-top: 1.5rem;
}

/* Events Section */
.events-section {
    background: linear-gradient(135deg, #fff 0%, #fff9fb 100%);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

.event-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    gap: 1.5rem;
    border-left: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.event-card.featured {
    border-left: 5px solid var(--accent-color);
    background: linear-gradient(135deg, #fff 0%, #fff5f8 100%);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.event-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--secondary-color);
    color: #fff;
    padding: 0.3rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.event-date {
    flex-shrink: 0;
    width: 90px;
    height: 110px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
    border: 3px solid var(--white);
    position: relative;
    overflow: hidden;
}

.event-date::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
    pointer-events: none;
}

.date-day {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.date-month {
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 0.2rem;
    position: relative;
    z-index: 1;
}

.date-weekday {
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.2);
    padding: 1px 6px;
    border-radius: 4px;
}

.event-content {
    flex: 1;
}

.event-title {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-title i {
    color: var(--accent-color);
    font-size: 1rem;
}

.event-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

.event-time,
.event-price {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-color);
    background: #fff0f5;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
}

.event-time i,
.event-price i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.events-note {
    margin-top: 3rem;
    text-align: center;
    padding: 1.5rem;
    background: #fff9fb;
    border-radius: 10px;
    border: 2px dashed var(--primary-color);
}

.events-note p {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.events-note i {
    color: var(--accent-color);
}

/* Blog Section */
.blog-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #fff0f5;
    display: flex;
    flex-direction: column;
}

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

.blog-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-img-portrait {
    object-position: top;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.4);
}

.blog-info {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-title {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    font-weight: 700;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.blog-more {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-more i {
    transform: translateX(5px);
}

/* Access Section */
.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .access-content {
        grid-template-columns: 1fr;
    }
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: #FFF0F5;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    transition: var(--transition);
}

.social-btn.twitter {
    background: #1DA1F2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #405DE6, #e1306c, #fd1d1d);
}

.social-btn.tiktok {
    background: #000;
}

.social-btn:hover {
    transform: translateY(-5px);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: #f0f0f0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-weight: 700;
}

.map-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.map-text i {
    font-size: 2rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 100%);
}

.contact-forms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .contact-forms {
        grid-template-columns: 1fr;
    }
}

.form-container {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
}

.form-container.highlight-form {
    border-top: 5px solid var(--accent-color);
    background: linear-gradient(135deg, #fff 0%, #fff5f8 100%);
}

.form-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px dashed #ffe4e9;
}

.form-header i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 700;
    color: var(--text-color);
    font-size: 0.95rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #ffe4e9;
    border-radius: 10px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 183, 197, 0.1);
}

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

.form-submit {
    margin-top: 1rem;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.form-submit:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #fff;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid #eee;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-logo i {
    color: var(--secondary-color);
}

.copyright {
    color: var(--text-light);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.form-privacy-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

.form-privacy-note a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes twinkle {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Initial States for JS Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Responsive Typography and Spacing Updates */
@media (max-width: 1200px) {
    :root {
        --max-width: 95%;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.4rem;
    }
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .section {
    }

    .hero-decoration {
        width: 300px;
        height: 300px;
    }

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

    .concept-content, 
    .cast-grid, 
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .event-date {
        width: 100%;
        height: auto;
        padding: 1rem;
        flex-direction: row;
        gap: 1rem;
    }

    .event-badge {
        right: -40px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .guide-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-tips {
        flex-direction: column;
    }

    .system-box {
        min-width: 100%;
        padding: 2rem 1rem;
    }
}

/* March Events - Blue Theme */
.event-card.march {
    border-left: 5px solid #87CEEB;
}

.event-card.march .event-date {
    background: linear-gradient(135deg, #87CEEB, #4682B4);
    box-shadow: 0 8px 25px rgba(70, 130, 180, 0.4);
}

.event-card.march .event-time,
.event-card.march .event-price {
    background: #E0F4FF;
}

.event-card.march .event-time i,
.event-card.march .event-price i {
    color: #4682B4;
}

/* Responsive Typography and Spacing Updates */
@media (max-width: 1200px) {
    :root {
        --max-width: 90%;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.4rem;
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .hero-content {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 1.5rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 2rem auto 0;
        gap: 1rem;
    }
    .btn {
        width: 100%;
        padding: 1rem;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .concept-content, .cast-grid, .system-container, .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .concept-card, .cast-card, .system-box, .blog-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .nav-container {
        padding: 0 1rem;
    }
    .logo {
        font-size: 1.2rem;
    }
}