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

:root {
    --primary-red: #E63946;
    --dark-red: #A4161A;
    --blood-red: #BA181B;
    --light-red: #F1FAEE;
    --black: #1D1D1D;
    --dark-gray: #2D2D2D;
    --light-gray: #F5F5F5;
}

body {
    font-family: 'Arial', sans-serif;
    background: white;
    color: var(--black);
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 2px solid var(--primary-red);
}

.logo-link {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
    letter-spacing: 4px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--black);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 4px;
}

nav a:hover {
    color: var(--primary-red);
    background: rgba(230, 57, 70, 0.1);
}

/* Hero and Music Grid Layout */
.hero-music-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: start;
}

.hero-column {
    position: sticky;
    top: 20px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(230, 57, 70, 0.3);
    border: 1px solid var(--primary-red);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.music-column {
    padding: 40px;
    background: rgba(230, 57, 70, 0.03);
    border-radius: 4px;
    border: 1px solid var(--primary-red);
}

.vinyl-content {
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--primary-red);
    margin-bottom: 40px;
}

.vinyl-content h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.about-content {
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--black);
}

.vinyl-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 15px;
}

.vinyl-details {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.release-date {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-style: italic;
}

.tracks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.track-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(230, 57, 70, 0.05);
    border-radius: 4px;
    border: 1px solid var(--primary-red);
    transition: all 0.3s ease;
    flex-wrap: wrap;
    gap: 15px;
}

.track-item:hover {
    background: rgba(230, 57, 70, 0.15);
    border-color: var(--blood-red);
    transform: translateX(5px);
}

.track-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.track-info h3 {
    color: var(--primary-red);
    font-size: 1.4rem;
}

.track-info p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.play-btn,
.download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-decoration: none;
}

.play-btn:hover,
.download-btn:hover {
    background: var(--blood-red);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

.download-btn {
    background: var(--dark-red);
}

.download-btn:hover {
    background: var(--blood-red);
}

.play-icon,
.download-icon {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Audio Player */
.audio-player {
    background: var(--black);
    border: 2px solid var(--primary-red);
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.2);
}

.player-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.now-playing {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-red);
    font-weight: bold;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.controls button {
    background: var(--primary-red);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.controls button:hover {
    background: var(--blood-red);
    transform: scale(1.1);
}

.control-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--dark-gray);
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    width: 0%;
    height: 100%;
    background: var(--primary-red);
    transition: width 0.1s linear;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.volume-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-red);
}

#volumeSlider {
    width: 150px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--dark-gray);
    border-radius: 4px;
    outline: none;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary-red);
    border-radius: 4px;
    cursor: pointer;
}

#volumeSlider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--primary-red);
    border-radius: 4px;
    cursor: pointer;
    border: none;
}

/* Music Section (Tracks + Player) */
.music-section {
    margin: 60px 0;
    padding: 40px;
    background: rgba(230, 57, 70, 0.03);
    border-radius: 4px;
    border: 1px solid var(--primary-red);
    display: none; /* Hidden for now */
}

.tracks-container {
    max-width: 1000px;
    margin: 0 auto;
}

.preorder-btn {
    display: inline-block;
    background: white;
    color: var(--dark-red);
    border: none;
    padding: 18px 40px;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.preorder-btn:hover {
    background: var(--light-red);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* News Section */
.news-section {
    margin: 60px 0;
    padding: 40px;
    background: rgba(230, 57, 70, 0.03);
    border-radius: 4px;
    border: 1px solid var(--primary-red);
}

.news-section h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 30px;
    text-align: center;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-post {
    background: white;
    border: 2px solid var(--primary-red);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.1);
}

.news-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.2);
}

.news-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
}

.news-content {
    padding: 30px;
}

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

.news-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--black);
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid var(--primary-red);
    border-radius: 4px;
}

.read-more:hover {
    background: var(--primary-red);
    color: white;
    transform: translateX(5px);
}

/* Apps Section */
.apps-section {
    margin: 60px 0;
    padding: 40px;
    background: rgba(230, 57, 70, 0.03);
    border-radius: 4px;
    border: 1px solid var(--primary-red);
}

.apps-section h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 30px;
    text-align: center;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.app-card {
    background: white;
    border: 2px solid var(--primary-red);
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.1);
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.2);
    border-color: var(--blood-red);
}

.app-card.coming-soon {
    border-style: dashed;
    opacity: 0.8;
}

.app-icon {
    margin-bottom: 20px;
}

.app-svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(230, 57, 70, 0.3));
}

.app-placeholder svg {
    width: 80px;
    height: 80px;
}

.app-card h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.app-card p {
    color: var(--dark-gray);
    font-size: 1rem;
}

.app-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 2px solid var(--primary-red);
    border-radius: 4px;
    display: inline-block;
}

.app-link:hover {
    background: var(--primary-red);
    color: white;
    transform: scale(1.05);
}

/* Two Column Sections Container */
.two-column-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

/* Shows Section */
.shows-section {
    margin: 60px 0;
    padding: 40px;
    background: rgba(230, 57, 70, 0.03);
    border-radius: 4px;
    border: 1px solid var(--primary-red);
    text-align: center;
}

.shows-section h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 30px;
}

.shows-content {
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-text {
    font-size: 2rem;
    color: var(--dark-gray);
    font-style: italic;
    opacity: 0.7;
}

/* About Section */
.about-section {
    margin: 60px 0;
    padding: 40px;
    background: rgba(230, 57, 70, 0.03);
    border-radius: 4px;
    border: 1px solid var(--primary-red);
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--black);
}

/* Contact Section */
.contact-section {
    margin: 0;
    padding: 40px;
    background: rgba(230, 57, 70, 0.03);
    border-radius: 4px;
    border: 1px solid var(--primary-red);
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.email-link {
    font-size: 1.3rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid var(--primary-red);
    border-radius: 4px;
}

.email-link:hover {
    background: var(--primary-red);
    color: white;
    transform: scale(1.05);
}

/* Follow Section */
.follow-section {
    margin: 0;
    padding: 40px;
    background: rgba(230, 57, 70, 0.03);
    border-radius: 4px;
    border: 1px solid var(--primary-red);
    text-align: center;
}

.follow-section h2 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 30px;
}

.social-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: white;
    border: 2px solid var(--primary-red);
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.1);
}

.social-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.2);
}

.instagram-box {
    color: #E4405F;
    border-color: #E4405F;
}

.instagram-box:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: transparent;
}

.social-icon {
    width: 32px;
    height: 32px;
}

/* Footer */
footer {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 2px solid var(--primary-red);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--black);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 8px 16px;
    border: 2px solid var(--primary-red);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-red);
    color: white;
}

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

    .hero-column {
        position: relative;
        top: 0;
    }

    .two-column-sections {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }

    nav {
        flex-direction: column;
        gap: 10px;
    }

    header {
        flex-direction: column;
        gap: 20px;
    }

    .track-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .track-actions {
        justify-content: center;
        width: 100%;
    }

    .play-btn,
    .download-btn {
        flex: 1;
        justify-content: center;
        min-width: 120px;
    }

    .vinyl-content h2 {
        font-size: 2rem;
    }

    .music-section {
        padding: 20px;
    }

    .apps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .apps-section {
        padding: 20px;
    }

    footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .music-column, .about-section, .apps-section, .shows-section, .contact-section, .follow-section, .news-section {
        padding: 20px;
    }
    
    .news-image img {
        height: 200px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-content h3 {
        font-size: 1.5rem;
    }
    
    .social-box {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

