:root {
    --primary-color: #8a2be2; /* Bright purple */
    --secondary-color: #e066ff; /* Lighter purple */
    --accent-color: #ff69b4; /* Pink accent */
    --background-color: #f8f0ff; /* Very light purple background */
    --text-color: #333;
    --light-text: #fff;
    --border-radius: 15px;
    --box-shadow: 0 4px 8px rgba(138, 43, 226, 0.2);
}

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

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 {
    font-family: 'Bubblegum Sans', cursive;
    color: var(--primary-color);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
    transform: translateY(-3px);
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    position: relative;
    cursor: pointer;
    z-index: 100;
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo.animating {
    position: absolute;
    transition: none;
}

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

nav {
    display: flex;
    align-items: center;
}

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

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #b36dfc 0%, #8e54e9 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero h1 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: 'Nunito', sans-serif;
}

.hero .btn {
    background: linear-gradient(45deg, #ff69b4, #ff4a92);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Nunito', sans-serif;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.3);
}

/* Token Package in Hero - REMOVING THIS ENTIRE UNUSED SECTION */
/*
.token-package-preview {
    margin-top: 40px;
    position: relative;
}

.token-title {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2.2rem;
    color: white;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.token-title::after {
    content: "";
    height: 5px;
    width: 80%;
    background: linear-gradient(90deg, transparent, #ff69b4, transparent);
    position: absolute;
    bottom: -10px;
    left: 10%;
}

.token-image-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.token-image-container:hover {
    transform: scale(1.02);
}

.token-package-image {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
}

.token-image-container:hover .token-package-image {
    filter: brightness(1.1);
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-weight: bold;
}

.zoom-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.token-image-container:hover .zoom-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero h1 { 
        font-size: 2.5rem; 
    }
    
    .token-title { 
        font-size: 1.8rem; 
    }
}
*/

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .token-title {
        font-size: 1.8rem;
    }
}

/* Store Info Section */
.store-info {
    padding: 80px 0;
    background-color: var(--background-color);
}

.info-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.location {
    margin-bottom: 30px;
}

.location h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.location p {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.map-container {
    margin-top: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: scale(1.02);
}

.map-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Featured Gallery Section */
.featured-gallery {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.featured-gallery h2 {
    color: var(--light-text);
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.featured-gallery .btn {
    background-color: var(--light-text);
    color: var(--primary-color);
    margin: 20px auto;
    display: block;
    width: fit-content;
}

.featured-gallery .btn:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
}

/* Updated Events Section Styling */
.events-container {
    display: flex;
    flex-direction: column;
}

.events-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.featured-event {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.event-date-range {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.date-block {
    background: linear-gradient(135deg, #b36dfc 0%, #8e54e9 100%);
    color: white;
    border-radius: 8px;
    width: 60px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.date-separator {
    margin: 0 10px;
    color: #8e54e9;
    font-weight: bold;
}

.date-block .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
}

.date-block .day {
    font-size: 1.5rem;
    font-weight: bold;
}

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

.event-details h3 {
    color: #333;
    margin-bottom: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
}

.event-details p {
    color: #666;
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
    line-height: 1.5;
}

.event-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.highlight-tag {
    background: #f0e6ff;
    color: #8e54e9;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.promotion-button {
    background: linear-gradient(45deg, #b36dfc, #8e54e9);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.promotion-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(142, 84, 233, 0.4);
}

.promotion-button .btn-icon {
    margin-left: 8px;
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.footer-logo:hover img {
    transform: scale(1.1);
}

/* 确保在移动设备上也有合适的尺寸 */
@media (max-width: 768px) {
    .footer-logo img {
        width: 70px;
        height: 70px;
    }
}

.footer-info p {
    margin-bottom: 10px;
}

.social-links {    display: flex;    gap: 15px;}.social-icon {    width: 40px;    height: 40px;    display: flex;    align-items: center;    justify-content: center;    background-color: rgba(255, 255, 255, 0.2);    border-radius: 50%;    transition: transform 0.3s ease, background-color 0.3s ease;}.social-icon i {    font-size: 18px;    color: white;}.social-icon:hover {    transform: scale(1.2);    background-color: rgba(255, 255, 255, 0.3);}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .info-card {
        grid-template-columns: 1fr;
    }
    
    .logo img {
        max-height: 100px;
    }
    
    header {
        min-height: 80px;
    }
}

/* 背景墙风格图库样式 */
.gallery-section {
    padding: 60px 0;
    background-color: #f0e6ff;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="%23d9c6ff" stroke-width="2"/></svg>');
    background-size: 20px 20px;
}

.gallery-section h1 {
    font-size: 3.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
    font-family: 'Bubblegum Sans', cursive;
    text-shadow: 3px 3px 0px rgba(138, 43, 226, 0.2);
}

.gallery-section p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.3rem;
    color: var(--medium-text);
}

/* 筛选按钮样式 */
.filter-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 25px;
    margin: 0 8px 12px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(138, 43, 226, 0.1);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(138, 43, 226, 0.2);
}

/* 背景墙容器 */
.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    perspective: 1000px;
}

/* 背景墙图片项目样式 */
.gallery-item {
    width: 350px;
    height: 350px;
    margin: 25px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    cursor: pointer;
}

/* 不同尺寸的图片 */
.gallery-item.large {
    width: 450px;
    height: 450px;
}

.gallery-item.medium {
    width: 350px;
    height: 350px;
}

.gallery-item.small {
    width: 250px;
    height: 250px;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .gallery-item.large {
        width: 400px;
        height: 400px;
    }
    .gallery-item.medium {
        width: 320px;
        height: 320px;
    }
    .gallery-item.small {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .gallery-item.large {
        width: 320px;
        height: 320px;
    }
    .gallery-item.medium {
        width: 280px;
        height: 280px;
    }
    .gallery-item.small {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 576px) {
    .gallery-item.large,
    .gallery-item.medium,
    .gallery-item.small {
        width: 280px;
        height: 280px;
        margin: 15px;
    }
}

/* 图片框架效果 */
.gallery-item:before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateZ(-10px);
    z-index: -1;
}

/* 图片阴影效果 */
.gallery-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -2;
}

.gallery-item:hover {
    transform: translateY(-20px) rotateX(5deg) rotateY(-5deg);
}

.gallery-item:hover:after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 3px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 图片标签效果 */
.gallery-caption {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-align: center;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption h3 {
    margin: 0 0 5px;
    font-size: 1.4rem;
    color: var(--primary-color);
    font-family: 'Bubblegum Sans', cursive;
}

.gallery-caption p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--medium-text);
    text-align: center;
}

/* 图钉效果 */
.gallery-item:before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%) translateZ(5px);
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    z-index: 1;
}

/* 无图片提示 */
.no-images {
    width: 100%;
    text-align: center;
    padding: 50px;
    color: var(--medium-text);
    font-style: italic;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 20px;
}

/* 灯箱样式 */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.lightbox-caption {
    margin-top: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-text);
    font-family: 'Bubblegum Sans', cursive;
}

.lightbox-description {
    margin-top: 10px;
    color: var(--medium-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-error {
    padding: 50px;
    background-color: #f8f8f8;
    color: #888;
    text-align: center;
    font-style: italic;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* 放大logo 3倍 */
img[src*="logo"] {
    width: 150px !important;  /* 当前尺寸的3倍 */
    height: 150px !important; /* 当前尺寸的3倍 */
    object-fit: contain;
}

/* 确保容器也相应调整 */
.logo, 
a.logo {
    display: inline-block;
    width: 150px !important;
    height: 150px !important;
}

/* 地图点击放大效果 */
.map-container {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: scale(1.02);
}

.map-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-lightbox.active {
    opacity: 1;
}

.map-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.map-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 1001;
}

/* 卡通风格背景墙效果 */
.highlights-section {
    padding: 60px 0;
    background-color: #f8f0ff;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d980ff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    font-family: 'Bubblegum Sans', cursive;
}

.highlight-card {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 7px 7px 0 rgba(138, 43, 226, 0.4);
    border: 4px solid #d980ff;
    position: relative;
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.highlight-card.reverse {
    flex-direction: row-reverse;
    transform: rotate(1deg);
}

.highlight-card.reverse:hover {
    transform: rotate(0deg) scale(1.02);
}

.highlight-content {
    padding: 30px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.highlight-content h3 {
    color: #6a11cb;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0 rgba(138, 43, 226, 0.2);
}

.highlight-content .btn {
    background: linear-gradient(45deg, #6a11cb, #d980ff);
    border: none;
    padding: 12px 24px;
    color: white;
    border-radius: 30px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 3px 3px 0 rgba(138, 43, 226, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Bubblegum Sans', cursive;
}

.highlight-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 0 rgba(138, 43, 226, 0.4);
}

.highlight-image {
    width: 50%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    margin: 15px;
    border: 8px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.highlight-card.reverse .highlight-image {
    transform: rotate(2deg);
}

.highlight-card:hover .highlight-image {
    transform: rotate(0deg) scale(1.05);
}

/* 卡通气泡装饰 */
.highlight-card::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(217, 128, 255, 0.2);
    border-radius: 50%;
    top: -20px;
    left: 10%;
    z-index: 0;
}

.highlight-card::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(217, 128, 255, 0.15);
    border-radius: 50%;
    bottom: -15px;
    right: 15%;
    z-index: 0;
}

.highlight-card.reverse::before {
    left: auto;
    right: 10%;
}

.highlight-card.reverse::after {
    right: auto;
    left: 15%;
}

/* 可爱贴纸效果 */
.sticker {
    position: absolute;
    font-size: 1.8rem;
    color: #ff6b6b;
    transform: rotate(-15deg);
    z-index: 10;
    filter: drop-shadow(1px 1px 0 white);
    animation: float 3s ease-in-out infinite;
}

.sticker-1 {
    top: 10px;
    right: 20px;
}

.sticker-2 {
    bottom: 15px;
    left: 30px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-15deg);
    }
    50% {
        transform: translateY(-10px) rotate(-15deg);
    }
}
/* 响应式调整 */
@media (max-width: 768px) {
    .highlight-card, .highlight-card.reverse {
        flex-direction: column;
        transform: rotate(0deg);
    }
    
    .highlight-image {
        width: calc(100% - 30px);
        height: 250px;
    }
}

/* 轮播样式 */
.carousel-container {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    width: 100%;
    transition: opacity 0.5s ease;
}

.carousel-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    margin: 15px;
    border: 8px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.highlight-card.reverse .carousel-slide img {
    transform: rotate(2deg);
}

.highlight-card:hover .carousel-slide img {
    transform: rotate(0deg) scale(1.05);
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .carousel-container {
        width: 100%;
    }
    
    .carousel-dots {
        bottom: 10px;
        right: 10px;
    }
}

/* 图片网格布局 */
.image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 50%;
    padding: 15px;
}

.image-grid .highlight-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    border: 8px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.highlight-card.reverse .image-grid .highlight-image {
    transform: rotate(2deg);
}

.highlight-card .image-grid .highlight-image:hover {
    transform: rotate(0deg) scale(1.05);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .image-grid {
        width: 100%;
    }
}

/* 照片墙效果 */
.photo-wall {
    width: 100%;
    overflow: visible; /* 允许内容溢出以显示完整照片 */
    margin-bottom: 30px;
    padding: 20px 0; /* 增加上下内边距 */
}

/* 新增照片行容器 */
.photo-row {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 30px; /* 增加间距 */
    width: 100%;
    padding: 20px 0; /* 增加内边距 */
}

/* 调整照片卡片样式 */
.photo-card {
    flex: 0 0 auto;
    width: 250px;
    height: 250px;
    position: relative;
    transition: all 0.3s ease;
    margin: 0;
    transform-origin: center center; /* 确保旋转效果以中心为基准 */
}

/* 确保照片框架完整显示 */
.photo-frame {
    width: 100%;
    height: 100%;
    background: white;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box; /* 确保内边距不会增加元素尺寸 */
}

/* 调整照片旋转角度，减小以避免裁剪 */
.photo-card:nth-child(1) { transform: rotate(-2deg); }
.photo-card:nth-child(2) { transform: rotate(1deg); }
.photo-card:nth-child(3) { transform: rotate(-1deg); }
.photo-card:nth-child(4) { transform: rotate(2deg); }

/* 确保悬停时照片完整显示 */
.photo-card:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
}

/* 调整容器在不同屏幕尺寸下的行为 */
@media (max-width: 1200px) {
    .photo-row {
        justify-content: center; /* 保持居中 */
        overflow-x: auto;
        padding: 20px 10px;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        /* 确保有足够空间显示旋转的照片 */
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .photo-card {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 576px) {
    .photo-card {
        width: 180px;
        height: 180px;
    }
    
    .photo-row {
        gap: 15px;
    }
}

/* 随机旋转角度，让照片看起来更自然 */
.photo-item:nth-child(odd) {
    transform: rotate(-3deg);
}

.photo-item:nth-child(even) {
    transform: rotate(5deg);
}

.photo-item:nth-child(3n) {
    transform: rotate(-7deg);
}

/* 悬停效果 - 照片变大并回正 */
.photo-item:hover {
    transform: rotate(0deg) scale(1.1);
    z-index: 10;
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.3);
}

/* 图片样式 */
.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

/* 图钉效果 */
.photo-item::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #ff5252, #d32f2f);
    border-radius: 50%;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* 添加照片胶带效果 */
.photo-item.tape-left::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 15px;
    background: rgba(255, 255, 255, 0.5);
    top: -5px;
    left: 15px;
    transform: rotate(-10deg);
    z-index: 1;
}

.photo-item.tape-right::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 15px;
    background: rgba(255, 255, 255, 0.5);
    top: -5px;
    right: 15px;
    transform: rotate(10deg);
    z-index: 1;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .photo-wall {
        gap: 15px;
    }
    
    .photo-item {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 576px) {
    .photo-wall {
        gap: 10px;
    }
    
    .photo-item {
        width: 200px;
        height: 200px;
    }
}

/* 便签效果 */
.sticky-note {
    background: #ffeb3b;
    padding: 10px;
    transform: rotate(-2deg) !important;
    box-shadow: 2px 3px 6px rgba(0,0,0,0.1);
}

.sticky-note:hover {
    transform: rotate(0deg) scale(1.05) !important;
}

.note-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Indie Flower', cursive, sans-serif;
    font-size: 1.2rem;
    color: #333;
    padding: 10px;
}

.highlight-card.reverse .sticky-note {
    transform: rotate(3deg) !important;
}

.highlight-card.reverse .sticky-note:hover {
    transform: rotate(0deg) scale(1.05) !important;
}

/* 统一照片墙卡片 */
.photo-wall-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 7px 7px 0 rgba(138, 43, 226, 0.4);
    border: 4px solid #d980ff;
    padding: 30px;
    position: relative;
    margin-bottom: 50px;
    background-image: 
        radial-gradient(circle at 90% 10%, rgba(138, 43, 226, 0.05) 30px, transparent 80px),
        radial-gradient(circle at 10% 90%, rgba(138, 43, 226, 0.05) 30px, transparent 80px);
    overflow: hidden;
}

/* 照片墙标题区域 */
.photo-wall-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.header-left, .header-right {
    width: 48%;
    padding: 15px;
}

.photo-wall-header h3 {
    color: #6a11cb;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 rgba(138, 43, 226, 0.2);
    line-height: 1.3;
}

/* 统一照片墙区域 */
.unified-photo-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    background-color: #f8f0ff;
    border-radius: 15px;
    position: relative;
    margin: 20px 0;
}

/* 照片项目 - 调整尺寸和位置 */
.photo-item {
    position: relative;
    width: 100%;
    height: 180px;
    background: white;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    transition: all 0.3s ease;
    justify-self: center;
}

/* 客户照片和店铺照片的特殊定位 */
.customer-photo:nth-child(1) {
    transform: rotate(-5deg);
    z-index: 2;
}

.customer-photo:nth-child(2) {
    transform: rotate(3deg);
    z-index: 1;
}

.store-photo:nth-child(4) {
    transform: rotate(4deg);
    z-index: 2;
}

.store-photo:nth-child(5) {
    transform: rotate(-3deg);
    z-index: 1;
}

/* 悬停效果增强 */
.photo-item:hover {
    transform: rotate(0deg) scale(1.15);
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* 便签样式调整 */
.sticky-note {
    background: #ffeb3b;
    transform: rotate(-3deg) !important;
    height: auto;
}

.sticky-note:hover {
    transform: rotate(0) scale(1.1) !important;
}

.note-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Indie Flower', cursive, sans-serif;
    font-size: 1.2rem;
    color: #333;
    padding: 15px;
}

/* 按钮区域 */
.photo-wall-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-purple {
    background: linear-gradient(45deg, #6a11cb, #d980ff);
    border: none;
    padding: 12px 24px;
    color: white;
    border-radius: 30px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 3px 3px 0 rgba(138, 43, 226, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-purple:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 0 rgba(138, 43, 226, 0.4);
}

.btn-icon {
    font-size: 1.3rem;
}

/* 额外贴纸装饰 */
.sticker-3 {
    position: absolute;
    font-size: 2.2rem;
    bottom: 20px;
    right: 20px;
    transform: rotate(10deg);
    animation: float 4s ease-in-out infinite;
    z-index: 5;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .header-left, .header-right {
        width: 100%;
        text-align: center;
    }
    
    .unified-photo-wall {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .unified-photo-wall {
        grid-template-columns: 1fr;
    }
    
    .photo-item {
        height: 160px;
    }
    
    .photo-wall-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* 创意商店信息区样式 */
.store-info-section {
    padding: 60px 0;
    background-color: #f8f0ff;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d980ff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.store-info-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.15);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.store-info-container::before {
    content: "🎮";
    position: absolute;
    font-size: 180px;
    opacity: 0.03;
    right: -30px;
    top: -30px;
    transform: rotate(15deg);
}

.store-info-container::after {
    content: "🏆";
    position: absolute;
    font-size: 180px;
    opacity: 0.03;
    left: -30px;
    bottom: -30px;
    transform: rotate(-15deg);
}

.store-info-title {
    text-align: center;
    margin-bottom: 40px;
    color: #6a11cb;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 3px 3px 0 rgba(138, 43, 226, 0.1);
    position: relative;
}

.store-info-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, #6a11cb, #d980ff);
    margin: 15px auto 0;
    border-radius: 10px;
}

.store-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* 左侧区域 - 位置信息 */
.location-info {
    padding: 25px;
    position: relative;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f0ff 0%, #f0f0ff 100%);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.1);
}

.location-title {
    color: #6a11cb;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-title::before {
    content: "📍";
    font-size: 2rem;
}

.location-address {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.location-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
    position: relative;
}

.location-map img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.location-map:hover img {
    transform: scale(1.02);
}

/* 简化地图样式，移除标记相关样式 */
.location-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
    position: relative;
}

.location-map img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.location-map:hover img {
    transform: scale(1.02);
}

/* 右侧区域 - 营业时间 */
.hours-info {
    padding: 25px;
    position: relative;
    border-radius: 15px;
    background: linear-gradient(135deg, #f0f0ff 0%, #f8f0ff 100%);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.1);
}

.hours-title {
    color: #6a11cb;
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-title::before {
    content: "⏰";
    font-size: 2rem;
}

.hours-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-card {
    background: white;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 3px 10px rgba(138, 43, 226, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hours-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

.hours-day {
    font-weight: bold;
    font-size: 1.1rem;
    color: #6a11cb;
    position: relative;
    z-index: 1;
}

.hours-time {
    font-size: 1.1rem;
    color: #444;
    position: relative;
    z-index: 1;
    font-family: 'Courier New', monospace;
    background: linear-gradient(90deg, #6a11cb, #d980ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.hours-card::before {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, rgba(138, 43, 226, 0.1), rgba(138, 43, 226, 0));
    transition: width 0.3s ease;
}

.hours-card:hover::before {
    width: 100%;
}

.hours-card.weekend {
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.1), white);
    border-left: 5px solid #ffc107;
}

/* 装饰元素 */
.decoration-element {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.dec-1 {
    top: 20px;
    right: 30px;
}

.dec-2 {
    bottom: 30px;
    left: 40px;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .store-info-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .store-info-container {
        padding: 25px;
    }
    
    .hours-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* 添加店铺标签样式 */
.store-label {
    position: absolute;
    background-color: rgba(138, 43, 226, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    top: 40%;
    left: 60%;
    transform: translate(-50%, -50%);
    z-index: 5;
    white-space: nowrap;
}

.store-label .arrow {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(138, 43, 226, 0.9);
    transform: rotate(45deg);
    bottom: -5px;
    left: 50%;
    margin-left: -10px;
    z-index: -1;
}

/* 添加覆盖层样式，用于遮挡地图上的标记 */
.map-cover {
    position: absolute;
    background-color: #d9d9d9; /* 匹配地图背景色 */
    width: 80px;  /* 调整宽度以覆盖标记 */
    height: 40px; /* 调整高度以覆盖标记 */
    top: 40%;     /* 调整位置以覆盖标记 */
    left: 46%;    /* 调整位置以覆盖标记 */
    z-index: 2;
}

/* Store Info Card Styles */
.info-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    margin-top: 20px;
}

.location {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.location-details {
    flex: 1;
    min-width: 280px;
}

.location-details p {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.location-details .fa {
    margin-right: 8px;
    color: #ff6b6b;
}

.location-map {
    flex: 1;
    min-width: 280px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    border: 3px solid #f8f8f8;
    transition: all 0.3s ease;
}

.location-map:hover {
    transform: scale(1.02);
    border-color: #ffcc80;
}

.location-map img {
    width: 100%;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-map:hover .map-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 24px;
    margin-bottom: 5px;
    color: white;
}

.zoom-text {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
}

.opening-hours {
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 15px 0;
}

.day {
    font-weight: bold;
    color: #555;
}

.time {
    color: #777;
}

.today-status {
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-indicator.open {
    background-color: #4caf50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.status-indicator.closed {
    background-color: #f44336;
    box-shadow: 0 0 10px rgba(244, 67, 54, 0.5);
}

.btn-small {
    font-size: 14px;
    padding: 6px 12px;
    margin-top: 10px;
    display: inline-block;
}

/* Lightbox Styles */
.map-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-lightbox.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.map-lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border: 5px solid white;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.map-lightbox-close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: #333;
}

@media (max-width: 768px) {
    .location {
        flex-direction: column;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

/* Combined Gallery Wall Styling */
.gallery-wall {
    background: linear-gradient(135deg, #ffecf7 0%, #e5e0ff 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.gallery-wall::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="2" fill="%23ffffff80"/><circle cx="30" cy="10" r="2" fill="%23ffffff80"/><circle cx="50" cy="10" r="2" fill="%23ffffff80"/><circle cx="70" cy="10" r="2" fill="%23ffffff80"/><circle cx="90" cy="10" r="2" fill="%23ffffff80"/><circle cx="10" cy="30" r="2" fill="%23ffffff80"/><circle cx="30" cy="30" r="2" fill="%23ffffff80"/><circle cx="50" cy="30" r="2" fill="%23ffffff80"/><circle cx="70" cy="30" r="2" fill="%23ffffff80"/><circle cx="90" cy="30" r="2" fill="%23ffffff80"/><circle cx="10" cy="50" r="2" fill="%23ffffff80"/><circle cx="30" cy="50" r="2" fill="%23ffffff80"/><circle cx="50" cy="50" r="2" fill="%23ffffff80"/><circle cx="70" cy="50" r="2" fill="%23ffffff80"/><circle cx="90" cy="50" r="2" fill="%23ffffff80"/><circle cx="10" cy="70" r="2" fill="%23ffffff80"/><circle cx="30" cy="70" r="2" fill="%23ffffff80"/><circle cx="50" cy="70" r="2" fill="%23ffffff80"/><circle cx="70" cy="70" r="2" fill="%23ffffff80"/><circle cx="90" cy="70" r="2" fill="%23ffffff80"/><circle cx="10" cy="90" r="2" fill="%23ffffff80"/><circle cx="30" cy="90" r="2" fill="%23ffffff80"/><circle cx="50" cy="90" r="2" fill="%23ffffff80"/><circle cx="70" cy="90" r="2" fill="%23ffffff80"/><circle cx="90" cy="90" r="2" fill="%23ffffff80"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.gallery-section {
    position: relative;
    z-index: 1;
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.section-header {
    flex: 1;
    min-width: 250px;
    padding-right: 30px;
}

.section-header h3 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.8rem;
    color: #7c4dff;
    margin-bottom: 15px;
}

.photo-display {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    position: relative;
    min-width: 300px;
}

.photo-item {
    width: calc(50% - 20px);
    max-width: 280px;
    position: relative;
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.03) rotate(1deg);
    z-index: 2;
}

.photo-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 8px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tape-left::before, .tape-right::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    z-index: 2;
}

.tape-left::before {
    top: -5px;
    left: 20px;
    transform: rotate(-45deg);
}

.tape-right::before {
    top: -5px;
    right: 20px;
    transform: rotate(45deg);
}

.sticky-note {
    width: 120px !important;
    height: 120px;
    padding: 15px;
    background-color: #ffea00;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
    transform: rotate(-5deg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.note-content {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
}

.sticker {
    position: absolute;
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    animation: float 3s ease-in-out infinite;
}

.sticker-1 {
    top: 5%;
    right: 5%;
}

.sticker-2 {
    bottom: 10%;
    left: 10%;
}

.sticker-3 {
    top: 8%;
    left: 5%;
}

.sticker-4 {
    bottom: 8%;
    right: 8%;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.divider {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 10px 0;
}

.divider-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(124, 77, 255, 0.4), transparent);
}

.divider-icon {
    margin: 0 15px;
    font-size: 1.5rem;
    color: #7c4dff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-wall {
        padding: 20px;
    }
    
    .gallery-section {
        flex-direction: column;
    }
    
    .section-header {
        width: 100%;
        padding-right: 0;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .photo-display {
        width: 100%;
    }
    
    .photo-item {
        width: calc(100% - 20px);
        max-width: 320px;
        margin: 0 auto;
    }
}

/* Token Packages Image Display - Simplified */
.token-packages-display {
    padding: 50px 0;
    background-color: #f8f0ff;
}

.token-packages-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Dual Content Layout Styling */
.dual-content-section {
    padding: 60px 0;
    background-color: #f8f0ff;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b36dfc' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.dual-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.section-title {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2rem;
    color: #8e54e9;
    margin-bottom: 25px;
    text-align: center;
}

/* Token Package Styling */
.token-package-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Events Section Styling */
.events-container {
    display: flex;
    flex-direction: column;
}

.events-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.event-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e0e0e0;
}

.event-item:last-of-type {
    border-bottom: none;
}

.event-date {
    background: linear-gradient(135deg, #b36dfc 0%, #8e54e9 100%);
    color: white;
    border-radius: 8px;
    min-width: 60px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: bold;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    color: #333;
    margin-bottom: 5px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

.event-details p {
    color: #666;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

.events-btn {
    margin-top: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .dual-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .token-package-container, .events-container {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .events-box {
        padding: 15px;
    }
}

/* Creative Event Image Display */
.events-box {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.event-image-container {
    position: relative;
    margin-bottom: 20px;
}

.event-image-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.decoration-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b36dfc 0%, #8e54e9 100%);
    opacity: 0.8;
}

.event-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.event-image-wrapper:hover {
    transform: translateY(-5px);
}

.event-image {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
}

.event-image-wrapper:hover .event-image {
    filter: brightness(1.05);
}

.image-zoom-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(142, 84, 233, 0.8);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

.image-zoom-btn:hover {
    background: rgba(142, 84, 233, 1);
}

.zoom-icon {
    margin-right: 5px;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0 0 15px 0;
}

.highlight-tag {
    background: #f0e6ff;
    color: #8e54e9;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.tag-icon {
    margin-right: 5px;
}

.promotion-button {
    background: linear-gradient(45deg, #b36dfc, #8e54e9);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 5px auto 10px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.promotion-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(142, 84, 233, 0.4);
}

.promotion-button .btn-icon {
    margin-left: 8px;
}

/* Updated Event Box Styling with Image Below Title */
.events-box {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.event-date-range {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.date-block {
    background: linear-gradient(135deg, #b36dfc 0%, #8e54e9 100%);
    color: white;
    border-radius: 8px;
    width: 60px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.date-separator {
    margin: 0 10px;
    color: #8e54e9;
    font-weight: bold;
}

.date-block .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
}

.date-block .day {
    font-size: 1.5rem;
    font-weight: bold;
}

.event-title {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
}

.event-image-container {
    margin-bottom: 20px;
}

.event-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    max-width: 100%;
    margin: 0 auto;
}

.event-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-zoom-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(142, 84, 233, 0.8);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

.image-zoom-btn:hover {
    background: rgba(142, 84, 233, 1);
}

.zoom-icon {
    margin-right: 5px;
}

.event-description {
    margin-bottom: 20px;
}

.event-description p {
    color: #666;
    margin: 0;
    font-family: 'Nunito', sans-serif;
    line-height: 1.5;
    text-align: center;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0 0 15px 0;
}

.highlight-tag {
    background: #f0e6ff;
    color: #8e54e9;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.tag-icon {
    margin-right: 5px;
}

.promotion-button {
    background: linear-gradient(45deg, #b36dfc, #8e54e9);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 5px auto 10px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.promotion-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(142, 84, 233, 0.4);
}

.promotion-button .btn-icon {
    margin-left: 8px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .event-content {
        flex-direction: row;
    }
    
    .event-image-container, .event-description {
        flex: 1;
    }
    
    .event-image-container {
        margin-right: 15px;
    }
    
    .event-description {
        display: flex;
        align-items: center;
    }
    
    .event-description p {
        text-align: left;
    }
}

/* Single Row Gallery Layout */
.gallery-highlights {
    padding: 50px 0;
    background-color: #f8eeff;
    background-image: radial-gradient(rgba(183, 128, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.gallery-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.gallery-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.1);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.gallery-content {
    margin-bottom: 25px;
    position: relative;
}

.gallery-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1.4rem;
    color: #8e54e9;
    margin-bottom: 15px;
    font-weight: 700;
}

.gallery-button {
    display: inline-block;
    background: #8e54e9;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.gallery-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(142, 84, 233, 0.4);
}

.gallery-icon {
    position: absolute;
    bottom: -15px;
    left: 120px;
    font-size: 2rem;
    opacity: 0.5;
}

.gallery-images {
    position: relative;
    height: 240px;
    margin-top: 20px;
}

.polaroid-container {
    position: absolute;
    transition: transform 0.3s ease;
}

.polaroid-container:hover {
    transform: translateY(-10px) rotate(0deg) !important;
    z-index: 10 !important;
}

.polaroid {
    background: white;
    padding: 10px 10px 30px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    position: relative;
}

.polaroid img {
    width: 220px;
    height: 160px;
    object-fit: cover;
    display: block;
}

.pushpin {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.sticky-note {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #ffeb3b;
    right: -20px;
    bottom: 10px;
    transform: rotate(10deg);
    padding: 10px;
    font-size: 0.8rem;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sticky-note p {
    margin: 0 0 5px 0;
    font-weight: bold;
}

.note-icon {
    font-size: 1.2rem;
}

.decorative-heart,
.decorative-trophy {
    position: absolute;
    font-size: 1.5rem;
    right: 10px;
    top: -20px;
    animation: float 3s ease-in-out infinite;
}

.sparkle {
    display: inline-block;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive styles */
@media (max-width: 992px) {
    .gallery-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .gallery-card {
        width: 100%;
    }
    
    .gallery-images {
        height: 280px;
    }
}

/* Simplified gallery styling */
.gallery-section {
    padding: 40px 0;
    background-color: #f8eeff;
    background-image: radial-gradient(rgba(183, 128, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.gallery-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-card {
    flex: 1;
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.gallery-title {
    font-size: 1.5rem;
    color: #8e54e9;
    margin-bottom: 20px;
}

.gallery-button {
    display: inline-flex;
    align-items: center;
    background: #8e54e9;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
}

.button-icon {
    margin-left: 8px;
}

.gallery-image-container {
    position: relative;
    margin-top: 20px;
    padding: 10px;
}

.polaroid {
    background: white;
    padding: 10px;
    padding-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
    position: relative;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.polaroid:hover {
    transform: rotate(0) scale(1.05);
    z-index: 10;
}

.polaroid img {
    width: 100%;
    max-width: 260px;
    height: 180px;
    object-fit: cover;
    display: block;
    border: 1px solid #eee;
}

.pin {
    width: 12px;
    height: 12px;
    background-color: #ff5252;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.note {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #ffeb3b;
    right: -20px;
    bottom: 10px;
    transform: rotate(10deg);
    padding: 10px;
    font-size: 0.8rem;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.note p {
    margin: 0 0 5px 0;
    font-weight: bold;
}

/* Responsive styling */
@media (max-width: 768px) {
    .gallery-row {
        flex-direction: column;
    }
}

/* Add this to your CSS for the pulse effect */
@keyframes pulse {
    0% { transform: scale(1) rotate(var(--rotation, 2deg)); }
    50% { transform: scale(1.05) rotate(var(--rotation, 2deg)); }
    100% { transform: scale(1) rotate(var(--rotation, 2deg)); }
}

.pulse {
    animation: pulse 2s ease-in-out;
}

/* Fix any potential image loading issues */
.mini-polaroid img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border: 1px solid #f0f0f0;
    background-color: #f9f9f9; /* Placeholder color while images load */
}

/* Add fallback content in case images don't load */
.mini-polaroid img::before {
    content: '📷';
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
}

/* Horizontal gallery styling */
.horizontal-gallery {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 20px 0;
    height: 120px; /* Fixed height for the image row */
}

.gallery-image {
    position: relative;
    background: white;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 30%; /* Each image takes roughly a third of the space */
    height: 100%;
}

.left-image {
    transform: rotate(-2deg);
    z-index: 1;
}

.center-image {
    transform: rotate(0deg);
    z-index: 2;
}

.right-image {
    transform: rotate(2deg);
    z-index: 1;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pushpin {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #ff5252;
    border-radius: 50%;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
}

.gallery-message {
    text-align: center;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.gallery-message p {
    display: inline-block;
    background-color: #ffeb3b;
    padding: 8px 15px;
    border-radius: 3px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

/* Update gallery card styles */
.gallery-card {
    flex: 1;
    background-color: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 20px;
}

.gallery-title {
    font-size: 1.4rem;
    color: #8e54e9;
    margin-bottom: 15px;
}

.gallery-button {
    display: inline-flex;
    align-items: center;
    background: #8e54e9;
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.button-icon {
    margin-left: 6px;
}

/* Responsive styling */
@media (max-width: 768px) {
    .gallery-row {
        flex-direction: column;
    }
    
    .horizontal-gallery {
        height: 100px; /* Smaller height on mobile */
    }
}

/* Promotion Carousel Styling */
.promotion-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    min-height: 600px; /* Adjust based on your content */
}

.promo-slide {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.promo-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background-color: #d8c6ff;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active {
    background-color: #8e54e9;
    transform: scale(1.2);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(142, 84, 233, 0.8);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-arrow.prev {
    left: 10px;
}

.carousel-arrow.next {
    right: 10px;
}

.carousel-arrow:hover {
    background-color: rgba(142, 84, 233, 1);
    transform: translateY(-50%) scale(1.1);
}

/* Fixed Promotion Carousel Styling */
.promotion-box {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.promotion-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    min-height: auto; /* Remove fixed height */
}

.promo-slide {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.promo-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.promo-image {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    margin: 15px 0;
}

.promo-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain; /* Change from cover to contain */
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .promotion-box {
        padding: 15px;
    }
    
    .promo-image {
        max-height: 300px;
    }
    
    .promo-image img {
        max-height: 300px;
    }
}

/* Fixed date range and benefits styling */
.promotion-title {
    color: #8e54e9;
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.date-range {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.date-box {
    background-color: #b36dfc;
    color: white;
    border-radius: 10px;
    padding: 8px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.month {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
}

.day {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.to {
    margin: 0 15px;
    color: #666;
    font-weight: bold;
}

.promo-subtitle {
    font-size: 22px;
    color: #9061e5;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.promo-text {
    text-align: center;
    color: #666;
    margin: 15px 0;
    padding: 0 15px;
    line-height: 1.6;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
}

.benefit {
    background-color: #f0e6ff;
    color: #8e54e9;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.benefit i {
    margin-right: 5px;
}

.promo-button {
    display: block;
    width: 180px;
    margin: 20px auto;
    background-color: #b36dfc;
    color: white;
    text-align: center;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.promo-button:hover {
    background-color: #8e54e9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(142, 84, 233, 0.3);
}

.promo-button i {
    margin-left: 5px;
}

/* Make sure positions are not absolute within active slide */
.promo-slide.active .date-range,
.promo-slide.active .promo-subtitle,
.promo-slide.active .promo-text,
.promo-slide.active .benefits {
    position: static;
}

/* Add zoom button styling */
.zoom-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
}

/* Modal for image zoom functionality */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid white;
    border-radius: 5px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.close-modal:hover,
.close-modal:focus {
    color: #b36dfc;
    text-decoration: none;
}

/* Improved zoom button styling */
.zoom-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(142, 84, 233, 0.8);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.zoom-btn:hover {
    background-color: rgba(142, 84, 233, 1);
    transform: scale(1.05);
}

.promo-image {
    position: relative;
}

/* Add hover animation to token purchase package */
.token-package-container {
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
}

.token-package-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(142, 84, 233, 0.2);
}

.token-package-image {
    display: block;
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.token-package-container:hover .token-package-image {
    transform: scale(1.02);
}

/* View larger button enhancement */
.view-larger {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(142, 84, 233, 0.8);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.token-package-container:hover .view-larger {
    opacity: 1;
    transform: translateY(-5px);
}

/* Enhanced clickable image styling */
.token-package-image, .zoomable {
    cursor: zoom-in !important;
    transition: all 0.3s ease;
}

.token-package-container:hover .token-package-image, 
.promo-image:hover .zoomable {
    transform: scale(1.02);
}

/* Optional button styling - now supplementary */
.view-larger, .zoom-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(142, 84, 233, 0.8);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 14px;
    z-index: 5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
}

.token-package-container:hover .view-larger,
.promo-image:hover .zoom-btn {
    opacity: 1;
}

/* Clothesline Gallery Styling */
.gallery-section {
    padding: 40px 0;
    background-color: #f9f0ff;
}

.gallery-clothesline {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.clothesline-card {
    background-color: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(142, 84, 233, 0.15);
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clothesline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(142, 84, 233, 0.2);
}

.gallery-title {
    color: #8e54e9;
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.title-emoji {
    font-size: 24px;
}

/* Clothesline styling */
.clothesline {
    position: relative;
    padding: 50px 0 40px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.clothesline-rope {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #8e54e9;
    opacity: 0.6;
    z-index: 1;
}

.clothesline-rope:before,
.clothesline-rope:after {
    content: '';
    position: absolute;
    top: -15px;
    width: 8px;
    height: 15px;
    background-color: #8e54e9;
    border-radius: 4px 4px 0 0;
}

.clothesline-rope:before {
    left: 10%;
}

.clothesline-rope:after {
    right: 10%;
}

.hanging-photos {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
}

.photo-container {
    position: relative;
    margin: 0 10px;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.photo-container:nth-child(1) {
    --rotation: -3;
}

.photo-container:nth-child(2) {
    --rotation: 2;
}

.photo-container:nth-child(3) {
    --rotation: -2;
}

.photo-container:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 5;
}

.photo-clip {
    position: absolute;
    top: -15px;
    left: calc(50% - 10px);
    width: 20px;
    height: 25px;
    background-color: rgba(142, 84, 233, 0.7);
    border-radius: 5px 5px 0 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.hanging-photo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 3px;
    background-color: #f5f5f5;
}

.hanging-photo:hover {
    box-shadow: 0 8px 20px rgba(142, 84, 233, 0.3);
}

.hanging-tag {
    position: relative;
    background-color: #ffe559;
    color: #333;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 5px;
    display: inline-block;
    margin: 0 auto;
    transform: rotate(-2deg);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    position: absolute;
    bottom: -15px;
    left: calc(50% - 70px);
    z-index: 4;
}

.hanging-tag:hover {
    transform: rotate(0) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.yellow-tag {
    background-color: #ffe559;
}

.gallery-button {
    background: linear-gradient(45deg, #b36dfc, #8e54e9);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px auto 0;
    width: 180px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.gallery-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(142, 84, 233, 0.4);
}

.button-icon {
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .gallery-clothesline {
        flex-direction: column;
    }
    
    .hanging-photo {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .hanging-photo {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 576px) {
    .hanging-photos {
        flex-wrap: wrap;
    }
    
    .photo-container {
        margin: 10px;
    }
}

/* Updated Gallery Container Styling */
.gallery-section {
    padding: 40px 0;
    background-color: #f9f0ff;
}

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

.gallery-container {
    background-color: white;
    border-radius: 20px;
    padding: 30px 30px 90px;
    box-shadow: 0 8px 25px rgba(142, 84, 233, 0.15);
    display: flex;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.gallery-column {
    flex: 1;
    padding: 15px 20px;
    position: relative;
}

.gallery-divider {
    width: 3px;
    background: linear-gradient(to bottom, rgba(142, 84, 233, 0.05), rgba(142, 84, 233, 0.3), rgba(142, 84, 233, 0.05));
    margin: 20px 15px;
}

.gallery-title {
    color: #8e54e9;
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.title-emoji {
    font-size: 24px;
}

/* Clothesline styling */
.clothesline {
    position: relative;
    padding: 50px 0 40px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.clothesline-rope {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #b36dfc;
    z-index: 1;
}

.clothesline-rope:before,
.clothesline-rope:after {
    content: '';
    position: absolute;
    top: -15px;
    width: 8px;
    height: 15px;
    background-color: #b36dfc;
    border-radius: 4px 4px 0 0;
}

.clothesline-rope:before {
    left: 10%;
}

.clothesline-rope:after {
    right: 10%;
}

.hanging-photos {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
}

.photo-container {
    position: relative;
    margin: 0 10px;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.photo-container:nth-child(1) {
    --rotation: -3;
}

.photo-container:nth-child(2) {
    --rotation: 2;
}

.photo-container:nth-child(3) {
    --rotation: -2;
}

.photo-container:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 5;
}

.photo-clip {
    position: absolute;
    top: -15px;
    left: calc(50% - 10px);
    width: 20px;
    height: 25px;
    background-color: #b36dfc;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.hanging-photo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 3px;
    background-color: #f5f5f5;
}

.hanging-photo:hover {
    box-shadow: 0 8px 20px rgba(142, 84, 233, 0.3);
}

.hanging-tag {
    position: relative;
    background-color: #ffe559;
    color: #333;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 5px;
    display: inline-block;
    margin: 0 auto;
    transform: rotate(-2deg);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    position: absolute;
    bottom: -15px;
    left: calc(50% - 70px);
    z-index: 4;
}

.hanging-tag:hover {
    transform: rotate(0) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.yellow-tag {
    background-color: #ffe559;
}

.gallery-button {
    background: linear-gradient(45deg, #b36dfc, #8e54e9);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px auto 0;
    width: 180px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.gallery-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(142, 84, 233, 0.4);
}

.button-icon {
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .gallery-container {
        flex-direction: column;
    }
    
    .gallery-divider {
        width: auto;
        height: 3px;
        margin: 15px 0;
    }
    
    .hanging-photo {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        flex-direction: column;
    }
    
    .gallery-divider {
        width: auto;
        height: 3px;
        margin: 15px 0;
    }
    
    .hanging-photo {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 576px) {
    .gallery-container {
        flex-direction: column;
    }
    
    .gallery-divider {
        width: auto;
        height: 3px;
        margin: 15px 0;
    }
    
    .hanging-photos {
        flex-wrap: wrap;
    }
    
    .photo-container {
        margin: 10px;
    }
}

/* Add image error handling */
.hanging-photo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 3px;
    background-color: #f5f5f5; /* Light background for images that fail to load */
}

.hanging-photo:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Crect fill='%23f0f0f0' width='100' height='100'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Handle image load errors */
.hanging-photo.error:after {
    opacity: 1;
}

/* Add a script to handle error images */

/* Gallery Wall Section Styles - 添加到style.css文件末尾 */
.gallery-wall-section {
    padding: 70px 0;
    background-color: #f0e6ff;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1" fill="%23d9c6ff"/></svg>');
    background-size: 20px 20px;
}

.gallery-wall-section h2 {
    text-align: center;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.gallery-wall {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.wall-photo {
    transition: all 0.4s ease;
    cursor: pointer;
}

.photo-frame {
    background: white;
    border: 10px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Add slight rotation to photos for natural look */
.store-photo { transform: rotate(-2deg); }
.machine-photo { transform: rotate(3deg); }
.prize-photo { transform: rotate(-1deg); }
.customer-photo { transform: rotate(2deg); }

.wall-photo:hover {
    transform: scale(1.05) rotate(0);
    z-index: 5;
}

.wall-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(138, 43, 226, 0.8);
    color: white;
    padding: 10px;
    font-family: 'Bubblegum Sans', cursive;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.wall-photo:hover .photo-label {
    transform: translateY(0);
}

.view-all-gallery {
    text-align: center;
    margin-top: 20px;
}

.gallery-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.2rem;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(138, 43, 226, 0.3);
}

.gallery-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(138, 43, 226, 0.4);
}

/* Mobile Responsive for Gallery Wall */
@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wall-photo img {
        height: 200px;
    }
}

/* Gallery Showcase Section Styles */
.gallery-showcase {
    padding: 60px 0;
    background-color: #f0e6ff;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1" fill="%23d9c6ff"/></svg>');
    background-size: 20px 20px;
}

.gallery-showcase h2 {
    text-align: center;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.gallery-showcase p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.photo-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.photo-card {
    width: 300px;    /* 从之前的尺寸增加到 300px */
    height: 300px;   /* 从之前的尺寸增加到 300px */
    position: relative;
    margin: 10px;
    transition: all 0.3s ease;
}

/* Random rotation for natural look */
.photo-card:nth-child(1) { transform: rotate(-3deg); }
.photo-card:nth-child(2) { transform: rotate(2deg); }
.photo-card:nth-child(3) { transform: rotate(-2deg); }
.photo-card:nth-child(4) { transform: rotate(3deg); }

.photo-card:hover {
    transform: rotate(0deg) scale(1.1);
    z-index: 10;
}

.photo-frame {
    width: 100%;
    height: 100%;
    background: white;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(138, 43, 226, 0.8);
    color: white;
    padding: 10px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.photo-frame:hover .photo-overlay {
    transform: translateY(0);
}

.photo-title {
    display: block;
    text-align: center;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.1rem;
}

/* Pin effect */
.photo-frame::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #ff5252, #d32f2f);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.gallery-button-container {
    text-align: center;
    margin-top: 20px;
}

.gallery-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.2rem;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(138, 43, 226, 0.3);
}

.gallery-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(138, 43, 226, 0.4);
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .photo-card {
        width: 260px;    /* 平板尺寸 */
        height: 260px;
    }
}

@media (max-width: 576px) {
    .photo-card {
        width: 220px;    /* 手机尺寸 */
        height: 220px;
        margin: 8px;
    }
}

/* Voucher system styles */
.disabled-button {
    position: relative;
    overflow: hidden;
}

.disabled-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    border-radius: 50px;
    pointer-events: none;
}

/* Message animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

#voucher-message {
    animation: fadeIn 0.3s ease-out;
}

/* 验证提示样式 */
.validation-notice {
    display: flex;
    align-items: center;
    background-color: #fff3f8;
    border: 2px dashed #e91e63;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.notice-icon {
    font-size: 24px;
    color: #e91e63;
    margin-right: 10px;
}

.notice-text {
    font-size: 0.9rem;
    font-weight: bold;
    color: #e91e63;
    letter-spacing: 0.5px;
}

/* 更新的按钮样式 */
.get-voucher {
    background: linear-gradient(135deg, #7c3aed, #6a26cd);
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(106, 38, 205, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    margin: 10px auto 20px;
    display: block;
    max-width: 250px;
}

.get-voucher:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(106, 38, 205, 0.4);
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* 修改促销图片区域为链接样式 */
.promo-image {
    position: relative;
    margin: 15px auto;
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.promo-image a {
    display: block;
    position: relative;
}

.promo-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.promo-image:hover img {
    transform: scale(1.02);
}

.promo-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(124, 58, 237, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.promo-image:hover .promo-image-overlay {
    transform: translateY(0);
}

/* 隐藏原有的缩放按钮 */
.zoom-btn {
    display: none;
}