/* ===================================
   PUPPY DOG - EDM PRODUCER WEBSITE
   Modern Dark Theme with Neon Accents
   =================================== */

/* === ROOT VARIABLES === */
:root {
    /* Colors */
    --color-primary: #ff006e;
    --color-secondary: #00f5ff;
    --color-accent: #b900ff;
    --color-bg-dark: #0a0a0a;
    --color-bg-darker: #050505;
    --color-bg-light: #1a1a1a;
    --color-text: #ffffff;
    --color-text-muted: #999999;
    --color-border: #333333;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff006e 0%, #b900ff 100%);
    --gradient-secondary: linear-gradient(135deg, #00f5ff 0%, #ff006e 100%);
    --gradient-neon: linear-gradient(135deg, #ff006e, #b900ff, #00f5ff);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Orbitron', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* === LOADING SCREEN === */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-darker);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid transparent;
    border-top-color: var(--color-primary);
    border-right-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

.loading-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    transition: var(--transition-medium);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 30px rgba(255, 0, 110, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-primary);
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-text);
    transition: var(--transition-fast);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--spacing-md);
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(185, 0, 255, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text {
    animation: fadeInUp 1s ease;
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-dark);
    -webkit-background-clip: text;
    background-clip: text;
}

.glitch::before {
    animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    color: var(--color-primary);
    z-index: -1;
}

.glitch::after {
    animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
    color: var(--color-secondary);
    z-index: -2;
}

@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); }
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translate(-50%, 0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-text);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-text);
}

.btn-secondary:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* === CONTAINER === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

/* === SECTION TITLE === */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.title-icon {
    color: var(--color-primary);
}

/* === MUSIC SECTION === */
.music-section {
    background: var(--color-bg-darker);
    position: relative;
}

.latest-release {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--color-bg-light);
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.release-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.release-image img {
    width: 100%;
    transition: var(--transition-slow);
}

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

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 110, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition-medium);
}

.release-image:hover .play-overlay {
    opacity: 1;
}

.release-info {
    padding: var(--spacing-md);
}

.release-title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.release-name {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.release-date {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.streaming-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.streaming-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.streaming-btn.spotify {
    background: #1DB954;
    color: white;
}

.streaming-btn.apple {
    background: #FA2C55;
    color: white;
}

.streaming-btn.soundcloud {
    background: #FF5500;
    color: white;
}

.streaming-btn.pandora {
    background: #3668FF;
    color: white;
}

.streaming-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.music-player {
    background: var(--color-bg-light);
    padding: var(--spacing-md);
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.player-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

/* === TOUR SECTION === */
.tour-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

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

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(0, 245, 255, 0.2) 100%);
}

.tour-section .container {
    position: relative;
    z-index: 1;
}

.tour-announcement {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    padding: var(--spacing-lg);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.announcement-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.announcement-content h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.announcement-text {
    max-width: 600px;
    margin: 1rem auto 2rem;
    color: var(--color-text-muted);
}

.tour-signup {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--color-bg-light);
    border: 2px solid var(--color-border);
    border-radius: 50px;
    color: var(--color-text);
    font-family: inherit;
    transition: var(--transition-fast);
}

.email-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
}

.tour-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tour-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--color-border);
    transition: var(--transition-medium);
}

.tour-item:hover {
    border-color: var(--color-primary);
    transform: translateX(10px);
}

.tour-date {
    text-align: center;
    min-width: 80px;
}

.tour-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-date .day {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-display);
}

.tour-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.tour-details p {
    color: var(--color-text-muted);
}

/* === VIDEOS SECTION === */
.videos-section {
    background: var(--color-bg-dark);
}

/* Featured Video Notice */
.featured-video-notice {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(0, 245, 255, 0.1) 100%);
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.notice-content {
    max-width: 800px;
    margin: 0 auto;
}

.notice-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.featured-video-notice h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-video-notice p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.notice-small {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--color-bg-light);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition-medium);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(255, 0, 110, 0.3);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 110, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-medium);
}

.video-card:hover .video-play {
    background: var(--color-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-duration {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 0, 110, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.video-card.featured {
    border: 2px solid var(--color-primary);
}

.video-card.featured .video-thumbnail {
    height: 300px;
}

.video-card.featured .video-thumbnail img {
    height: 300px;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card.featured .video-embed {
    padding-bottom: 56.25%; /* Maintain 16:9 ratio */
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* === ABOUT SECTION === */
.about-section {
    background: var(--color-bg-darker);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.3);
}

.image-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border: 3px solid var(--color-secondary);
    border-radius: 20px;
    z-index: -1;
}

.about-text {
    padding: var(--spacing-md) 0;
}

.about-subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.about-text strong {
    color: var(--color-text);
    font-weight: 700;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--color-bg-light);
    border-radius: 15px;
    border: 1px solid var(--color-border);
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.about-quote {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--color-primary);
    margin-top: 2rem;
}

.about-quote i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.about-quote p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.about-quote span {
    color: var(--color-secondary);
    font-weight: 600;
}

/* === MERCH SECTION === */
.merch-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

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

.merch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(185, 0, 255, 0.4) 100%);
}

.merch-section .container {
    position: relative;
    z-index: 1;
}

.merch-coming-soon {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    padding: var(--spacing-xl);
    border-radius: 20px;
    border: 2px solid var(--color-accent);
}

.merch-icon {
    font-size: 4rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.merch-coming-soon h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.merch-subtext {
    font-size: 1.1rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.merch-signup {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
}

/* === CONTACT SECTION === */
.contact-section {
    background: var(--color-bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: var(--spacing-lg);
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--color-bg-light);
    border-radius: 15px;
    border: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

.contact-method:hover {
    border-color: var(--color-primary);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 0.2rem;
}

.contact-method h4 {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.contact-method p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.contact-form-container {
    background: var(--color-bg-light);
    padding: var(--spacing-md);
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--color-bg-dark);
    border: 2px solid var(--color-border);
    border-radius: 10px;
    color: var(--color-text);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.2);
}

.form-group textarea {
    resize: vertical;
}

/* === SOCIAL LINKS === */
.social-links {
    text-align: center;
    padding: var(--spacing-lg) 0;
}

.social-links h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: var(--transition-medium);
}

.social-icon:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    background: var(--gradient-primary);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
}

/* === FOOTER === */
.footer {
    background: var(--color-bg-darker);
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
}

.footer-logo h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-text-muted);
    font-weight: 500;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
}

.footer-legal a {
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-primary);
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-text);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.5);
}

/* === ANIMATIONS === */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .latest-release,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: var(--transition-medium);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .tour-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .streaming-links {
        grid-template-columns: 1fr;
    }
    
    .tour-signup,
    .merch-signup {
        flex-direction: column;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content,
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}