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

:root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary: #ffd700;
    --accent: #667eea;
    --accent-dark: #764ba2;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-light: #a0aec0;
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-dark: #1a202c;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    font-weight: 400;
}

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/conback.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

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

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.loading-logo i {
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.loading-progress {
    height: 100%;
    background: var(--secondary);
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-logo i {
    font-size: 1.8rem;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('images/conback.png') center center/cover no-repeat;
    overflow: hidden;
    padding-top: 140px;
}

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

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { top: 40%; right: 20%; animation-delay: 2s; }
.particle:nth-child(4) { bottom: 30%; left: 30%; animation-delay: 3s; }
.particle:nth-child(5) { bottom: 60%; right: 10%; animation-delay: 4s; }
.particle:nth-child(6) { top: 80%; left: 50%; animation-delay: 5s; }
.particle:nth-child(7) { top: 10%; right: 30%; animation-delay: 6s; }
.particle:nth-child(8) { bottom: 20%; right: 40%; animation-delay: 7s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.3; }
    50% { transform: translateY(-20px) translateX(10px); opacity: 0.8; }
}

.construction-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.grid-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
}

.grid-line:nth-child(1) {
    top: 25%;
    left: 0;
    width: 100%;
    height: 1px;
    animation: gridMove 8s linear infinite;
}

.grid-line:nth-child(2) {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    animation: gridMove 8s linear infinite reverse;
}

.grid-line:nth-child(3) {
    top: 75%;
    left: 0;
    width: 100%;
    height: 1px;
    animation: gridMove 8s linear infinite;
}

.grid-line:nth-child(4) {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    animation: gridMove 8s linear infinite reverse;
}

@keyframes gridMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    word-spacing: -0.1em;
}

.title-line {
    display: block;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Player Container */
.player-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.player-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.player-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.player-header i {
    animation: pulse 2s infinite;
}

.iframe-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}



.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 auto 0.5rem;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
}

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

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* CMS Title Logo */
.cms-title-logo {
    margin-bottom: 1.5rem;
}

.cms-title-image {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(34, 197, 94, 0.2));
    transition: all 0.3s ease;
}

.cms-title-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 12px 24px rgba(34, 197, 94, 0.3));
}

/* Music Section */
.music {
    padding: 8rem 0;
    background: var(--bg-secondary);
    padding-top: 140px;
}

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

.feature-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.stat-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid var(--border);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stat-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Sponsor Section */
.sponsor {
    padding: 8rem 0;
    background: var(--bg-primary);
    padding-top: 140px;
}

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

.sponsor-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight {
    text-align: center;
    flex: 1;
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.highlight-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.sponsor-benefits {
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.benefit-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-section {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
}

.cta-section h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-secondary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.sponsor-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.opportunity {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.opportunity i {
    color: var(--primary);
    font-size: 1.25rem;
}

.opportunity span {
    font-weight: 500;
    color: var(--text-primary);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--bg-secondary);
    padding-top: 140px;
}

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

.contact-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.contact-form {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--bg-primary);
    padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    background: var(--gradient-secondary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info p {
    color: #a0aec0;
    margin-bottom: 0.5rem;
}

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

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .sponsor-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sponsor-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .player-container {
        padding: 1.5rem;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
    
    .feature-card,
    .contact-form {
        padding: 1.5rem;
    }
} 

/* Floating Logo */
.floating-logo {
    position: fixed;
    top: 32px;
    left: 32px;
    z-index: 1100;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
}

.floating-logo .logo-image {
    height: 100px;
    width: auto;
    display: block;
}

/* Floating LIVE NOW Badge */
.floating-live {
    position: fixed;
    top: 32px;
    right: 32px;
    z-index: 1100;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    border-radius: 40px;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    min-width: 0;
    width: auto;
    transition: box-shadow 0.3s;
}

.floating-live .player-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.floating-live .player-header i {
    animation: pulse 2s infinite;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    border-radius: 40px;
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    min-width: 0;
    width: auto;
    max-width: 90vw;
    transition: box-shadow 0.3s;
}

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

.floating-nav .nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: background 0.2s, color 0.2s;
}

.floating-nav .nav-link:hover {
    background: var(--primary);
    color: #fff;
}

.floating-nav .nav-toggle {
    display: none;
}

@media (max-width: 900px) {
    .floating-logo {
        top: 16px;
        left: 16px;
        padding: 0;
    }
    .floating-logo .logo-image {
        height: 80px;
    }
    .floating-live {
        top: 16px;
        right: 16px;
        padding: 0.5rem 1rem;
    }
    .floating-nav {
        top: 16px;
        padding: 0.5rem 1rem;
    }
    .floating-nav .nav-menu {
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .floating-logo {
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0;
    }
    .floating-logo .logo-image {
        height: 64px;
    }
    .floating-live {
        top: 8px;
        right: 8px;
        padding: 0.5rem 0.75rem;
    }
    .floating-nav {
        top: 64px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.5rem 0.5rem;
    }
    .floating-nav .nav-menu {
        gap: 0.5rem;
    }
    .floating-nav .nav-link {
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
    }
} 

/* CMS Desk Section */
.cms-desk {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fff4 100%);
    padding-top: 140px;
    position: relative;
}

.cms-desk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    pointer-events: none;
}

.cms-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.cms-hero {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.1);
    position: relative;
    overflow: hidden;
}

.cms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #10b981, #059669);
}

.cms-logo-hero {
    flex-shrink: 0;
    text-align: center;
}

.cms-image-hero {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.cms-image-hero:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
}

.cms-hero-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #22c55e, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cms-hero-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0;
}

.cms-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cms-feature {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
    text-align: center;
}

.cms-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
    background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
}

.cms-feature .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.cms-feature .feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.cms-feature .feature-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.cms-feature:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(34, 197, 94, 0.3);
}

.cms-feature:hover .feature-image {
    transform: scale(1.1);
}

.cms-feature .feature-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.cms-feature .feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.cms-integration {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.integration-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
    background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
}

.integration-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.integration-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.integration-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .cms-title-image {
        max-width: 300px;
    }
    
    .cms-hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .cms-image-hero {
        max-width: 250px;
    }
    
    .cms-hero-text h3 {
        font-size: 2rem;
    }
    
    .cms-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cms-feature {
        padding: 1.5rem;
    }
    
    .cms-feature .feature-content h4 {
        font-size: 1.1rem;
    }
    
    .cms-feature .feature-content p {
        font-size: 0.9rem;
    }
    
    .cms-integration {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .cms-desk {
        padding-top: 90px;
    }
    
    .cms-title-image {
        max-width: 250px;
    }
    
    .cms-hero {
        padding: 1.5rem;
    }
    
    .cms-image-hero {
        max-width: 200px;
    }
    
    .cms-hero-text h3 {
        font-size: 1.75rem;
    }
    
    .cms-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cms-feature {
        padding: 1.25rem;
    }
    
    .cms-feature .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .cms-feature .feature-image {
        width: 32px;
        height: 32px;
    }
    
    .cms-feature .feature-content h4 {
        font-size: 1rem;
    }
    
    .cms-feature .feature-content p {
        font-size: 0.85rem;
    }
    
    .integration-card {
        padding: 1.5rem;
    }
} 

/* Simple Mobile App Layout */
.app-loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/conback.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.app-loading-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

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

.app-loading-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.app-logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.app-logo-loading {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.loading-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 107, 53, 0.6);
    border-radius: 30px;
    animation: pulse 2s infinite;
}

.app-loading-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.app-loading-content p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Main Mobile App Container */
.mobile-app-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/conback.png') center center/cover no-repeat;
    color: white;
    overflow: hidden;
}

.mobile-app-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Mobile Header */
.mobile-header {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.header-text {
    flex: 1;
    color: white;
}

.station-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: #ffffff;
}

.rotating-phrase {
    font-size: 0.8rem;
    color: rgba(255, 107, 53, 1);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    transition: opacity 0.3s ease;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Main Content Center */
.mobile-content-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 40px 20px 20px;
    text-align: center;
}

/* Mobile Album Display */
.mobile-album-display {
    margin-bottom: 30px;
}



/* Album Cover Image */
.album-cover-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: opacity 0.4s ease, transform 0.3s ease;
    background: #333;
    display: block;
}

.album-cover-image.loading {
    transform: scale(0.98);
    opacity: 0.7;
}

/* Ensure album cover container has proper dimensions */
.mobile-album-cover {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* Mobile Progress Section */
.mobile-progress-section {
    width: 100%;
    max-width: 280px;
    margin-bottom: 25px;
}

.progress-bar-container {
    margin-bottom: 8px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 2px;
    width: 0%;
    transition: width 0.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    animation: shimmer 2s infinite;
}

.progress-dot {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 2px solid #ff6b35;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: left 0.5s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.progress-times {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.time-current {
    color: #ff6b35;
    font-weight: 600;
}

.time-total {
    font-style: italic;
}

/* Mobile Track Display */
.mobile-track-display {
    margin-bottom: 20px;
    margin-top: -15px;
    max-width: 320px;
}

.mobile-track-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    transition: opacity 0.4s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.mobile-artist-name {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
    transition: opacity 0.4s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    line-height: 1.3;
}

/* Mobile Player Controls */
.mobile-player-controls {
    margin-bottom: 30px;
    margin-top: -10px;
}

.mobile-control-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 50%, #ff5722 100%);
    border: none;
    color: white;
    font-size: 2.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mobile-control-btn:active {
    transform: scale(0.95);
}

.mobile-control-btn.playing {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.7), 0 0 0 0 rgba(255, 107, 53, 0.7);
    animation: orangePulse 2s infinite;
}

/* Mobile Live Indicator */
.mobile-live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.9);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
}

.mobile-live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.1); 
    }
}

@keyframes orangePulse {
    0% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.7), 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.7), 0 0 0 15px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.7), 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .mobile-album-cover {
        width: 180px;
        height: 180px;
    }
    
    .mobile-track-name {
        font-size: 1.1rem;
    }
    
    .mobile-artist-name {
        font-size: 1rem;
    }
    
    .mobile-control-btn {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .mobile-content-center {
        padding: 100px 15px 15px;
    }
    
    .header-logo-image {
        width: 50px;
        height: 50px;
    }
    
    .station-name {
        font-size: 1rem;
    }
    
    .rotating-phrase {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

@media (max-height: 700px) {
    .mobile-album-cover {
        width: 160px;
        height: 160px;
    }
    
    .mobile-album-display {
        margin-bottom: 20px;
    }
    
    .mobile-track-display {
        margin-bottom: 25px;
    }
    
    .mobile-player-controls {
        margin-bottom: 20px;
    }
    
    .mobile-content-center {
        padding: 90px 20px 10px;
    }
    
    .mobile-progress-section {
        max-width: 250px;
        margin-bottom: 20px;
    }
    
    .progress-times {
        font-size: 0.7rem;
    }
}

/* Hide desktop content when mobile app is active */
.mobile-app-container ~ * {
    display: none !important;
}

/* ================================ */
/*         DESKTOP PLAYER           */
/* ================================ */

.desktop-player-container {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(30, 30, 30, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.desktop-player-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/conback.png') center/cover;
    opacity: 0.15;
    z-index: -1;
}

/* Desktop Live Indicator */
.desktop-live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.desktop-live-dot {
    width: 8px;
    height: 8px;
    background: #ff6b35;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Desktop Album Art */
.desktop-album-display {
    margin-bottom: 20px;
}

.desktop-album-cover {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.desktop-album-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
    background: #333;
}

.desktop-album-cover-image.loading {
    opacity: 0.6;
}

/* Desktop Progress Section */
.desktop-progress-section {
    width: 100%;
    margin-bottom: 20px;
}

.desktop-progress-bar-container {
    margin-bottom: 8px;
}

.desktop-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.desktop-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
    animation: shimmer 2s infinite;
}

.desktop-progress-dot {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 2px solid #ff6b35;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: left 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.desktop-progress-times {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.desktop-time-current {
    color: #ff6b35;
}

.desktop-time-total {
    font-style: italic;
}

/* Desktop Track Display */
.desktop-track-display {
    margin-bottom: 25px;
    max-width: 320px;
    text-align: center;
}

.desktop-track-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    transition: opacity 0.4s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.desktop-artist-name {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    transition: opacity 0.4s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    margin: 0;
}

/* Desktop Player Controls */
.desktop-player-controls {
    margin-bottom: 10px;
}

.desktop-control-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 50%, #ff5722 100%);
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.desktop-control-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.desktop-control-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.desktop-control-btn:hover::before {
    opacity: 1;
}

.desktop-control-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.desktop-control-btn.playing {
    animation: orangePulse 2s infinite;
}

/* Responsive adjustments for desktop player and hero */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 4rem;
        line-height: 1.05;
    }
}

@media (max-width: 1200px) {
    .desktop-player-container {
        max-width: 350px;
        padding: 25px;
    }
    
    .desktop-album-cover {
        width: 180px;
        height: 180px;
    }
    
    .desktop-control-btn {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

/* Privacy Policy Styles */
.privacy-policy {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: var(--bg-secondary);
    position: relative;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.privacy-card {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.privacy-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.privacy-icon i {
    font-size: 2rem;
    color: white;
}

.privacy-text {
    flex: 1;
}

.privacy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.privacy-text p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.privacy-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: var(--text-primary);
}

.privacy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-text a:hover {
    color: var(--primary-dark);
}

.back-to-home {
    text-align: center;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.back-btn i {
    font-size: 1rem;
}

/* Responsive Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 0 60px;
    }
    
    .privacy-header h1 {
        font-size: 2.5rem;
    }
    
    .privacy-intro {
        font-size: 1.1rem;
    }
    
    .privacy-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .privacy-icon {
        margin: 0 auto;
    }
    
    .privacy-text p,
    .privacy-list li {
        font-size: 1rem;
    }
    
    .privacy-list li {
        text-align: left;
    }
    
    .back-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
} 