/* 統合されたCSS（類似度90%セクション統一版） */

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

:root {
    --primary-red: #ff1744;
    --dark-red: #d50000;
    --accent-red: #ff6b6b;
    --gold: #ffd700;
    --dark-gold: #b8860b;
    --deep-black: #0a0a0a;
    --charcoal: #1a1a1a;
    --dark-gray: #2a2a2a;
    --medium-gray: #404040;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --gradient-fire: linear-gradient(135deg, #ff1744 0%, #d50000 50%, #b71c1c 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fff176 100%);
}

body {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: var(--primary-red);
    background: var(--deep-black);
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header - 黒背景に赤文字 */
header {
    background: var(--deep-black);
    color: var(--primary-red);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(255, 23, 68, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 23, 68, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-red);
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    width: 32px;
    height: 32px;
}

.mobile-menu-toggle {
    display: none;
    background: var(--primary-red);
    color: var(--deep-black);
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1001;
}

/* Navigation - 赤背景に金文字 */
nav {
    background: var(--gradient-fire);
    box-shadow: 0 4px 20px rgba(255, 23, 68, 0.3);
    position: relative;
}

nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.2) 50%, 
        transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.nav-list {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-list li {
    flex: 1;
    min-width: 120px;
}

.nav-list a {
    display: block;
    padding: 1rem;
    color: var(--gold);
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.nav-list a:hover {
    background: rgba(0, 0, 0, 0.2);
    color: var(--white);
    border-bottom-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Main Content */
main {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

/* Hero Section - 赤背景に黒文字 */
.hero-section {
    background: var(--gradient-fire);
    color: var(--deep-black);
    padding: 0;
    margin-bottom: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(255, 23, 68, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    height: 600px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.store-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.3);
    position: relative;
    z-index: 1;
    font-weight: 900;
    color: var(--deep-black);
}

.hero-section p {
    font-size: 1.3rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-weight: 500;
    color: var(--deep-black);
}

/* 統一コンテンツセクションスタイル - 白背景に赤文字 */
/* 類似度90%の全セクションを統一 */
.unified-section,
.store-info-section,
.map-section,
.intro-section,
.works-section,
.gallery-section,
.contact-section,
.fortune-section,
.videos-section,
.link-section,
.menu-section,
.news-section {
    background: var(--white);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(255, 23, 68, 0.1),
        0 0 0 1px rgba(255, 23, 68, 0.2);
    margin-bottom: 3rem;
    border-left: 5px solid var(--primary-red);
    position: relative;
    color: var(--primary-red);
    animation: fadeInUp 0.6s ease forwards;
}

.unified-section::before,
.store-info-section::before,
.map-section::before,
.works-section::before,
.gallery-section::before,
.contact-section::before,
.fortune-section::before,
.videos-section::before,
.link-section::before,
.menu-section::before,
.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 23, 68, 0.02) 0%, 
        transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

/* 特別なレイアウト調整 */
.intro-section {
    text-align: center;
    padding: 2rem;
}

.intro-section p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.contact-section,
.fortune-section {
    text-align: center;
    padding: 3rem;
}

/* 統一セクションヘッダー */
.unified-section h2,
.store-info-section h2,
.works-section h2,
.gallery-section h2,
.contact-section h2,
.fortune-section h2,
.videos-section h2,
.link-section h2,
.menu-section h2,
.news-section h2,
.map-section h3 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.contact-section h2,
.fortune-section h2 {
    font-size: 2.2rem;
    flex-wrap: wrap;
}

.map-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.news-section h2 {
    font-size: 1.8rem;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.unified-section h2 i,
.store-info-section h2 i,
.works-section h2 i,
.gallery-section h2 i,
.contact-section h2 i,
.fortune-section h2 i,
.videos-section h2 i,
.link-section h2 i,
.menu-section h2 i,
.news-section h2 i,
.map-section h3 i {
    color: var(--primary-red);
}

/* 統一グリッドレイアウト */
.unified-grid,
.info-grid,
.works-grid,
.gallery-grid,
.videos-grid,
.links-grid,
.menu-grid {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.info-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 2rem;
}

.works-grid,
.gallery-grid,
.menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.videos-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.links-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* 統一アイテムスタイル - 白背景に赤文字 */
.unified-item,
.info-item,
.work-item,
.gallery-item,
.video-item,
.link-item,
.menu-item {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    border: 3px solid var(--primary-red);
    transition: all 0.3s ease;
    color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(255, 23, 68, 0.2);
    animation: fadeInUp 0.6s ease forwards;
}

.work-item,
.gallery-item,
.video-item,
.link-item,
.menu-item {
    cursor: pointer;
    text-align: center;
}

.work-item:nth-child(even),
.gallery-item:nth-child(even),
.video-item:nth-child(even) {
    animation-delay: 0.1s;
}

.unified-item:hover,
.info-item:hover,
.work-item:hover,
.gallery-item:hover,
.video-item:hover,
.link-item:hover,
.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 23, 68, 0.3);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.95);
}

.link-item {
    text-decoration: none;
    display: block;
}

.link-item:hover {
    text-decoration: none;
    color: inherit;
}

/* 統一アイテムコンテンツスタイル */
.unified-title,
.info-item h3,
.work-title,
.gallery-title,
.video-title,
.link-title,
.menu-name {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.info-item h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.info-item h3 i {
    color: var(--primary-red);
    width: 20px;
}

.info-item p {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.info-item .indent {
    padding-left: 2rem;
}

.unified-period,
.work-period,
.video-period {
    font-size: 1rem;
    color: var(--dark-red);
    margin-bottom: 1rem;
    font-weight: 600;
}

.unified-description,
.work-description,
.gallery-description,
.video-description,
.link-description,
.menu-description {
    color: var(--primary-red);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-weight: 500;
}

.gallery-description {
    margin-bottom: 0.5rem;
}

.gallery-date {
    color: var(--dark-red);
    font-size: 0.85rem;
    font-style: italic;
    font-weight: 400;
}

.menu-price {
    font-size: 1.1rem;
    color: var(--dark-red);
    margin-bottom: 0.5rem;
}

.menu-spice {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.spice-level {
    color: var(--primary-red);
    font-weight: bold;
}

.spice-0 { color: #666; }
.spice-3 { color: #ff9800; }
.spice-5 { color: #ff5722; }
.spice-6 { color: #f44336; }
.spice-7 { color: #d32f2f; }
.spice-8 { color: #c62828; }
.spice-10 { color: #b71c1c; }

/* 統一画像スタイル */
.unified-image,
.work-item img,
.gallery-item img,
.link-image,
.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid var(--primary-red);
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.2);
}

.unified-image:hover,
.work-item img:hover,
.gallery-item img:hover,
.link-item:hover .link-image,
.menu-item img:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(255, 23, 68, 0.3);
}

/* 統一ビデオコンテナ */
.unified-video-container,
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.2);
    border: 2px solid var(--primary-red);
    transition: all 0.3s ease;
}

.video-item:hover .unified-video-container,
.video-item:hover .video-container {
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(255, 23, 68, 0.3);
}

.unified-video-container iframe,
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

/* マップコンテナ（特別扱い） */
.map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 23, 68, 0.2);
    border: 3px solid var(--primary-red);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* 統一ボタンスタイル - 赤背景に金文字 */
.unified-button,
.work-link,
.special-highlight,
.toggle-button,
.draw-button {
    display: inline-block;
    background: var(--gradient-fire);
    color: var(--gold);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.3);
    border: 2px solid var(--deep-black);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    text-align: center;
    cursor: pointer;
}

.toggle-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
}

.draw-button {
    padding: 1.5rem 3rem;
    border-radius: 20px;
    font-size: 1.4rem;
    border: 3px solid var(--deep-black);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.unified-button:hover,
.work-link:hover,
.special-highlight:hover,
.toggle-button:hover,
.draw-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 23, 68, 0.4);
    color: var(--white);
    border-color: var(--gold);
}

.draw-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: bounce 1s;
}

.draw-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* 統一ノートスタイル */
.unified-note,
.special-note {
    background: var(--gradient-fire);
    color: var(--gold);
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
    font-weight: bold;
    border: 2px solid var(--deep-black);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.unified-note:hover,
.special-note:hover {
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.3);
}

/* Contact Section（特別な設定を維持） */
.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem auto;
    border: 3px solid var(--primary-red);
    max-width: 600px;
    box-shadow: 0 15px 40px rgba(255, 23, 68, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    color: var(--primary-red);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(255, 23, 68, 0.3);
    border-color: var(--primary-red);
}

.contact-intro {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--primary-red);
    line-height: 1.6;
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary-red);
    box-shadow: 0 12px 30px rgba(255, 23, 68, 0.2);
    transition: all 0.3s ease;
    animation: pulse 3s infinite;
}

.contact-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 45px rgba(255, 23, 68, 0.3);
    border-color: var(--primary-red);
}

.contact-details {
    text-align: center;
}

.contact-label {
    font-size: 1.2rem;
    color: var(--primary-red);
    font-weight: bold;
    margin-bottom: 1rem;
    display: block;
    background: rgba(255, 23, 68, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
}

.twitter-link {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-fire);
    color: var(--gold);
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.3);
    margin-top: 1rem;
    border: 2px solid var(--primary-red);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.twitter-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 45px rgba(255, 23, 68, 0.4);
    text-decoration: none;
    color: var(--white);
    border-color: var(--primary-red);
    animation: bounce 1s;
}

.twitter-link i {
    margin-right: 0.8rem;
    font-size: 1.4rem;
}

.note-section {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
    border: 3px solid var(--primary-red);
    color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.2);
}

.note-section h3 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: bold;
}

.note-section h3 i {
    color: var(--primary-red);
}

.note-text {
    color: var(--primary-red);
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Fortune Section（特別な設定を維持） */
.fortune-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.fortune-draw-section {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 3px solid var(--primary-red);
    color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.2);
}

.fortune-result {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 23, 68, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 2px dashed var(--primary-red);
    position: relative;
    z-index: 1;
    color: var(--primary-red);
}

.fortune-result.has-result {
    background: var(--white);
    border: 3px solid var(--primary-red);
    box-shadow: 0 8px 25px rgba(255, 23, 68, 0.3);
    animation: fadeIn 0.5s ease forwards;
}

.fortune-result img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(255, 23, 68, 0.3);
    border: 2px solid var(--primary-red);
}

.fortune-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--primary-red);
    font-weight: 500;
}

.fortune-text p {
    margin-bottom: 1rem;
}

.fortune-text b {
    color: var(--dark-red);
    font-size: 1.3rem;
    font-weight: bold;
}

.placeholder-text {
    color: var(--primary-red);
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 500;
}

/* News Section（特別なスタイルを維持） */
.news-list {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 1rem;
}

.news-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 23, 68, 0.2);
    align-items: flex-start;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    background: var(--gradient-fire);
    color: var(--gold);
    padding: 0.5rem;
    border-radius: 15px;
    font-weight: bold;
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    border: 2px solid var(--deep-black);
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-date:hover {
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.3);
}

.news-content {
    flex: 1;
}

.news-content p {
    margin-bottom: 0.5rem;
    color: var(--primary-red);
}

.highlight {
    color: var(--dark-red);
    font-weight: bold;
}

/* External Link Icon */
.external-link-icon {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: var(--primary-red);
}

.link-item:hover .external-link-icon {
    transform: translateX(3px);
    color: var(--gold);
}

.link-item:hover .link-title {
    color: var(--primary-red);
}

/* Modal for image viewing */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    margin: auto;
}

.modal-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(255, 23, 68, 0.4);
    border: 3px solid var(--primary-red);
    display: block;
    object-fit: contain;
}

.close {
    position: fixed;
    top: 20px;
    right: 30px;
    color: var(--primary-red);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    z-index: 10001;
}

.close:hover {
    color: var(--gold);
    transform: scale(1.2);
}

/* Footer - 赤背景に黒文字 */
footer {
    background: var(--gradient-fire);
    color: var(--deep-black);
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 4rem;
    box-shadow: 0 -4px 20px rgba(255, 23, 68, 0.3);
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

footer p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

footer a {
    color: var(--deep-black);
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
    color: var(--gold);
}

/* Scrollbar styling */
.news-list::-webkit-scrollbar {
    width: 8px;
}

.news-list::-webkit-scrollbar-track {
    background: rgba(255, 23, 68, 0.1);
    border-radius: 4px;
}

.news-list::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

.news-list::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo {
        font-size: 1.2rem;
        max-width: calc(100% - 60px);
    }
    
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-red);
        z-index: 999;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list.active a {
        color: var(--gold);
    }
    
    .nav-list li {
        min-width: auto;
    }
    
    .unified-grid,
    .info-grid,
    .works-grid,
    .gallery-grid,
    .videos-grid,
    .links-grid,
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .unified-section,
    .store-info-section,
    .map-section,
    .works-section,
    .gallery-section,
    .contact-section,
    .fortune-section,
    .videos-section,
    .link-section,
    .menu-section,
    .news-section {
        padding: 1.5rem;
    }
    
    .contact-section,
    .fortune-section {
        padding: 2rem;
    }
    
    .unified-section h2,
    .contact-section h2,
    .fortune-section h2 {
        font-size: 1.8rem;
    }
    
    .fortune-toggle {
        flex-direction: column;
        align-items: center;
    }
    
    .fortune-draw-section {
        padding: 2rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .news-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .news-date {
        min-width: auto;
        align-self: flex-start;
    }
    
    .contact-card {
        padding: 2rem;
        margin: 1rem auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .logo {
        font-size: 1rem;
        max-width: calc(100% - 50px);
    }
    
    .unified-section,
    .store-info-section,
    .map-section,
    .works-section,
    .gallery-section,
    .contact-section,
    .fortune-section,
    .videos-section,
    .link-section,
    .menu-section,
    .news-section {
        padding: 1rem;
    }
    
    .contact-section,
    .fortune-section {
        padding: 1.5rem;
    }
    
    .unified-section h2,
    .store-info-section h2,
    .works-section h2,
    .gallery-section h2,
    .contact-section h2,
    .fortune-section h2,
    .videos-section h2,
    .link-section h2,
    .menu-section h2 {
        font-size: 1.5rem;
    }
    
    .map-section h3 {
        font-size: 1.4rem;
    }
    
    .unified-grid,
    .info-grid,
    .works-grid,
    .gallery-grid,
    .videos-grid,
    .links-grid,
    .menu-grid {
        gap: 1rem;
    }
    
    .unified-item,
    .work-item,
    .gallery-item,
    .video-item,
    .link-item,
    .menu-item {
        padding: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-avatar {
        width: 100px;
        height: 100px;
    }
    
    .twitter-link {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .note-section {
        padding: 2rem;
    }
    
    .unified-button,
    .draw-button {
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
    }
    
    .toggle-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .fortune-draw-section {
        padding: 1.5rem;
    }
    
    .close {
        font-size: 30px;
        top: 10px;
        right: 20px;
    }
    
    .hero-section {
        height: 400px;
    }
}

/* Tablet specific */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-list {
        flex-wrap: wrap;
    }
    
    .nav-list li {
        flex: 0 0 calc(20% - 1px);
        min-width: 140px;
    }
    
    .works-grid,
    .gallery-grid,
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .videos-grid,
    .links-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.5; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal.show .modal-content {
    animation: modalFadeIn 0.3s ease forwards;
}