/* ========================================
   U-Pi-P Artist Page Styles
   Color Palette:
   - Base: White (#ffffff)
   - Primary: Brown (#6B4423)
   - Accent: Pink (#E8A0B0)
   - Secondary Pink: (#F5D5DD)
   - Text: Dark Brown (#3D2914)
======================================== */

:root {
    --color-white: #ffffff;
    --color-brown: #6B4423;
    --color-brown-light: #8B6243;
    --color-brown-dark: #4A2F17;
    --color-pink: #E8A0B0;
    --color-pink-light: #F5D5DD;
    --color-pink-pale: #FDF5F7;
    --color-text: #3D2914;
    --color-text-light: #7A6555;
    --color-gray: #F8F6F4;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(107, 68, 35, 0.1);
    --shadow-hover: 0 8px 30px rgba(107, 68, 35, 0.15);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    background-color: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

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

/* ========================================
   Navigation
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(107, 68, 35, 0.08);
}

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

.nav-logo img {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--color-text);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-brown), var(--color-pink));
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-brown);
    transition: var(--transition);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 30px;
}

.lang-btn {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-text-light);
    padding: 5px 10px;
    border-radius: 4px;
    transition: var(--transition);
}

.lang-btn:hover {
    color: var(--color-brown);
}

.lang-btn.active {
    background: var(--color-brown);
    color: var(--color-white);
}

.lang-divider {
    color: var(--color-text-light);
    font-size: 12px;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 20px;
}

/* Two Column Hero Layout */
.hero-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    text-align: left;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 280px;
    max-width: 80vw;
    margin: 0 auto 30px;
    filter: drop-shadow(0 4px 20px rgba(107, 68, 35, 0.2));
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--color-brown);
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.hero-sns {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.hero-sns a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brown);
    font-size: 20px;
    box-shadow: var(--shadow);
}

.hero-sns a:hover {
    background: var(--color-brown);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Latest Release Card */
.latest-release {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-hover);
    max-width: 450px;
    width: 100%;
}

/* Spotify Embed Version */
.latest-release-embed {
    max-width: 400px;
    min-width: 320px;
    width: 100%;
}

.latest-embed {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.latest-embed iframe {
    display: block;
    width: 100%;
    min-height: 352px;
}

.latest-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-pink), var(--color-brown));
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.latest-content {
    display: flex;
    gap: 25px;
}

.latest-artwork {
    position: relative;
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.latest-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brown);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
}

.latest-artwork:hover .latest-play {
    opacity: 1;
}

.latest-play:hover {
    background: var(--color-brown);
    color: var(--color-white);
    transform: translate(-50%, -50%) scale(1.1);
}

.latest-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.latest-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-brown);
    margin-bottom: 5px;
}

.latest-date {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.latest-description {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 15px;
}

.latest-links-bar {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--color-pink-light);
    text-align: center;
}

.links-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.latest-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.latest-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 16px;
    transition: var(--transition);
}

.latest-links a:hover {
    transform: translateY(-3px);
}

.latest-links a[title="Spotify"]:hover {
    background: #1DB954;
    color: white;
}

.latest-links a[title="Apple Music"]:hover {
    background: #FA243C;
    color: white;
}

.latest-links a[title="YouTube Music"]:hover {
    background: #FF0000;
    color: white;
}

.latest-links a[title="Amazon Music"]:hover {
    background: #FF9900;
    color: white;
}

.latest-links a[title="LINE MUSIC"]:hover {
    background: #00B900;
    color: white;
}

/* ========================================
   Section Styles
======================================== */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    color: var(--color-brown);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-pink), var(--color-brown));
    border-radius: 2px;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-brown), var(--color-brown-light));
    color: var(--color-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 68, 35, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-brown);
    border: 2px solid var(--color-brown);
}

.btn-outline:hover {
    background: var(--color-brown);
    color: var(--color-white);
}

.btn-disabled {
    background: var(--color-gray);
    color: var(--color-text-light);
    cursor: not-allowed;
    display: inline-block;
    padding: 14px 35px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 30px;
}

.btn-full {
    width: 100%;
}

/* ========================================
   About Section
======================================== */
.about {
    background: var(--color-pink-pale);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

/* Single Column Layout */
.about-single-column {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-single-column h3 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--color-brown);
    margin-bottom: 20px;
}

.about-single-column p {
    margin-bottom: 20px;
    color: var(--color-text-light);
    line-height: 1.9;
}

.about-single-column .about-stats {
    justify-content: center;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--color-pink);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-brown);
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-light);
    letter-spacing: 1px;
}

/* ========================================
   Music Section
======================================== */
.music {
    background: var(--color-white);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.music-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.music-artwork {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-pink-light), var(--color-gray));
}

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

.music-card:hover .music-artwork img {
    transform: scale(1.05);
}

.music-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brown);
    font-size: 20px;
    opacity: 0;
    transition: var(--transition);
    cursor: pointer;
}

.music-card:hover .music-play {
    opacity: 1;
}

.music-play:hover {
    background: var(--color-brown);
    color: var(--color-white);
}

.music-info {
    padding: 20px;
}

.music-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 5px;
}

.music-date {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.music-links {
    display: flex;
    gap: 12px;
}

.music-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 14px;
}

.music-links a:hover {
    background: var(--color-brown);
    color: var(--color-white);
}

/* Specific streaming service colors on hover */
.music-links a[title="Spotify"]:hover {
    background: #1DB954;
}

.music-links a[title="Apple Music"]:hover {
    background: #FA243C;
}

.music-links a[title="YouTube Music"]:hover {
    background: #FF0000;
}

.music-links a[title="Amazon Music"]:hover {
    background: #FF9900;
}

.music-links a[title="LINE MUSIC"]:hover {
    background: #00B900;
}

/* ========================================
   Live Section
======================================== */
.live {
    background: linear-gradient(180deg, var(--color-gray) 0%, var(--color-white) 100%);
}

.live-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.live-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--color-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.live-date {
    flex-shrink: 0;
    width: 90px;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, var(--color-brown), var(--color-brown-light));
    border-radius: 12px;
    color: var(--color-white);
}

.live-date .day {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
}

.live-date .month {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 5px;
}

.live-date .year {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.live-info {
    flex: 1;
}

.live-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
}

.live-info p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 5px;
}

.live-info i {
    width: 20px;
    color: var(--color-pink);
}

.live-action {
    flex-shrink: 0;
}

/* ========================================
   News Section
======================================== */
.news {
    background: var(--color-white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.news-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-pink-light), var(--color-gray));
}

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

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

.news-content {
    padding: 25px;
}

.news-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-pink-light);
    color: var(--color-brown);
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 10px;
}

.news-date {
    display: block;
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
    line-height: 1.5;
}

.news-content p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   Gallery Section
======================================== */
.gallery {
    background: var(--color-pink-pale);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--color-pink-light), var(--color-gray));
}

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

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

/* ========================================
   Contact Section
======================================== */
.contact {
    background: var(--color-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--color-brown);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-method i {
    width: 40px;
    height: 40px;
    background: var(--color-pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brown);
}

.contact-sns h4 {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 15px;
}

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

.sns-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    font-size: 18px;
}

.sns-links a:hover {
    background: var(--color-brown);
    color: var(--color-white);
}

.contact-form {
    background: var(--color-gray);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-group .required {
    color: var(--color-pink);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 2px solid transparent;
    border-radius: 10px;
    background: var(--color-white);
    color: var(--color-text);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-pink);
}

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

/* Form Messages */
.form-message {
    display: none;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--color-brown-dark);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-sns a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 16px;
}

.footer-sns a:hover {
    background: var(--color-pink);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
    .music-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .hero-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .hero-left {
        order: 1;
    }

    .hero-right {
        order: 2;
    }

    .latest-release {
        max-width: 100%;
    }

    .latest-release-embed {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .lang-switcher {
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .hero {
        min-height: auto;
        height: auto;
        padding: 100px 0 60px;
    }

    .hero-logo {
        width: 200px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .latest-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .latest-artwork {
        width: 200px;
        height: 200px;
    }

    .latest-links {
        justify-content: center;
    }

    .latest-release-embed {
        max-width: 100%;
        min-width: auto;
    }

    .latest-embed iframe {
        min-height: 380px;
    }

    .music-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .live-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .live-info p {
        justify-content: center;
    }

    .about-stats {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }
}
