/* Font Face Declarations */
@font-face {
    font-family: 'The Seasons';
    src: url('fonts/The Seasons Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'The Seasons';
    src: url('fonts/The Seasons Light Italic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'The Seasons';
    src: url('fonts/The Seasons Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'The Seasons';
    src: url('fonts/The Seasons Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'The Seasons';
    src: url('fonts/The Seasons Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'The Seasons';
    src: url('fonts/The Seasons Bold Italic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

:root {
    /* Light theme - assuming hero image has warm, natural tones */
    --nav-bg-rgb: 255, 255, 255;
    --nav-glass-shine: rgba(255, 255, 255, 0.1);
    --bg-color: #faf7f2;
    --text-color: #2c2420;
    --nav-bg: rgba(250, 247, 242, 0.95);
    --section-bg: #ffffff;
    --section-bg-rgb: 255, 255, 255;
    --form-border: #d4cdc5;
    --footer-bg: #2c2420;
    --footer-text: #faf7f2;
    --accent: #DF5D41;
    --accent-hover: #c94b30;
    --section-border: rgba(223, 93, 65, 0.2);
    --card-shadow: rgba(44, 36, 32, 0.1);
    --text-color-muted: #7a746d;

    /* Responsive breakpoints */
    --mobile: 480px;
    --tablet: 768px;
    --laptop: 1024px;
    --desktop: 1200px;

    /* Spacing system */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
}

[data-theme="dark"] {
    /* Dark theme - assuming hero image has deep, rich tones */
    --nav-bg-rgb: 0, 0, 0;
    --nav-glass-shine: rgba(255, 255, 255, 0.05);
    --bg-color: #1a1614;
    --text-color: #f5efe9;
    --nav-bg: rgba(26, 22, 20, 0.95);
    --section-bg: #242020;
    --section-bg-rgb: 26, 26, 26;
    --form-border: #3d3532;
    --footer-bg: #0f0d0c;
    --footer-text: #f5efe9;
    --accent: #1B46BD;
    --accent-hover: #153694;
    --section-border: rgba(27, 70, 189, 0.2);
    --card-shadow: rgba(15, 13, 12, 0.3);
    --text-color-muted: #a7a29f;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'The Seasons', sans-serif;
    line-height: 1.6;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'The Seasons', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.125rem);
    max-width: 70ch;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: linear-gradient(
        145deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.2) 100%
    );
    backdrop-filter: blur(12px) contrast(105%);
    -webkit-backdrop-filter: blur(12px) contrast(105%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: clamp(0.5rem, 2vw, 1rem) 0;
    overflow: visible;
}

@media (min-width: 769px) {
    header {
        width: 150%;
        left: -25%;
    }
}

nav {
    width: 100%;
    max-width: var(--desktop);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    position: relative;
}

@media (min-width: 769px) {
    nav {
        margin-left: 30%;
    }
}

@media (max-width: 768px) {
    nav {
        justify-content: center;
        padding: 0 var(--space-md);
        margin-left: 0;
    }
}

.logo {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.logo-link {
    text-decoration: none;
    color: white;
    background: linear-gradient(45deg, white, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-1px);
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
}

.nav-menu {
    margin-left: auto;
    display: none;
    padding-right: 4rem;
}

@media (min-width: 769px) {
    .nav-menu {
        display: flex;
        gap: clamp(1rem, 3vw, 2.5rem);
        list-style: none;
    }
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

.nav-menu a:hover {
    color: white;
    transform: translateY(-1px);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    nav {
        justify-content: center;
        padding: 0 var(--space-md);
    }
    
    .logo {
        margin-right: 0;
    }
    
    .nav-menu {
        display: none;
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
}

.hero-images {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.light-image {
    opacity: 1;
}

.dark-image {
    opacity: 0;
}

[data-theme="dark"] .light-image {
    opacity: 0;
}

[data-theme="dark"] .dark-image {
    opacity: 1;
}

.hero-content {
    position: absolute;
    bottom: 5vh;
    left: 4vw;
    z-index: 2;
    text-align: left;
    max-width: min(600px, 90vw);
}

.hero-content h1 {
    line-height: 1;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.welcome-text {
    font-size: clamp(4rem, 8vw, 7rem);
    display: block;
    margin: 0;
    padding: 0;
    background: linear-gradient(45deg, white, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    line-height: 0.7;
}

.kaash-text {
    font-size: clamp(4rem, 8vw, 7rem);
    display: block;
    letter-spacing: -0.02em;
    background: linear-gradient(45deg, white, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    text-shadow: none;
    line-height: 0.7;
    margin-top: -0.4em;
    margin-bottom: 0.2em;
}

.hero-content p {
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin: 0.2em 0 0 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
    margin-bottom: 1em;
}

.cta-button {
    display: inline-block;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-top: 3em;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .hero-content {
        bottom: 0.2vh;
        left: 3vw;
    }
    
    .welcome-text {
        font-size: clamp(3rem, 10vw, 5rem);
        line-height: 0.7;
    }
    
    .kaash-text {
        font-size: clamp(3rem, 10vw, 5rem);
        margin-top: -0.5em;
    }
}

@media (max-width: 480px) {
    .hero-content {
        bottom: 2vh;
        left: 2vw;
        max-width: 95vw;
    }
}

/* Portrait orientation adjustments */
@media (orientation: portrait) and (max-width: 768px) {
    .hero-content {
        bottom: 2vh;
    }
    
    .welcome-text {
        font-size: clamp(3rem, 10vw, 5rem);
        line-height: 0.7;
    }
    
    .kaash-text {
        font-size: clamp(3rem, 10vw, 5rem);
        margin-top: -0.5em;
    }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
    .hero-content {
        bottom: max(2vh, 1rem);
    }
    
    .welcome-text {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin-bottom: 0.3em;
    }
    
    .kaash-text {
        font-size: clamp(2.5rem, 6vw, 4rem);
        margin-top: -0.4em;
        margin-bottom: 0.2em;
    }
    
    .hero-content p {
        font-size: clamp(1rem, 2vw, 1.5rem);
        margin: 0.5em 0 1em;
    }
}

/* About Section */
.about {
    padding: var(--space-xl) var(--space-md);
    text-align: center;
    overflow-x: hidden;
    margin-top: -4rem;
    background-color: #f6f6f6;
}

@media (max-width: 768px) {
    .about {
        margin-top: 2rem;
        padding-top: var(--space-lg);
    }
}

@media (min-width: 769px) {
    .about {
        padding: var(--space-xxl) var(--space-xl);
        margin-top: 2rem;
        position: relative;
        z-index: 1;
    }

    .about h2 {
        font-size: clamp(2.5rem, 8vw, 7rem);
        margin-bottom: 5rem;
    }

    .about-text p {
        font-size: clamp(1rem, 1.8vw, 1.8rem);
    }

    .artist-stats {
        gap: clamp(4rem, 15vw, 18rem);
        margin-top: 6rem;
    }

    .stat h3 {
        font-size: clamp(2rem, 7vw, 5.5rem);
    }

    .stat p {
        font-size: clamp(1rem, 1.8vw, 1.8rem);
    }
}

.about h2 {
    font-size: clamp(2.5rem, 8vw, 7rem);
    font-weight: 800;
    margin-bottom: 5rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.about-content {
    max-width: min(var(--desktop), 98vw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xxl);
}

.about-text {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: clamp(1rem, 1.8vw, 1.8rem);
}

.artist-stats {
    display: flex;
    justify-content: space-evenly;
    gap: clamp(4rem, 15vw, 18rem);
    flex-wrap: wrap;
    margin-top: 6rem;
    padding: 0 var(--space-xxl);
}

.stat {
    text-align: center;
    min-width: 250px;
    flex: 0 1 auto;
    opacity: 0;
}

.stat.animate {
    animation: fadeUp 0.8s ease forwards;
}

.stat:nth-child(2).animate {
    animation-delay: 0.2s;
}

.stat:nth-child(3).animate {
    animation-delay: 0.4s;
}

.stat-number {
    font-size: clamp(2rem, 7vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

.stat p {
    font-size: clamp(1rem, 1.8vw, 1.8rem);
    color: var(--text-color-muted);
}

@media (max-width: 768px) {
    .about h2 {
        font-size: clamp(2.5rem, 6vw, 4rem);
        margin-bottom: 3rem;
    }

    .about-text p {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 1.5rem;
    }

    .artist-stats {
        gap: clamp(2rem, 6vw, 4rem);
        padding: 0 var(--space-md);
        margin-top: 3rem;
    }
    
    .stat {
        min-width: 150px;
    }

    .stat-number {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 0.5rem;
    }

    .stat p {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
}

/* Milestones Section */
.milestones {
    padding: var(--space-xxl) var(--space-xl);
    text-align: center;
    background-color: #ffffff;
}

.milestones h2 {
    font-size: clamp(2.5rem, 8vw, 7rem);
    font-weight: 800;
    margin-bottom: 5rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.milestone-grid {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    gap: 8rem;
    justify-content: center;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 var(--space-xxl);
}

@media (max-width: 1400px) {
    .milestone-grid {
        gap: 6rem;
        max-width: 1600px;
    }
}

@media (max-width: 1024px) {
    .milestone-grid {
        grid-template-columns: repeat(2, 300px);
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .milestone-grid {
        grid-template-columns: 300px;
        gap: 3rem;
        padding: 0 var(--space-md);
    }
}

.milestone-card {
    position: relative;
    width: 300px;
    aspect-ratio: 2/3;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
    background: var(--bg-color);
}

.milestone-image {
    width: 100%;
    height: 100%;
}

.milestone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.milestone-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.milestone-card:hover .milestone-content {
    transform: translateY(0);
}

.milestone-content h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.milestone-content p {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .milestone-grid {
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .milestones {
        padding: var(--space-xl) var(--space-md);
    }

    .milestones h2 {
        font-size: clamp(2rem, 6vw, 4rem);
        margin-bottom: 3rem;
    }

    .milestone-grid {
        gap: 3rem;
        padding: 0 var(--space-md);
    }
}

/* Contact Section */
.contact {
    padding: var(--space-xxl) var(--space-md);
    background-color: #f6f6f6;
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.contact h2 {
    font-size: clamp(2.5rem, 8vw, 7rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--accent), var(--accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-text {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-color-muted);
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(var(--nav-bg-rgb), 0.5);
    border: 1px solid rgba(var(--nav-bg-rgb), 0.1);
    border-radius: 100px;
    font-size: 1rem;
    color: var(--text-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group textarea {
    min-height: 150px;
    border-radius: 20px;
    resize: vertical;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(var(--nav-bg-rgb), 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-color-muted);
}

.submit-btn {
    background: linear-gradient(45deg, var(--accent), var(--accent-hover));
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 100px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(var(--nav-bg-rgb), 0.2);
}

[data-theme="dark"] .contact {
    background-color: #1e1e1e;
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.social-icon {
    color: var(--text-color);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    transform: translateY(-2px);
}

footer p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

footer a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-hover);
}

[data-theme="dark"] footer {
    background: rgba(0, 0, 0, 0.9);
    border-top-color: rgba(255, 255, 255, 0.05);
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: var(--desktop);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.theme-toggle:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255, 255, 255, 0.9);
    fill: none;
    transition: transform 0.3s ease;
}

.theme-toggle:hover svg {
    transform: rotate(45deg);
    stroke: white;
}

.sun-icon {
    display: none;
}

[data-theme="dark"] .sun-icon {
    display: block;
}

[data-theme="dark"] .moon-icon {
    display: none;
}

@media (max-width: 480px) {
    .theme-toggle {
        bottom: 2.5rem;
        right: var(--space-lg);
        width: 40px;
        height: 40px;
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    :root {
        --space-xxl: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: var(--space-lg);
    }
    
    .milestone-grid {
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    :root {
        --space-xl: 1rem;
        --space-lg: 0.75rem;
    }
    
    .hero-content {
        padding: var(--space-md);
    }
    
    .contact-form {
        gap: var(--space-sm);
    }
}

/* Common section styles */
section {
    min-height: 100vh;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 1px solid var(--section-border);
}

/* Gallery Section */
.gallery {
    padding: 80px 50px;
    background-color: var(--section-bg);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: 700;
}

.gallery-grid {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 var(--space-xxl);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
}

.gallery-item:hover .overlay {
    height: 100%;
}

.overlay h3 {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Latest Release Page Styles */
.latest-release {
    padding: 6rem 2rem;
    min-height: calc(100vh - 200px);
}

.release-content {
    max-width: 1200px;
    margin: 0 auto;
}

.release-content h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.release-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.release-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.release-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.release-description {
    line-height: 1.8;
    margin-bottom: 3rem;
}

.release-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.feature p {
    font-size: 1.2rem;
}

.purchase-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.purchase-button:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .release-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .release-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .latest-release {
        padding: 4rem 1rem;
    }

    .release-content h1 {
        font-size: 2.5rem;
    }

    .release-info h2 {
        font-size: 2rem;
    }
}

/* Fanlink Style Release Page */
.release-page {
    background: #0a0a0a;
    color: #fff;
    min-height: 100vh;
}

.fanlink-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.fanlink-header {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.artwork-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px);
    transform: scale(1.1);
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,1) 100%);
}

.header-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    padding: 0 30px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.artwork-thumb {
    width: 180px;
    height: 180px;
    border-radius: 4px;
    box-shadow: 0 4px 60px rgba(0,0,0,0.5);
}

.release-info {
    flex: 1;
}

.release-info h1 {
    font-size: 2.5rem;
    margin: 0 0 8px 0;
    color: #fff;
}

.artist-name {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.platform-links {
    padding: 40px 30px;
}

.platform-links h2 {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    margin: 0 0 20px 0;
    text-align: center;
}

.links-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.platform-link:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.15);
}

.platform-link img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* Makes the SVG white */
}

.platform-link span {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
}

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

.back-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: inline-block;
}

.copyright {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    margin: 0;
}

@media (max-width: 600px) {
    .fanlink-header {
        height: 340px;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        bottom: 30px;
    }

    .artwork-thumb {
        width: 150px;
        height: 150px;
    }

    .release-info h1 {
        font-size: 2rem;
    }

    .platform-links {
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

[data-theme="dark"] .about {
    background-color: #1e1e1e;
}

[data-theme="dark"] .milestones {
    background-color: #161616;
}

[data-theme="dark"] .contact {
    background-color: #1e1e1e;
}
