/* ========================================
   Sora 2 Guide - Modern CSS Stylesheet
   ======================================== */

/* CSS Variables for Dark Theme */
:root {
    --primary-color: #818cf8;
    --primary-dark: #6366f1;
    --secondary-color: #f472b6;
    --success-color: #34d399;
    --warning-color: #fbbf24;
    --danger-color: #f87171;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --card-bg-hover: #242424;
    --light-bg: #121212;
    --text-dark: #e5e5e5;
    --text-light: #a3a3a3;
    --white: #ffffff;
    --border-color: #2a2a2a;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    min-height: 100vh;
}

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

/* Header & Navigation */
header {
    background: var(--card-bg);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

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

/* Main Content Layout */
main.container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

/* Article Content */
.article-content {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
}

.intro-section {
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Content Boxes */
.content-box {
    background: linear-gradient(135deg, #1e1b2e 0%, #1a1a2e 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
}

.content-box h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Methods Section */
.methods-section {
    margin: 3rem 0;
}

.methods-section > h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

/* Method Cards */
.method-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.method-card:hover {
    background: var(--card-bg-hover);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.method-card ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.method-card li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Highlighted Method Card */
.method-card.highlight {
    background: linear-gradient(135deg, #1e1b2e 0%, #2a2440 100%);
    border: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.method-card.highlight::before {
    content: '⭐ RECOMMENDED';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: var(--shadow-md);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.status-badge.waiting {
    background: #422006;
    color: #fbbf24;
}

.status-badge.medium {
    background: #1e3a8a;
    color: #93c5fd;
}

.status-badge.low {
    background: #7f1d1d;
    color: #fca5a5;
}

/* Telegram CTA Box */
.telegram-cta {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    text-align: center;
}

.telegram-cta h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.telegram-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.benefit {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    margin: 1rem 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: #fef3c7;
}

.cta-button.large {
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
}

.price-info {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 1rem;
}

/* Warning Box */
.warning-box {
    background: #2a2006;
    border: 2px solid var(--warning-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
}

.warning-box h3 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.faq-item {
    background: var(--card-bg);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Conclusion Section */
.conclusion {
    background: linear-gradient(135deg, #0f2a1a 0%, #1a2e23 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    text-align: center;
}

.conclusion h2 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.final-cta {
    margin-top: 2rem;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-color);
}

.sidebar-widget h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.sidebar-button {
    display: block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    margin-top: 1rem;
}

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

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 0.75rem;
}

.sidebar-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Footer */
footer {
    background: #000000;
    color: var(--text-light);
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

footer .container {
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 968px) {
    main.container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: -1;
    }

    .article-content {
        padding: 2rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .article-content {
        padding: 1.5rem;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .cta-button.large {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-content > * {
    animation: fadeInUp 0.6s ease-out;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    border-top: 2px solid var(--primary-color);
    z-index: 9999;
    animation: slideUp 0.5s ease-out;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-btn.accept {
    background: var(--success-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 0.75rem;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .cookie-buttons {
        flex-direction: row;
        width: 100%;
        gap: 0.5rem;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Print Styles */
@media print {
    header, footer, .sidebar, .telegram-cta, .cta-button, .cookie-consent-banner {
        display: none;
    }

    .article-content {
        box-shadow: none;
        padding: 0;
    }
}

