/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Roboto:wght@300;400;500&display=swap');

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #9D4EDD;
    --secondary-color: #120a1f;
    --accent-color: #9D4EDD;
    --text-color: #F8F9FA;
    --bg-dark: #050505;
    --bg-darker: #050505;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #050505;
    color: #F8F9FA;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    text-align: center;
    flex: 1;
    text-decoration: none;
    transition: color 0.3s;
}

.logo:hover {
    color: var(--text-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('images/fftglogobigwhite.png') center/contain;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 2rem;
}

.social-links a {
    color: var(--text-color);
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch:hover {
    animation: glitch 0.3s infinite;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* ===== SECTION STYLES ===== */
section {
    padding: 80px 20px;
    min-height: 100vh;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

/* ===== MUSIC SECTION ===== */
.music-section {
    background: var(--bg-darker);
}

.music-player {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 20px;
    background: var(--secondary-color);
}

.track-list {
    max-width: 800px;
    margin: 0 auto;
}

.track-list h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.track-item {
    margin-bottom: 20px;
}

/* ===== SHOP SECTION ===== */
.shop-section {
    background: var(--secondary-color);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.shop-card {
    background: var(--bg-dark);
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s;
}

.shop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 191, 0, 0.3);
    border-color: var(--accent-color);
}

.shop-card-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.shop-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.shop-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.shop-link {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--bg-dark);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 1rem;
}

.shop-link:hover {
    background: var(--text-color);
    transform: scale(1.05);
}

.shop-link i {
    margin-left: 10px;
    font-size: 0.9rem;
}

.shop-note {
    text-align: center;
    padding: 20px;
    background: var(--bg-dark);
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.shop-note p {
    font-size: 1rem;
    opacity: 0.8;
}

.shop-note i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* ===== GAMES SECTION ===== */
.games-section {
    background: var(--bg-darker);
}

.games-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.game-container {
    max-width: 800px;
    margin: 0 auto 40px;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

#game-frame-container {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-placeholder {
    text-align: center;
    padding: 50px;
    color: rgba(255, 255, 255, 0.5);
}

.game-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
    display: block;
}

.game-instructions {
    max-width: 600px;
    margin: 0 auto;
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--accent-color);
}

.game-instructions h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.game-instructions ul {
    list-style: none;
    padding-left: 20px;
}

.game-instructions li {
    margin-bottom: 10px;
    position: relative;
}

.game-instructions li::before {
    content: '▸';
    color: var(--primary-color);
    position: absolute;
    left: -20px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--secondary-color);
}

.contact-content {
    text-align: center;
    font-size: 1.2rem;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--text-color);
    transform: translateY(-2px);
}

.email-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    padding: 15px 30px;
    transition: all 0.3s;
}

.email-link:hover {
    background: var(--primary-color);
    color: var(--text-color);
}

/* ===== ADMIN SECTION ===== */
.admin-trigger {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 999;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    background: var(--secondary-color);
    margin: 15% auto;
    padding: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
}

.close-modal {
    color: var(--text-color);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

#admin-login-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: var(--bg-dark);
    border: 1px solid var(--accent-color);
    color: var(--text-color);
    border-radius: 5px;
}

#admin-login-form button {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: all 0.3s;
}

#admin-login-form button:hover {
    background: var(--accent-color);
}

.admin-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    z-index: 3000;
    overflow-y: auto;
    padding: 20px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 30px;
}

.admin-header h2 {
    color: var(--primary-color);
}

.logout-btn {
    padding: 10px 25px;
    background: var(--accent-color);
    color: var(--text-color);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
}

.admin-content {
    max-width: 1000px;
    margin: 0 auto;
}

.file-upload-section,
.file-list-section {
    background: var(--secondary-color);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    border: 1px solid var(--accent-color);
}

.file-upload-section h3,
.file-list-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

#file-upload {
    margin-right: 15px;
    color: var(--text-color);
}

#upload-btn {
    padding: 10px 30px;
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
}

#file-list {
    display: grid;
    gap: 15px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--bg-dark);
    border-radius: 5px;
    border: 1px solid var(--accent-color);
}

.file-item button {
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--bg-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.cta-btn:hover {
    background: transparent;
    color: var(--primary-color);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
}

.cta-btn.secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 20px;
    background: var(--secondary-color);
}

.about-content-new {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 800px;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-color);
    text-align: justify;
    text-indent: 50px;
}

.about-text p:first-child {
    margin-top: 0;
    text-indent: 0;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* ===== SHOWS SECTION ===== */
.shows-section {
    background: var(--bg-darker);
}

.email-signup-box {
    max-width: 600px;
    margin: 0 auto 60px;
    padding: 40px;
    background: var(--secondary-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    text-align: center;
}

.email-signup-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.email-signup-box p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.email-signup-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.email-signup-form input {
    flex: 1;
    padding: 15px 20px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    color: var(--text-color);
    font-size: 1rem;
}

.email-signup-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.email-signup-form button {
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.email-signup-form button:hover {
    background: var(--text-color);
    transform: scale(1.05);
}

.email-signup-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.signup-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.no-shows-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    opacity: 0.6;
}

.no-shows-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.no-shows-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.show-card {
    background: var(--secondary-color);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.show-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.3);
    border-color: var(--primary-color);
}

.show-card img {
    width: 100%;
    height: auto;
    display: block;
}

.show-info {
    padding: 25px;
}

.show-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.show-date,
.show-venue {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.show-date i,
.show-venue i {
    color: var(--primary-color);
}

.show-description {
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.show-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.ticket-btn,
.rsvp-btn {
    flex: 1;
    min-width: 150px;
    display: inline-block;
    padding: 12px 25px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s;
}

.ticket-btn {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.ticket-btn:hover {
    background: var(--text-color);
    transform: translateY(-2px);
}

.rsvp-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.rsvp-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* ===== DISCOGRAPHY ===== */
.discography {
    margin-top: 80px;
}

.discography h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.album-card {
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.album-card:hover {
    transform: translateY(-10px);
}

.album-cover {
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-darker);
}

.album-cover iframe {
    display: block;
    width: 100%;
}

/* ===== ALBUM CARD TITLES ===== */
.album-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 15px 0 5px 0;
    color: var(--text-color);
    text-align: center;
}

.album-card p {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

/* ===== SOCIAL LINKS LARGE ===== */
.social-links-large {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-links-large a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--secondary-color);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    flex: 0 0 calc(50% - 8px);
    justify-content: center;
}

.social-links-large a:nth-child(6) {
    flex: 0 0 auto;
}

.social-links-large a:hover {
    border-color: var(--primary-color);
    background: var(--bg-darker);
    transform: translateY(-3px);
}

.social-links-large i {
    font-size: 1.5rem;
}

.social-links-large span {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-darker);
    text-align: center;
    padding: 30px 20px;
    border-top: 2px solid var(--primary-color);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), 
                    url('images/fftglogobigwhite.png') center/contain;
        background-repeat: no-repeat;
        background-size: 90%;
        background-position: center 25%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .shop-card {
        padding: 40px 20px;
    }
    
    .shop-card-icon {
        font-size: 4rem;
    }
        /* ===== PERSISTENT SPOTIFY PLAYER ===== */
    .persistent-player {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        border-top: 2px solid var(--primary-color);
        padding: 10px 20px;
        z-index: 9999;
        box-shadow: 0 -5px 30px rgba(255, 0, 0, 0.5);
        transition: all 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .persistent-player.minimized {
        bottom: -200px;
    }
    
    .persistent-player iframe {
        max-width: 500px;
        width: 100%;
    }
    
    .player-toggle {
        position: absolute;
        top: 10px;
        right: 20px;
        background: var(--primary-color);
        border: none;
        color: var(--text-color);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        z-index: 10;
    }
    
    .player-toggle:hover {
        background: var(--accent-color);
        transform: scale(1.1);
    }
    
    /* ===== SHOWS PAGE MOBILE ===== */
    .email-signup-box {
        padding: 30px 20px;
    }
    
    .email-signup-form {
        flex-direction: column;
    }
    
    .email-signup-form button {
        width: 100%;
    }
    
    .shows-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* ===== PAGE SECTIONS ===== */
    .page-section {
        min-height: auto;
        padding: 120px 20px 40px;
    }
    
    /* ===== ABOUT SECTION ===== */
    .about-section {
        padding: 80px 20px;
        background: var(--secondary-color);
    }
    
    .contact-section {
        padding: 120px 20px 40px !important;
    }
    
    .email-link {
        font-size: 1.1rem;
        padding: 12px 20px;
        word-break: break-all;
        max-width: 100%;
    }
    
    .about-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }
    
    .about-content p {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 50px;
    }
    
    .about-content-new {
        display: flex;
        flex-direction: column;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
    }
    
    .about-image {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }
    
    .about-image img {
        width: 100%;
        height: auto;
        max-height: 800px;
        border: 3px solid var(--primary-color);
        border-radius: 10px;
        display: block;
        margin: 0 auto;
        object-fit: contain;
    }
    
    .about-text {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .about-text p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 25px;
        color: var(--text-color);
        text-align: justify;
        text-indent: 0;
    }
    
    .about-text p:first-child {
        margin-top: 0;
    }
    
    .about-text p:last-child {
        margin-bottom: 0;
    }
    
    .stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-item h3 {
        font-family: 'Oswald', sans-serif;
        font-size: 3rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 10px;
    }
    
    .stat-item p {
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.8;
    }
    
    /* ===== LATEST RELEASE / TOP SONGS ===== */
    .latest-release {
        padding: 80px 20px;
        background: var(--bg-darker);
    }
    
    .top-songs-grid {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .song-embed {
        margin-bottom: 30px;
    }
    
    .release-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 50px;
        align-items: center;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .release-artwork img {
        width: 100%;
        border: 3px solid var(--primary-color);
        border-radius: 10px;
    }
    
    .release-artwork iframe {
        border: 3px solid var(--primary-color);
        border-radius: 12px;
    }
    
    .release-info {
        text-align: center;
    }
    
    .release-info h3 {
        font-family: 'Oswald', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--primary-color);
        margin-bottom: 15px;
    }
    
    .release-info p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        opacity: 0.8;
    }
    
    /* ===== DISCOGRAPHY ===== */
    .discography {
        margin-top: 80px;
    }
    
    .discography h3 {
        font-family: 'Oswald', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 40px;
        color: var(--primary-color);
        text-align: center;
    }
    
    .album-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .album-card {
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .album-card:hover {
        transform: translateY(-10px);
    }
    
    .album-card.active-playing {
        transform: translateY(-10px);
        box-shadow: 0 10px 40px rgba(255, 0, 0, 0.4);
    }
    
    .album-card a {
        text-decoration: none;
        color: inherit;
    }
    
    .album-cover {
        border: 2px solid var(--accent-color);
        border-radius: 12px;
        overflow: hidden;
        background: var(--bg-darker);
    }
    
    .album-cover img {
        width: 100%;
        display: block;
    }
    
    .album-cover iframe {
        display: block;
        width: 100%;
    }
    
    .album-card h4 {
        font-family: 'Oswald', sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 5px;
        color: var(--text-color);
    }
    
    .album-card p {
        color: var(--primary-color);
        font-size: 0.9rem;
    }
    
    /* ===== SOCIAL LINKS LARGE ===== */
    .social-links-large {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 40px;
        padding: 0 15px;
    }
    
    .social-links-large a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        background: var(--secondary-color);
        border: 2px solid var(--accent-color);
        border-radius: 8px;
        color: var(--text-color);
        text-decoration: none;
        transition: all 0.3s;
        font-size: 0.95rem;
    }
    
    .social-links-large a:hover {
        border-color: var(--primary-color);
        background: var(--bg-darker);
        transform: translateY(-5px);
    }
    
    .social-links-large i {
        font-size: 1.5rem;
    }
    
    .social-links-large span {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    /* ===== ACTIVE NAV LINK ===== */
    .nav-menu a.active {
        color: var(--primary-color);
        border-bottom: 2px solid var(--primary-color);
    }
    
    /* ===== RESPONSIVE UPDATES ===== */
    @media (max-width: 768px) {
        .persistent-player {
            padding: 10px;
        }
        
        .persistent-player iframe {
            max-width: 100%;
            height: 120px;
        }
        
        .player-toggle {
            top: 5px;
            right: 10px;
            width: 25px;
            height: 25px;
            font-size: 0.8rem;
        }
        
        .cta-buttons {
            flex-direction: column;
            width: 100%;
            max-width: 300px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .stats {
            grid-template-columns: 1fr;
        }
        
        .release-content {
            grid-template-columns: 1fr;
        }
        
        .about-content-new {
            gap: 30px;
        }
        
        .about-image {
            max-width: 100%;
        }
        
        .about-image img {
            max-height: 500px;
        }
        
        .about-text p {
            font-size: 18px;
            line-height: 1.5;
        }
    }
}