/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1b3a;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: #ffffff;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #b8bcc8;
    line-height: 1.5;
}

/* Header */
.header {
    background: rgba(26, 27, 58, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(233, 30, 99, 0.2);
}

.header-content {
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-section a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #1a1b3a 0%, #2c2c2c 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 152, 0, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 2.8rem;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.1rem;
    color: #b8bcc8;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cta-button {
    background: linear-gradient(135deg, #e91e63 0%, #ff9800 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

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

.hero-main-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid rgba(233, 30, 99, 0.3);
}

.section-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.hero-image {
    display: flex;
    justify-content: center;
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1b3a 100%);
    border: 2px dashed rgba(233, 30, 99, 0.3);
    border-radius: 12px;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8bcc8;
    font-weight: 500;
}

/* Genre Discovery */
.genre-discovery {
    padding: 80px 0;
    background-color: #2c2c2c;
    text-align: center;
}

.genre-discovery h2 {
    margin-bottom: 3rem;
}

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

.genre-card {
    background: linear-gradient(135deg, #1a1b3a 0%, #2c2c2c 100%);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.genre-card:hover {
    transform: translateY(-4px);
    border-color: rgba(233, 30, 99, 0.5);
}

.genre-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.genre-card h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.genre-card p {
    color: #b8bcc8;
    font-size: 0.9rem;
}

/* Demo Streaming */
.demo-streaming {
    padding: 80px 0;
    background-color: #1a1b3a;
    text-align: center;
}

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

.section-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.section-content.reverse .content-text {
    order: 2;
}

.section-content.reverse .content-image {
    order: 1;
}

.content-text ul {
    list-style: none;
    padding: 0;
}

.content-text li {
    color: #b8bcc8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.content-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
}

/* Rewards Section */
.rewards {
    padding: 80px 0;
    background-color: #2c2c2c;
    text-align: center;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.feature-icon {
    font-size: 1.5rem;
}

/* Studio Portal */
.studio-portal {
    padding: 80px 0;
    background-color: #1a1b3a;
    text-align: center;
}

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

.feature-box {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.feature-box h4 {
    color: #ff9800;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-box p {
    color: #b8bcc8;
    font-size: 0.9rem;
    margin: 0;
}

/* Revenue Sharing */
.revenue-sharing {
    padding: 80px 0;
    background-color: #2c2c2c;
    text-align: center;
}

.revenue-sharing h2 {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #b8bcc8;
    margin-bottom: 3rem;
}

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

.revenue-card {
    background: linear-gradient(135deg, #1a1b3a 0%, rgba(233, 30, 99, 0.1) 100%);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.revenue-card h3 {
    color: #e91e63;
    margin-bottom: 1rem;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #1a1b3a;
    text-align: center;
}

.products h2 {
    margin-bottom: 3rem;
}

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

.product-card {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1b3a 100%);
    border: 1px solid rgba(255, 152, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 152, 0, 0.5);
}

.product-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-card p {
    margin-bottom: 1.5rem;
    color: #b8bcc8;
    flex-grow: 1;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 1rem;
    text-align: center;
}

.product-button {
    background: linear-gradient(135deg, #ff9800 0%, #e91e63 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
    width: 100%;
}

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

/* Contacts */
.contacts {
    padding: 80px 0;
    background-color: #2c2c2c;
}

.contacts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item h3 {
    color: #e91e63;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #ffffff;
    margin: 0;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: #1a1b3a;
    border-top: 1px solid rgba(233, 30, 99, 0.2);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-description {
    color: #b8bcc8;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 1rem;
    margin-bottom: 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

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

.footer-links a {
    color: #b8bcc8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #e91e63;
}

.footer-section p {
    color: #b8bcc8;
    font-size: 0.9rem;
    margin: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1b3a 0%, #2c2c2c 100%);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid rgba(233, 30, 99, 0.3);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #b8bcc8;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover {
    color: #e91e63;
}

.modal h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b8bcc8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.2);
}

.submit-button {
    background: linear-gradient(135deg, #e91e63 0%, #ff9800 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .section-content,
    .section-content.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-content.reverse .content-text,
    .section-content.reverse .content-image {
        order: initial;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-main-image {
        height: 250px;
    }
    
    .section-image {
        height: 200px;
    }
    
    .genre-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .revenue-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .image-placeholder {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}