/* Main Styles - Based on Live Beats WebRadio Player default theme */
:root {
    --primary-color: #4E5D94;        /* Panel color from theme */
    --secondary-color: #23243F;      /* Button color from theme */
    --background-color: #3B4257;     /* Background color */
    --accent-color: #6A8BFF;         /* Accent color for highlights */
    --text-color: #f0f0f0;           /* Light text color */
    --text-dark: #333333;            /* Dark text for contrast areas */
    --card-bg: #2A3041;              /* Darker background for cards */
    --footer-bg: #1E2130;            /* Very dark background for footer */
    --border-radius: 8px;            /* Matching the app's rounded corners */
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

/* Typography */
h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.3;
}


h1 {
    color: #3b82f6; /* blue-500 */
    font-size: 2.5rem;
    font-weight: bold;
}
h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: #fff;
}

/* Header */
header {
    background-color: var(--primary-color);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo h1 {
    color: #1e90ff;
}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 1rem;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

nav ul li a:hover, nav ul li a.active {
    background-color: var(--secondary-color);
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary {
    background-color: var(--accent-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--secondary-color) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

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

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features-highlight {
    padding: 80px 0;
    background-color: var(--card-bg);
}

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

.feature-card {
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--background-color);
}

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

.testimonial {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.user {
    font-weight: 500;
    color: var(--accent-color);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Latest Posts */
.latest-posts {
    padding: 80px 0;
    background-color: var(--card-bg);
}

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

.post {
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post:hover {
    transform: translateY(-5px);
}

.post h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.date {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    padding: 50px 0 20px;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 60px;
    margin-bottom: 1rem;
}

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

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

.footer-contact p {
    margin-bottom: 0.5rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Features Page Specific */
.features-page .feature {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
    gap: 2rem;
}

.features-page .feature:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-img {
    flex: 1;
}

.feature-img img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Updated Pricing Section Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.pricing-card {
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 1rem 0;
}

.pricing-features {
    margin: 2rem 0;
    list-style: none;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.pricing-card .btn {
    margin-top: auto;
}

.limitations {
    text-align: left;
    margin: 0 0 2rem 0;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
}

.limitations h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.limitations ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.limitations li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.limitations li:before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #ff6b6b;
}

.recommended {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Comparison Table */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.comparison-table th, 
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.1);
}

.comparison-table .check {
    color: #4cd964;
    font-weight: bold;
}

.comparison-table .cross {
    color: #ff3b30;
    font-weight: bold;
}

.comparison-table tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Blog Page Specific */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.blog-meta .date {
    margin-bottom: 0;
    margin-right: 1rem;
}

.tag {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.blog-image {
    width: 100%;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

/* Contact Page Specific */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-family: inherit;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button[type="submit"] {
    width: 100%;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

/* System Requirements */
.system-requirements {
    max-width: 800px;
    margin: 3rem auto;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.system-requirements h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.system-requirements ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.system-requirements li {
    position: relative;
    padding-left: 1.5rem;
}

.system-requirements li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Payment Info */
.payment-info {
    text-align: center;
    padding: 3rem 0;
    background-color: var(--background-color);
}

.payment-methods {
    max-width: 400px;
    margin: 2rem auto;
}

.payment-methods img {
    width: 100%;
    border-radius: var(--border-radius);
}

/* FAQ */
.faq {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.faq-item {
    background-color: var(--primary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    margin-bottom: 0.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3:after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
}

.faq-item h3.active:after {
    content: "-";
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 80px 0;
}

.contact-info {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.contact-method {
    margin-bottom: 1.5rem;
}

.response-time, .contact-support {
    margin-top: 2rem;
}

.contact-support ul {
    list-style: none;
    margin-top: 0.5rem;
}

.contact-support li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.contact-support li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.faq-brief {
    padding: 80px 0;
    background-color: var(--background-color);
}

/* Version Comparison */
.version-comparison {
    padding: 80px 0;
    background-color: var(--background-color);
}

/* Animation classes */
.animate-in {
    animation: fadeIn 0.5s ease-out forwards;
}

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    nav.active {
        max-height: 300px;
    }
    
    nav ul {
        flex-direction: column;
        margin-top: 1rem;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 0.8rem;
        margin: 0.2rem 0;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .features-page .feature {
        flex-direction: column !important;
    }
    
    .feature-text, .feature-img {
        width: 100%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .recommended {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
