:root {
    /* Logo background matched purple */
    --bg-color: #3b0b59; /* Deep Purple */
    --bg-darker: #26053a; /* Darker Purple for alternating sections */
    --accent: #ff007f; /* Neon Pink accent */
    --accent-blue: #00f0ff; /* Neon Blue accent */
    --text-main: #ffffff;
    --text-muted: #e0e0e0;
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-en: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-jp);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section:nth-child(even) {
    background-color: var(--bg-darker);
}

.section-title {
    font-family: var(--font-en);
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
    color: var(--text-main);
    position: relative;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.section-title span {
    display: block;
    font-family: var(--font-jp);
    font-size: 1rem;
    font-weight: 700;
    margin-top: 5px;
    color: var(--accent);
    letter-spacing: 1px;
    text-shadow: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(38, 5, 58, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 5px;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav a {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav a:hover {
    color: var(--accent-blue);
    text-shadow: 0 0 10px var(--accent-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: -1;
    animation: zoomInOut 20s infinite alternate;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    z-index: 1;
    padding: 0 20px;
}

.hero-sub {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 40px;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
}

.hero-title .highlight {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255, 0, 127, 0.6);
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--accent), #ff5e00);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(255, 0, 127, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.6);
}

/* Action Words (replaces Concept) */
.action-words {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.action-word {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 0, 127, 0.8);
    background: rgba(38, 5, 58, 0.6);
    padding: 20px 40px;
    border-radius: 10px;
    border: 2px solid var(--accent);
    width: 100%;
    max-width: 600px;
    text-align: center;
    transform: skewX(-25deg);
    letter-spacing: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.action-word span {
    display: inline-block;
    transform: skewX(25deg);
}

.action-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.action-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 800px;
}

.action-row .action-word {
    flex: 1;
}

.action-icon {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.6);
}

.action-words > div:nth-child(2) .action-word {
    color: var(--accent-blue);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
    border-color: var(--accent-blue);
}

.action-words > div:nth-child(3) .action-word {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 94, 0, 0.8);
    border-color: #ff5e00;
}

/* Add custom delays for the new fade-ups */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Greeting Block */
.greeting-block {
    display: flex;
    gap: 40px;
    align-items: center;
    background: rgba(0,0,0,0.3);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-top: 130px;
}

.greeting-text {
    flex: 1;
    text-align: left;
}

.greeting-text p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.greeting-text p:last-child {
    margin-bottom: 0;
    font-weight: bold;
    color: var(--accent-blue);
}

.greeting-img {
    flex: 1;
}

.greeting-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border: 2px solid var(--bg-darker);
}

/* Amusement Section */
.grid-amusement {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.amusement-card {
    background: var(--bg-darker);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.amusement-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(255, 0, 127, 0.3);
}

.card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.card-info {
    padding: 30px;
}

.card-info h3 {
    font-family: var(--font-en);
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 15px;
}

/* Menu Section */
.menu-content {
    text-align: left;
    background: rgba(0,0,0,0.3);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: 800px;
    margin: 0 auto;
}

.menu-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.menu-note {
    font-size: 1rem;
    color: var(--accent);
    font-weight: bold;
}

.menu-img {
    display: block;
    margin: 0 auto 30px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.1);
}

.menu-img:last-child {
    margin-bottom: 0;
}

.menu-category {
    font-size: 1.8rem;
    color: var(--accent-blue);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.menu-category:not(:first-child) {
    margin-top: 50px;
}

.preparation-text {
    text-align: center;
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: bold;
    padding: 40px 0;
    letter-spacing: 2px;
}

/* System Section */
.system-content {
    text-align: center;
}

.ryokin-img {
    display: block;
    margin: 0 auto 40px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.1);
}

/* News Section */
.news-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 4px solid var(--accent-blue);
    padding: 20px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s, border-color 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.news-item:hover {
    transform: translateX(10px);
    border-left-color: var(--accent);
    background: rgba(38, 5, 58, 0.6);
}

.news-date {
    color: var(--accent-blue);
    font-family: var(--font-en);
    font-weight: 700;
    min-width: 120px;
}

.news-text {
    font-size: 1.1rem;
    color: var(--text-main);
}

/* Recruit Section */
.recruit-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.recruit-img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.1);
}

/* Access Section */
.access-wrapper {
    display: flex;
    gap: 40px;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.access-info {
    flex: 1;
    padding: 40px;
}

.access-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--accent-blue);
}

.access-info dl {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.access-info dt {
    font-weight: 700;
    color: var(--accent);
}

.sns-links {
    display: flex;
    gap: 15px;
}

.btn-sns {
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-sns.insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-sns:hover {
    filter: brightness(1.2);
    transform: translateY(-3px);
}

.access-map {
    flex: 1;
    min-height: 400px;
}

/* Footer */
.footer {
    background: #111;
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 60px;
    opacity: 0.5;
    margin-bottom: 20px;
}

.footer p {
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(38, 5, 58, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .access-wrapper {
        flex-direction: column;
    }
    
    .access-map {
        height: 500px;
        width: 100%;
    }
    
    .access-map iframe {
        height: 500px !important;
    }
    
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    
    .action-word {
        font-size: 2.5rem;
        padding: 15px 20px;
    }
    
    .action-row {
        flex-direction: column;
    }
    
    .action-icon {
        width: 120px;
        height: 120px;
    }
    
    .greeting-block {
        flex-direction: column;
        padding: 30px 20px;
        margin-top: 50px;
    }
}