:root {
            --primary-color: #2a5934;
            --secondary-color: #8a9a5b;
            --accent-color: #d4af37;
            --light-bg: #f8f5f0;
            --dark-text: #333333;
            --light-text: #666666;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            background-color: #fff;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background-color: white;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }
        
        .logo-container {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .logo span {
            color: var(--accent-color);
        }
        
        nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        
        nav a {
            color: var(--light-text);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
        }
        
        nav a:hover {
            color: var(--primary-color);
        }
        
        .hero {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M50,5 C70,5 85,20 85,40 C85,60 70,75 50,75 C30,75 15,60 15,40 C15,20 30,5 50,5 Z" fill="none" stroke="%232a5934" stroke-width="0.5" opacity="0.1"/></svg>');
            margin-bottom: 30px;
            border-radius: var(--border-radius);
        }
        
        h1 {
            color: var(--primary-color);
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .subtitle {
            font-size: 1.2rem;
            color: var(--light-text);
            margin-bottom: 25px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .feature {
            background-color: var(--light-bg);
            padding: 15px 25px;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .feature svg {
            color: var(--primary-color);
        }
        
        .player-container {
            background-color: var(--light-bg);
            border-radius: var(--border-radius);
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: var(--shadow);
        }
        
        .player-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .player-header h2 {
            color: var(--primary-color);
        }
        
        .download-all {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
        }
        
        .download-all:hover {
            background-color: #1e4728;
        }
        
        .player {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 20px;
            margin-bottom: 20px;
        }
        
        .now-playing {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .track-info h3 {
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .track-info p {
            color: var(--light-text);
            font-size: 0.9rem;
        }
        
        .controls {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .play-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .play-btn:hover {
            background-color: #1e4728;
        }
        
        .progress-container {
            flex-grow: 1;
            height: 6px;
            background-color: #eee;
            border-radius: 3px;
            cursor: pointer;
            position: relative;
        }
        
        .progress {
            height: 100%;
            background-color: var(--secondary-color);
            border-radius: 3px;
            width: 0%;
        }
        
        .time-display {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: var(--light-text);
            margin-top: 5px;
        }
        
        .volume-control {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .volume-slider {
            width: 100px;
        }
        
        .track-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }
        
        .track-item {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        
        .track-item:hover {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .track-details h4 {
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .track-details p {
            color: var(--light-text);
            font-size: 0.8rem;
        }
        
        .track-actions {
            display: flex;
            gap: 10px;
        }
        
        .track-btn {
            background-color: transparent;
            border: 1px solid var(--secondary-color);
            color: var(--primary-color);
            padding: 8px 15px;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            font-size: 0.9rem;
        }
        
        .track-btn:hover {
            background-color: var(--light-bg);
        }
        
        .content-section {
            margin-bottom: 40px;
        }
        
        .content-section h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-bg);
        }
        
        .content-section p {
            margin-bottom: 15px;
            text-align: justify;
        }
        
        .upgrade-section {
            background-color: var(--light-bg);
            border-radius: var(--border-radius);
            padding: 30px;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .upgrade-section h2 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .upgrade-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.1rem;
            margin-top: 20px;
            text-decoration: none;
            display: inline-block;
        }
        
        .upgrade-btn:hover {
            background-color: #b8941f;
        }
        
        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .testimonial {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: var(--shadow);
        }
        
        .testimonial p {
            font-style: italic;
            margin-bottom: 10px;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .faq-section {
            margin-bottom: 40px;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }
        
        .faq-question {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 5px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            color: var(--light-text);
            display: none;
        }
        
        .faq-answer.active {
            display: block;
        }
        
        .resources {
            background-color: var(--light-bg);
            border-radius: var(--border-radius);
            padding: 30px;
            margin-bottom: 40px;
        }
        
        .resources h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .resource-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .resource-link {
            background-color: white;
            color: var(--primary-color);
            text-decoration: none;
            padding: 10px 20px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            border: 1px solid #ddd;
        }
        
        .resource-link:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        footer {
            text-align: center;
            padding: 30px 0;
            color: var(--light-text);
            border-top: 1px solid #eee;
            font-size: 0.9rem;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .footer-links a {
            color: var(--light-text);
            text-decoration: none;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            
            .features {
                flex-direction: column;
                align-items: center;
            }
            
            .player-container {
                padding: 20px;
            }
            
            .track-list {
                grid-template-columns: 1fr;
            }
            
            .now-playing {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .controls {
                flex-wrap: wrap;
            }
            
            .volume-control {
                width: 100%;
                justify-content: center;
            }
        }