/* CTN SEO Bot Panel Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ctn-seo-bot-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
    color: #ffffff;
}

/* Header Styles */
.ctn-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.ctn-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.ctn-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ctn-logo img {
    width: 32px;
    height: 32px;
}

.ctn-brand {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffb400;
}

.ctn-nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ctn-user {
    color: #ffffff;
    font-size: 0.9rem;
}

.ctn-night-mode {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.ctn-night-mode:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.ctn-contact {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.ctn-contact:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.ctn-login {
    background: #4f6ef7;
    border: none;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.ctn-login:hover {
    background: #3b5bf5;
}

/* Hero Section */
.ctn-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ctn-main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ctn-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.ctn-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ctn-btn-primary {
    background: #4f6ef7;
    border: none;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(79, 110, 247, 0.3);
}

.ctn-btn-primary:hover {
    background: #3b5bf5;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(79, 110, 247, 0.4);
}

.ctn-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.ctn-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Features Section */
.ctn-features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ctn-features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ctn-features-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ctn-features-header p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.ctn-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.ctn-feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.ctn-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(79, 110, 247, 0.3);
}

.ctn-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ctn-feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.ctn-feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* FAQ Section */
.ctn-faq {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.ctn-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ctn-faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ctn-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ctn-faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.ctn-faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    padding: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.ctn-faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.ctn-faq-toggle {
    transition: transform 0.3s;
}

.ctn-faq-item.active .ctn-faq-toggle {
    transform: rotate(180deg);
}

.ctn-faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    display: none;
}

.ctn-faq-item.active .ctn-faq-answer {
    display: block;
}

/* Contact Section */
.ctn-contact {
    padding: 4rem 2rem;
    text-align: center;
}

.ctn-contact-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
}

.ctn-contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ctn-contact-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ctn-contact-box p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.ctn-contact-btn {
    background: #4f6ef7;
    border: none;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.ctn-contact-btn:hover {
    background: #3b5bf5;
    transform: translateY(-2px);
}

/* CTA Section */
.ctn-cta {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #4f6ef7 0%, #8b5cf6 100%);
    margin: 4rem 2rem;
    border-radius: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ctn-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ctn-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.ctn-cta-btn {
    background: #ffffff;
    border: none;
    color: #4f6ef7;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.ctn-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

/* Footer */
.ctn-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ctn-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ctn-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ctn-footer-logo img {
    width: 24px;
    height: 24px;
}

.ctn-footer-links span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ctn-nav {
        padding: 0 1rem;
    }
    
    .ctn-nav-right {
        gap: 0.5rem;
    }
    
    .ctn-hero {
        padding: 6rem 1rem 3rem;
    }
    
    .ctn-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ctn-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ctn-btn-primary,
    .ctn-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .ctn-footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ctn-features-grid {
        grid-template-columns: 1fr;
    }
    
    .ctn-feature-card {
        padding: 1.5rem;
    }
    
    .ctn-contact-box {
        padding: 2rem 1.5rem;
    }
    
    .ctn-cta {
        margin: 2rem 1rem;
        padding: 3rem 1.5rem;
    }
}
