* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bai Jamjuree', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    min-height: 100vh;
}

.header-bar {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-name {
    font-size: 2rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.nav-bar {
    display: flex;
    gap: 2rem;
}

.nav-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-bar a:hover {
    transform: translateY(-3px);
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.home-section {
    padding: 5rem 2rem;
    text-align: center;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.home-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.3);
    animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.home-text {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.home-image {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.3);
}

.home-image img {
    width: 100%;
    display: block;
}

.content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tracks-section, .albums-section {
    padding: 4rem 0;
}

.area-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    position: relative;
}

.area-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
}

.tracks-grid, .albums-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.track-box, .album-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.track-box:hover, .album-box:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.track-box img, .album-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
}

.track-box h3, .album-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.track-box p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.reach-section {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 15px;
    margin: 4rem auto;
    max-width: 1200px;
    border: 1px solid rgba(255,255,255,0.2);
}

.reach-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.reach-section p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.footer-bar {
    background: rgba(0,0,0,0.3);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .bar-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .home-title {
        font-size: 2.5rem;
    }
    
    .nav-bar {
        flex-wrap: wrap;
        justify-content: center;
    }
}
