/* Tokyo Neon Nights Styles */
:root {
    --neon-pink: #ff2a6d;
    --neon-blue: #05d9e8;
    --neon-purple: #d300c5;
    --dark-bg: #0d0221;
    --text-light: #ffffff;
    --text-dim: #b8c5d6;
    --accent-yellow: #f7f700;
}

/* Base Styles */
body {
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

/* Header */
header {
    background-color: rgba(13, 2, 33, 0.9);
    padding: 1.5rem 3rem;
    position: center;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--neon-purple);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(255, 42, 109, 0.3);
}
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav ul li a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(5, 217, 232, 0.5);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.tokyo-hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1540959733332-eab4deabeeaf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1494&q=80') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.9) 0%, rgba(211, 0, 197, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(255, 42, 109, 0.3);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-scroll {
    color: var(--neon-blue);
    font-size: 2rem;
    animation: bounce 2s infinite;
    margin-top: 3rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Main Content */
.tokyo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.tokyo-article {
    background-color: rgba(13, 2, 33, 0.7);
    border-radius: 10px;
    padding: 3rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 42, 109, 0.2);
    box-shadow: 0 0 30px rgba(5, 217, 232, 0.1);
}

.article-intro h2 {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(5, 217, 232, 0.3);
}

.travel-meta {
    color: var(--text-dim);
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.travel-meta i {
    margin-right: 0.5rem;
    color: var(--neon-pink);
}

/* Content Styles */
.tokyo-content h3 {
    color: var(--neon-pink);
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    position: relative;
}

.tokyo-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-pink), transparent);
}

.tokyo-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dim);
}

/* Figures */
.tokyo-figure {
    margin: 2rem 0;
}

.tokyo-figure img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 42, 109, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tokyo-figure img:hover {
    transform: scale(1.01);
    box-shadow: 0 0 30px rgba(5, 217, 232, 0.3);
}

.tokyo-figure.right {
    float: right;
    margin: 1rem 0 1rem 2rem;
    max-width: 50%;
}

figcaption {
    color: var(--text-dim);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
}

/* Highlights */
.tokyo-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-card {
    background: rgba(5, 217, 232, 0.05);
    border: 1px solid rgba(5, 217, 232, 0.1);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    background: rgba(5, 217, 232, 0.1);
    box-shadow: 0 10px 20px rgba(5, 217, 232, 0.1);
    border-color: rgba(5, 217, 232, 0.3);
}

.highlight-icon {
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(5, 217, 232, 0.5);
}

.highlight-card h4 {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.highlight-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Adventure List */
.adventure-list {
    list-style: none;
    margin: 2rem 0;
    padding-left: 0;
}

.adventure-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dim);
}

.adventure-list li::before {
    content: '■';
    color: var(--neon-pink);
    position: absolute;
    left: 0;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Tips Section */
.tokyo-tips {
    background: rgba(255, 42, 109, 0.05);
    border-left: 3px solid var(--neon-pink);
    padding: 2rem;
    margin: 4rem 0;
    border-radius: 0 8px 8px 0;
}

.tokyo-tips h3 {
    color: var(--neon-pink);
    margin-top: 0;
    font-size: 1.8rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tip {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tip i {
    color: var(--neon-blue);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.tip p {
    margin: 0;
    color: var(--text-dim);
}

/* Gallery */
.tokyo-gallery {
    margin-top: 6rem;
}

.tokyo-gallery h2 {
    color: var(--neon-blue);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(5, 217, 232, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(255, 42, 109, 0.2);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(5, 217, 232, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
.tokyo-footer {
    background: linear-gradient(180deg, rgba(13, 2, 33, 0) 0%, var(--dark-bg) 20%);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about h3 {
    color: var(--neon-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-about p {
    color: var(--text-dim);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-pink);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--text-dim);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: var(--neon-blue);
    transform: translateY(-3px);
}

.footer-copyright {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 42, 109, 0.2);
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .tokyo-figure.right {
        float: none;
        margin: 2rem 0;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .tokyo-header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .tokyo-container {
        padding: 4rem 1rem;
    }
    
    .tokyo-article {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .article-intro h2 {
        font-size: 1.8rem;
    }
    
    .travel-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}