/* Self-hosted Inter font setup */
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/inter/Inter_18pt-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/inter/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/inter/Inter_18pt-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/inter/Inter_18pt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #34495e;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #5a6c7d;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: white;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 0;
    display: inline-block;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-logo h2 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #5a6c7d;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3498db;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.hero-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.hero-text h1 {
    margin: 0;
    font-size: 3.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.5rem;
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
}

.hero-content h1 {
    color: white;
    font-size: 3.5rem;
    line-height: 1.2;
}

.hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-album-art {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.hero-album-art:hover {
    transform: scale(1.05);
}

.hero-placeholder {
    width: 300px;
    height: 300px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255,255,255,0.3);
    font-size: 1.2rem;
}

/* Hero Impact Statistics */
.hero-impact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.impact-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    line-height: 1;
}

.impact-stat:last-child .impact-number {
    color: #27ae60;
}

.impact-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.impact-vs {
    font-size: 1.2rem;
    font-weight: 600;
    color: #34495e;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Support Info in Album Cards */
.support-info {
    margin: 1rem 0;
}

.support-comparison {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    text-align: center;
}

.platform-earnings {
    color: #e74c3c;
    font-weight: 500;
}

.vs-text {
    color: #7f8c8d;
    font-weight: 600;
}

.direct-earnings {
    color: #27ae60;
    font-weight: 600;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #7f8c8d;
}

/* Music Section */
.music-section {
    background-color: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.music-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #00ffff;
}

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

.album-card {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.album-cover {
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.album-art {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-art:hover {
    transform: scale(1.05);
}

.album-placeholder {
    width: 100%;
    height: 250px;
    background-color: #e9ecef;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ced4da;
    color: #6c757d;
    font-weight: 500;
}

.album-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    color: #00ffff;
}

.album-info p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.album-price {
    font-weight: 600;
    font-size: 1.2rem;
    color: #27ae60 !important;
    margin-bottom: 1rem !important;
}

.album-actions {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

/* PayPal Button Styling */
.paypal-button-container {
    min-width: 140px;
    max-width: 200px;
}

.paypal-button-container .paypal-buttons {
    border-radius: 6px;
}

/* Override PayPal button styles to match site theme */
.paypal-button-container iframe {
    border-radius: 6px !important;
}

/* Streaming Section */
.streaming-section {
    text-align: center;
    padding: 2rem 0;
    background: rgba(52, 73, 94, 0.05);
    border-radius: 12px;
    margin-top: 2rem;
}

.streaming-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.streaming-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #34495e;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    min-width: 120px;
}

.streaming-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.platform-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.platform-note {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-style: italic;
}

.streaming-note {
    max-width: 600px;
    margin: 2rem auto 0;
    font-size: 1rem;
    color: #5a6c7d;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.streaming-note strong {
    color: #27ae60;
}

/* Email Signup Section */
.email-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.email-signup-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.email-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.email-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.email-form {
    margin-bottom: 3rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.form-group input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.privacy-note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
}

.exclusive-benefits {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.exclusive-benefits ul {
    list-style: none;
    margin-top: 1rem;
}

.exclusive-benefits li {
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    background-color: white;
}

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

.about-text p {
    margin-bottom: 1.5rem;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.stat h3 {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #7f8c8d;
    font-weight: 600;
    margin: 0;
}

.about-placeholder {
    width: 100%;
    height: 400px;
    background-color: #f8f9fa;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ced4da;
    color: #6c757d;
}

.label-description {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 2rem;
}

.artist-brands {
    margin: 2rem 0;
}

.brand-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.brand-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.brand-section h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
}

.brand-section p {
    margin: 0;
    opacity: 0.9;
}

.about-artwork {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-section > .container > p {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.contact-info h3:first-child {
    margin-top: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    padding: 8px 16px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #2980b9;
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #3498db;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

/* Tip and Patron Options */
.tip-option, .patron-option {
    text-align: center;
    padding: 0.5rem;
    border-radius: 6px;
    margin: 0.5rem 0;
}

.tip-option {
    background: rgba(246, 196, 79, 0.1);
    border: 1px solid #f6c44f;
}

.patron-option {
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid #9b59b6;
}

.tip-label, .patron-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f39c12;
}

.patron-label {
    color: #9b59b6;
}

.patron-benefits {
    display: block;
    font-size: 0.75rem;
    color: #7f8c8d;
    margin-top: 0.2rem;
}

/* Impact Statement Section */
.impact-statement {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    margin: 4rem 0;
    border-radius: 16px;
}

.impact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.impact-content h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impact-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.impact-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.impact-item h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.impact-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* The Chaos Button - Maximum Mystery */
.chaos-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
}

.chaos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.chaos-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.chaos-button {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 
        0 8px 25px rgba(231, 76, 60, 0.3),
        0 0 0 3px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-transform: lowercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.chaos-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.chaos-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(231, 76, 60, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #e74c3c, #e67e22);
}

.chaos-button:hover::before {
    left: 100%;
}

.chaos-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Add some mystery particles */
.chaos-button::after {
    content: '?';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #e74c3c;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chaos-button:hover::after {
    opacity: 1;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Preview Modal Styles */
.preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.modal-header h3 {
    margin: 0;
    color: white;
    font-size: 1.4rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.close-modal:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 1.5rem;
}

.modal-body iframe {
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-actions .btn {
    flex: 1;
    min-width: 150px;
    text-align: center;
    text-decoration: none;
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        flex: none;
        width: 100%;
    }
    
    .modal-body iframe {
        height: 250px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .streaming-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading and Animation States */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Download Page Styles */
.download-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.download-content {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.album-info-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.download-album-art {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.download-details h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.album-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.thank-you {
    font-size: 1.4rem;
    color: #27ae60;
    font-weight: 600;
}

.download-form-container {
    max-width: 400px;
    margin: 0 auto;
}

.download-form-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.download-form-container p {
    margin-bottom: 30px;
    color: #5a6c7d;
}

.download-form .form-group {
    margin-bottom: 25px;
    text-align: left;
}

.download-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.download-form input[type="email"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.download-form input[type="email"]:focus {
    outline: none;
    border-color: #3498db;
}

.btn-download {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.download-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

/* Thank You Page Styles */
.download-links {
    text-align: center;
    margin: 2rem 0;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 0;
    display: inline-block;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.download-info {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.download-info h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.download-info ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.download-info ul li {
    padding: 0.5rem 0;
    color: #e0e0e0;
}

.download-info ol {
    color: #e0e0e0;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.download-info ol li {
    padding: 0.3rem 0;
}

.support-note {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 2rem;
    text-align: center;
    color: #f0f0f0;
}

/* Loading state for forms */
.btn-download.loading {
    background: #555;
    cursor: not-allowed;
}

.btn-download.loading:after {
    content: " ⏳";
}

/* Portal Gateway Section - Minimal, Dominant, Mysterious */
.portal-gateway {
    padding: 0;
    margin: 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portal-gateway::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: portalPulse 8s ease-in-out infinite;
}

.portal-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.portal-frame {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 3rem;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    box-shadow: 
        0 0 50px rgba(0, 255, 255, 0.3),
        inset 0 0 50px rgba(0, 255, 255, 0.1);
    animation: portalPulse 4s ease-in-out infinite alternate;
}

.portal-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.1) 0%, transparent 100%);
    border: 2px solid rgba(0, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portal-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 255, 0.3);
    animation: portalRotate 10s linear infinite;
}

.ring-1 {
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    animation-duration: 8s;
}

.ring-2 {
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    animation-duration: 12s;
    animation-direction: reverse;
}

.ring-3 {
    top: 30%;
    left: 30%;
    width: 40%;
    height: 40%;
    animation-duration: 15s;
}

.portal-center {
    position: relative;
    z-index: 3;
}

.portal-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    letter-spacing: 4px;
}

.portal-text p {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0.5rem 0 0;
    letter-spacing: 2px;
    opacity: 0.9;
}

.portal-invitation {
    margin-top: 2rem;
}

.portal-invitation p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.8;
}

.portal-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 255, 255, 0.2) 100%);
    border: 2px solid #00ffff;
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.portal-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.portal-button:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(0, 255, 255, 0.3) 100%);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

.portal-button:hover::before {
    left: 100%;
}

@keyframes portalPulse {
    0% { 
        box-shadow: 
            0 0 50px rgba(0, 255, 255, 0.3),
            inset 0 0 50px rgba(0, 255, 255, 0.1);
    }
    100% { 
        box-shadow: 
            0 0 80px rgba(0, 255, 255, 0.5),
            inset 0 0 80px rgba(0, 255, 255, 0.2);
    }
}

@keyframes portalRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design for Portal */
@media (max-width: 768px) {
    .portal-frame {
        width: 250px;
        height: 250px;
    }
    
    .portal-core {
        width: 200px;
        height: 200px;
    }
    
    .portal-text h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .portal-text p {
        font-size: 1rem;
    }
    
    .portal-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .portal-frame {
        width: 200px;
        height: 200px;
    }
    
    .portal-core {
        width: 160px;
        height: 160px;
    }
    
    .portal-text h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .portal-container {
        padding: 1rem;
    }
}

/* Email Signup Section */
