/* AI Radyo Host - Style Sheet */

/* Global Styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --accent-color: #00c853;
    --text-color: #ffffff;
    -- background-color: #0f1a28;
    --neon-blue: #00ffff;
    --neon-purple: #9333ff;
    --neon-cyan: #00ffff;
    --glass-transition: 0.3s;
    --glass-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

h1, h2, h3 {
    font-weight: 600;
}

.section-title {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #005fb0;
}

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

.btn-secondary:hover {
    background-color: #545b62;
}

.btn-lg {
    padding: 15px 35px;
}

.hero-image {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-image .ai-radio-studio {
    position: absolute;
    height: 100%;
    width: 100%;
    animation: float 10s ease-in-out infinite;
}

.hero-image .mic, .sound-waves, .ai-avatar, .streaming-panel {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.mic {
    top: 20%;
    left: 40%;
}

.sound-waves {
    top: 35%;
    left: 50%;
}

.ai-avatar {
    top: 50%;
    left: 50%;
}

.streaming-panel {
    top: 70%;
    left: 45%;
}

.hero-badges {
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.badge {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-cyan));
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
}

.comparison {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.comparison-item {
    background: linear-gradient(to right, #1a1a2e, #0f1a28);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature-card {
    background: linear-gradient(to right, #1a1a2e, #0f1a28);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-card .feature-icon {
    font-size: 24px;
    color: var(--accent-color);
}

.use-case-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(to right, #1a1a2e, #0f1a28);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.use-case-card .use-case-icon {
    font-size: 24px;
    color: var(--accent-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.pricing-card {
    background: linear-gradient(to right, #1a1a2e, #0f1a28);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.pricing-card.popular {
    grid-column: span 2;
    transform: scale(1.05);
}

.pricing-card-header {
    margin-bottom: 20px;
}

.pricing-card-price {
    font-size: 36px;
    margin-bottom: 10px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.trust-item {
    background: linear-gradient(to right, #1a1a2e, #0f1a28);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.trust-item .trust-icon {
    font-size: 32px;
    color: var(--accent-color);
}

.faq-accordion {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background: linear-gradient(to right, #1a1a2e, #0f1a28);
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(to right, #121223, #0f1a28);
}

.faq-answer {
    margin-top: 10px;
    padding: 15px;
    background: transparent;
}

.final-cta {
    text-align: center;
    margin: 60px 0 20px;
}

.footer {
    background: linear-gradient(to right, #1a1a2e, #0f1a28);
    color: #999;
    padding: 40px 0;
    font-size: 14px;
}

.footer-links-column {
    text-align: center;
}

.copyright {
    margin-top: 20px;
    font-size: 12px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .features-grid, .pricing-grid, .trust-grid {
        grid-template-columns: 1fr;
    }

    .navigation {
        flex-direction: column;
        gap: 15px;
    }

    .social-links a {
        margin: 5px 0;
    }
}