/* ===========================
   RESET & BASE STYLES
   =========================== */

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

:root {
    /* Colors */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #06b6d4;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --background: #0f172a;
    --background-light: #1e293b;
    --background-lighter: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Typography */
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    --font-heading: 'Segoe UI', 'Roboto', sans-serif;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
}

body {
    font-family: var(--font-main);
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===========================
   NAVIGATION
   =========================== */

header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: var(--spacing-sm) 0;
}

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

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-light);
    background: rgba(99, 102, 241, 0.1);
}

/* ===========================
   HERO SECTIONS
   =========================== */

.hero {
    background: var(--gradient-1);
    padding: var(--spacing-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-primary);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    opacity: 0.95;
}

.page-hero {
    background: var(--gradient-3);
    padding: var(--spacing-xl) 0;
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.page-hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

/* ===========================
   SECTIONS
   =========================== */

section {
    padding: var(--spacing-xl) 0;
}

section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: var(--radius-sm);
}

.intro {
    background: var(--background-light);
}

.intro-content h3 {
    margin-bottom: var(--spacing-md);
}

.intro-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===========================
   CARDS & GRIDS
   =========================== */

.feature-grid,
.info-grid,
.platform-grid,
.model-grid,
.resources-grid,
.tips-grid,
.comparison-grid {
    display: grid;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.info-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.platform-grid,
.model-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.resources-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.tips-grid,
.comparison-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ===========================
   FEATURE CARDS
   =========================== */

.feature-card {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

/* ===========================
   INFO BOXES
   =========================== */

.info-box {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-box:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.info-box h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.info-box p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box ul li {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-md);
    position: relative;
}

.info-box ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

/* ===========================
   PLATFORM & MODEL CARDS
   =========================== */

.platform-card,
.model-card {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.platform-card:hover,
.model-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.platform-card.premium,
.model-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.platform-header,
.model-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.platform-header h4,
.model-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.free {
    background: var(--success-color);
}

.badge.popular {
    background: var(--accent-color);
}

.platform-description,
.model-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.platform-features,
.model-features {
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.platform-features h5,
.model-features h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-features ul,
.model-features ul {
    list-style: none;
    padding-left: 0;
}

.platform-features ul li,
.model-features ul li {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-md);
    position: relative;
    font-size: 0.95rem;
}

.platform-features ul li::before,
.model-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.platform-info,
.model-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.platform-info span,
.model-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.price {
    font-weight: 600;
    color: var(--success-color) !important;
}

.level,
.version {
    color: var(--text-muted) !important;
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: var(--gradient-1);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
}

/* ===========================
   STEPS
   =========================== */

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.step {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md) auto;
}

.step h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===========================
   RESOURCE CARDS
   =========================== */

.resource-card {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.resource-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.resource-card ul {
    list-style: none;
    padding-left: 0;
}

.resource-card ul li {
    margin-bottom: var(--spacing-sm);
}

.resource-card ul li a {
    color: var(--primary-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-card ul li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ===========================
   TIP CARDS
   =========================== */

.tip-card,
.comparison-card {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.tip-card:hover,
.comparison-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.tip-card h4,
.comparison-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.tip-card p,
.comparison-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.comparison-card p strong {
    color: var(--primary-light);
}

/* ===========================
   BACKGROUND SECTIONS
   =========================== */

.features,
.platforms,
.models {
    background: var(--background);
}

.info-sections,
.getting-started,
.resources-links,
.tips,
.comparison {
    background: var(--background-light);
}

/* ===========================
   FOOTER
   =========================== */

footer {
    background: var(--background-lighter);
    padding: var(--spacing-lg) 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: var(--spacing-xxl);
}

footer p {
    color: var(--text-muted);
    margin: var(--spacing-xs) 0;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle,
    .page-hero p {
        font-size: 1rem;
    }
    
    .page-hero h2 {
        font-size: 1.75rem;
    }
    
    section h3 {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        gap: var(--spacing-sm);
    }
    
    .feature-grid,
    .info-grid,
    .platform-grid,
    .model-grid,
    .resources-grid,
    .tips-grid,
    .comparison-grid,
    .steps {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .page-hero h2 {
        font-size: 1.5rem;
    }
    
    section h3 {
        font-size: 1.25rem;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* ===========================
   ANIMATIONS
   =========================== */

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

.feature-card,
.info-box,
.platform-card,
.model-card,
.step,
.tip-card {
    animation: fadeIn 0.6s ease-out;
}

/* ===========================
   UTILITY CLASSES
   =========================== */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.p-1 { padding: var(--spacing-sm); }
.p-2 { padding: var(--spacing-md); }
.p-3 { padding: var(--spacing-lg); }
/* ===========================
   NEWS SECTION
   =========================== */

.news-section {
    padding: var(--spacing-xxl) 0;
    background: var(--background-light);
}

.news-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-xl);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.news-card {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.news-date {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
}

.news-card h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.news-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.news-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: var(--primary-color);
}

/* ===========================
   PROMPT MANAGER
   =========================== */

.prompt-manager {
    padding: var(--spacing-xxl) 0;
}

.prompt-form-container {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.prompt-form-container h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.prompt-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background: var(--background-lighter);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.prompt-filters {
    margin-bottom: var(--spacing-lg);
}

.prompt-filters h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.filter-controls {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.search-input,
.filter-select {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.search-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.prompts-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.prompt-card {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.prompt-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.prompt-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: var(--spacing-md);
}

.prompt-header h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.prompt-actions {
    display: flex;
    gap: var(--spacing-xs);
}

.btn-icon {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: var(--background-lighter);
    transform: scale(1.1);
}

.prompt-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-text { background: rgba(99, 102, 241, 0.2); color: var(--primary-light); }
.badge-code { background: rgba(16, 185, 129, 0.2); color: var(--success-color); }
.badge-image { background: rgba(245, 158, 11, 0.2); color: var(--accent-color); }
.badge-data { background: rgba(6, 182, 212, 0.2); color: var(--secondary-color); }
.badge-marketing { background: rgba(236, 72, 153, 0.2); color: #ec4899; }
.badge-education { background: rgba(139, 92, 246, 0.2); color: #8b5cf6; }
.badge-creative { background: rgba(245, 158, 11, 0.2); color: var(--accent-color); }
.badge-business { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
.badge-model { background: var(--background); color: var(--text-muted); }

.prompt-date {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.prompt-content {
    background: var(--background);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.prompt-content pre {
    color: var(--text-secondary);
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: var(--font-main);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.prompt-notes {
    background: rgba(99, 102, 241, 0.1);
    border-left: 3px solid var(--primary-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.prompt-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.tag {
    background: var(--background);
    color: var(--text-muted);
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.empty-state {
    text-align: center;
    padding: var(--spacing-xxl);
    color: var(--text-muted);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.empty-state h4 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.prompt-tips {
    padding: var(--spacing-xxl) 0;
    background: var(--background-light);
}

.prompt-tips h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-xl);
    color: var(--text-primary);
}

.notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gradient-1);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    font-weight: 500;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* ===========================
   RESPONSIVE - PROMPTS & NEWS
   =========================== */

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-controls {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions button {
        width: 100%;
    }
    
    .prompt-header {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .notification {
        right: 1rem;
        left: 1rem;
        bottom: 1rem;
    }
}

/* ===========================
   QUICK NAVIGATION
   =========================== */

.quick-nav {
    background: var(--background);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 73px;
    z-index: 999;
    backdrop-filter: blur(10px);
    background: rgba(15, 23, 42, 0.95);
}

.quick-nav .container {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.quick-nav-title {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.quick-nav-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    flex: 1;
}

.quick-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.quick-nav-btn:hover {
    background: var(--background-lighter);
    border-color: var(--primary-color);
    color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quick-nav-btn:active {
    transform: translateY(0);
}

/* Scroll behavior für smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

/* ===========================
   RESPONSIVE - QUICK NAV
   =========================== */

@media (max-width: 768px) {
    .quick-nav {
        position: relative;
        top: 0;
    }
    
    .quick-nav .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .quick-nav-title {
        width: 100%;
    }
    
    .quick-nav-buttons {
        width: 100%;
    }
    
    .quick-nav-btn {
        flex: 1 1 auto;
        justify-content: center;
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
    
    html {
        scroll-padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .quick-nav-btn {
        font-size: 0.75rem;
        padding: 0.375rem 0.625rem;
    }
}

/* ===========================
   QUICK NAVIGATION
   =========================== */

.quick-nav {
    background: var(--background);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 73px;
    z-index: 999;
    backdrop-filter: blur(10px);
    background: rgba(15, 23, 42, 0.95);
}

.quick-nav .container {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.quick-nav-title {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.quick-nav-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    flex: 1;
}

.quick-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.quick-nav-btn:hover {
    background: var(--background-lighter);
    border-color: var(--primary-color);
    color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quick-nav-btn:active {
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

@media (max-width: 768px) {
    .quick-nav {
        position: relative;
        top: 0;
    }
    
    .quick-nav .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .quick-nav-title {
        width: 100%;
    }
    
    .quick-nav-buttons {
        width: 100%;
    }
    
    .quick-nav-btn {
        flex: 1 1 auto;
        justify-content: center;
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
    
    html {
        scroll-padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .quick-nav-btn {
        font-size: 0.75rem;
        padding: 0.375rem 0.625rem;
    }
}

/* ===========================
   QUICK NAVIGATION
   =========================== */

.quick-nav {
    background: var(--background);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 73px;
    z-index: 999;
    backdrop-filter: blur(10px);
    background: rgba(15, 23, 42, 0.95);
}

.quick-nav .container {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.quick-nav-title {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.quick-nav-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    flex: 1;
}

.quick-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.quick-nav-btn:hover {
    background: var(--background-lighter);
    border-color: var(--primary-color);
    color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quick-nav-btn:active {
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

@media (max-width: 768px) {
    .quick-nav {
        position: relative;
        top: 0;
    }
    
    .quick-nav .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .quick-nav-title {
        width: 100%;
    }
    
    .quick-nav-buttons {
        width: 100%;
    }
    
    .quick-nav-btn {
        flex: 1 1 auto;
        justify-content: center;
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
    
    html {
        scroll-padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .quick-nav-btn {
        font-size: 0.75rem;
        padding: 0.375rem 0.625rem;
    }
}

/* ===========================
   LEGAL & ABOUT PAGES
   =========================== */

.page-hero {
    background: var(--gradient-1);
    padding: var(--spacing-xxl) 0;
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.page-hero h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

.legal-content,
.about-content {
    padding: var(--spacing-xl) 0 var(--spacing-xxl);
}

.legal-box,
.about-box {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.legal-box h3,
.about-box h3 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-box h4,
.about-box h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.legal-box p,
.about-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.legal-box ul,
.about-box ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.legal-box li,
.about-box li {
    margin-bottom: var(--spacing-sm);
}

.legal-box a,
.about-box a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-box a:hover,
.about-box a:hover {
    color: var(--primary-color);
}

.disclaimer-note {
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--accent-color);
}

.small-text {
    font-size: 0.9rem;
}

/* About Page Specific */
.about-box.highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 2px solid var(--primary-color);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.feature-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--background);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.feature-item h4 {
    margin: 0 0 var(--spacing-xs) 0;
    color: var(--text-primary);
}

.feature-item p {
    margin: 0;
    font-size: 0.95rem;
}

.github-links,
.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
}

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

.btn-secondary {
    background: var(--background);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--background-lighter);
    border-color: var(--primary-color);
}

.creator-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.creator-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.creator-link:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stats-box {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--background);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 2px solid var(--primary-color);
}

.cta-box h3 {
    font-size: 2rem;
}

.cta-buttons {
    justify-content: center;
}

/* Footer Enhancements */
footer {
    background: var(--background-dark);
    padding: var(--spacing-xl) 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

footer a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

/* Responsive - Legal & About */
@media (max-width: 768px) {
    .page-hero h2 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .github-links,
    .creator-links,
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn,
    .creator-link {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   NEWS CATEGORIES
   =========================== */

.news-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xxl);
}

.news-category {
    margin-bottom: var(--spacing-xxl);
}

.category-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--border-color);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-footer {
    margin-top: var(--spacing-xxl);
    padding: var(--spacing-lg);
    background: rgba(99, 102, 241, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    text-align: center;
}

.news-footer p {
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive - News Categories */
@media (max-width: 768px) {
    .category-title {
        font-size: 1.25rem;
    }
    
    .news-intro {
        font-size: 1rem;
    }
}

/* ===========================
   NEWS CATEGORIES
   =========================== */

.news-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xxl);
}

.news-category {
    margin-bottom: var(--spacing-xxl);
}

.category-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--border-color);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-footer {
    margin-top: var(--spacing-xxl);
    padding: var(--spacing-lg);
    background: rgba(99, 102, 241, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    text-align: center;
}

.news-footer p {
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive - News Categories */
@media (max-width: 768px) {
    .category-title {
        font-size: 1.25rem;
    }
    
    .news-intro {
        font-size: 1rem;
    }
}

/* ===========================
   NEWS TABS
   =========================== */
.news-tabs {
    display: flex;
    gap: var(--spacing-sm);
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: var(--spacing-sm);
}

.tab-btn {
    background: var(--background);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    background: var(--background-lighter);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--gradient-1);
    color: white;
    border-color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-category {
    margin-bottom: var(--spacing-xl);
}

/* ===========================
   OFFER/DEAL CARDS
   =========================== */
.offers {
    padding: var(--spacing-xxl) 0;
}

.offers h3 {
    font-size: 2rem;
    margin: var(--spacing-xxl) 0 var(--spacing-xl) 0;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.platform-card.deal {
    position: relative;
    overflow: visible;
}

.deal-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-xl);
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.offer-tips {
    background: var(--background-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl);
    margin-top: var(--spacing-xxl);
}

.offer-tips h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-xl);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.tip-card {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.tip-card h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.tip-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===========================
   INTERNAL LINKS
   =========================== */
.internal-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed var(--primary-light);
    transition: all 0.3s ease;
}

.internal-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.info-box {
    transition: all 0.3s ease;
}

.info-box:target {
    animation: highlightBox 2s ease;
}

@keyframes highlightBox {
    0% {
        background: rgba(99, 102, 241, 0.2);
        transform: scale(1.02);
    }
    100% {
        background: transparent;
        transform: scale(1);
    }
}

/* ===========================
   RESPONSIVE - TABS & OFFERS
   =========================== */
@media (max-width: 768px) {
    .news-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
        border-radius: var(--radius-md);
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .deal-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        right: 10px;
    }
}

/* ===========================
   NEWS TABS
   =========================== */
.news-tabs {
    display: flex;
    gap: var(--spacing-sm);
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: var(--spacing-sm);
}

.tab-btn {
    background: var(--background);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    background: var(--background-lighter);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--gradient-1);
    color: white;
    border-color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-category {
    margin-bottom: var(--spacing-xl);
}

/* ===========================
   OFFER/DEAL CARDS
   =========================== */
.offers {
    padding: var(--spacing-xxl) 0;
}

.offers h3 {
    font-size: 2rem;
    margin: var(--spacing-xxl) 0 var(--spacing-xl) 0;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.platform-card.deal {
    position: relative;
    overflow: visible;
}

.deal-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-xl);
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.offer-tips {
    background: var(--background-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl);
    margin-top: var(--spacing-xxl);
}

.offer-tips h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-xl);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.tip-card {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.tip-card h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.tip-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===========================
   INTERNAL LINKS
   =========================== */
.internal-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed var(--primary-light);
    transition: all 0.3s ease;
}

.internal-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.info-box {
    transition: all 0.3s ease;
}

.info-box:target {
    animation: highlightBox 2s ease;
}

@keyframes highlightBox {
    0% {
        background: rgba(99, 102, 241, 0.2);
        transform: scale(1.02);
    }
    100% {
        background: transparent;
        transform: scale(1);
    }
}

/* ===========================
   RESPONSIVE - TABS & OFFERS
   =========================== */
@media (max-width: 768px) {
    .news-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
        border-radius: var(--radius-md);
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .deal-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        right: 10px;
    }
}

/* ===========================
   INTRO SECTION WITH TABS
   =========================== */
.intro {
    padding: var(--spacing-xxl) 0;
    background: var(--background);
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-content h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-lead {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.intro-tabs {
    display: flex;
    gap: var(--spacing-sm);
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: var(--spacing-sm);
}

.intro-tab-btn {
    background: var(--background-light);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.intro-tab-btn:hover {
    background: var(--background-lighter);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.intro-tab-btn.active {
    background: var(--gradient-1);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.intro-tab-content {
    display: none;
    padding: var(--spacing-xl) 0;
    animation: fadeIn 0.5s ease;
}

.intro-tab-content.active {
    display: block;
}

.intro-tab-content h4 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.intro-tab-content h5 {
    font-size: 1.25rem;
    margin: var(--spacing-lg) 0 var(--spacing-md) 0;
    color: var(--text-primary);
}

/* Info Mini Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.info-mini-box {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.info-mini-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.info-mini-box h5 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-light);
}

.info-mini-box p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.btn-mini {
    display: inline-block;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-mini:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Tech Stack */
.tech-stack {
    background: var(--background-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.tech-tag {
    background: var(--background);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Application Grid */
.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.app-card {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.app-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.app-card h5 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.app-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-md);
}

.app-card li {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

/* Future Timeline */
.future-timeline {
    margin: var(--spacing-xl) 0;
}

.timeline-item {
    background: var(--background-light);
    border-left: 3px solid var(--primary-color);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.timeline-marker {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.timeline-item h5 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.timeline-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Trends Box */
.trends-box {
    background: var(--background-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.trend-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.trend-pill {
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.trend-pill:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Ethics Grid */
.ethics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.ethics-card {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.ethics-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.ethics-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.ethics-card h5 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.ethics-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: left;
}

/* Regulation Box */
.regulation-box {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.regulation-box ul {
    margin: var(--spacing-md) 0;
}

.regulation-box li {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

/* ===========================
   GETTING STARTED - STEPS
   =========================== */
.step-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.step-link:hover {
    background: var(--gradient-1);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===========================
   RESOURCES LINKS - ENHANCED
   =========================== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.resource-card h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resource-card ul {
    list-style: none;
    padding: 0;
}

.resource-card li {
    margin-bottom: var(--spacing-sm);
}

.resource-card a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
}

.resource-card a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

/* ===========================
   RESPONSIVE - INTRO TABS
   =========================== */
@media (max-width: 768px) {
    .intro-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .intro-tab-btn {
        width: 100%;
        text-align: center;
        border-radius: var(--radius-md);
    }
    
    .info-boxes,
    .application-grid,
    .ethics-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-tags {
        justify-content: center;
    }
    
    .step-links {
        flex-direction: column;
    }
    
    .step-link {
        width: 100%;
        justify-content: center;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   INTRO SECTION WITH TABS
   =========================== */
.intro {
    padding: var(--spacing-xxl) 0;
    background: var(--background);
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-content h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-lead {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.intro-tabs {
    display: flex;
    gap: var(--spacing-sm);
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: var(--spacing-sm);
}

.intro-tab-btn {
    background: var(--background-light);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.intro-tab-btn:hover {
    background: var(--background-lighter);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.intro-tab-btn.active {
    background: var(--gradient-1);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.intro-tab-content {
    display: none;
    padding: var(--spacing-xl) 0;
    animation: fadeIn 0.5s ease;
}

.intro-tab-content.active {
    display: block;
}

.intro-tab-content h4 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.intro-tab-content h5 {
    font-size: 1.25rem;
    margin: var(--spacing-lg) 0 var(--spacing-md) 0;
    color: var(--text-primary);
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.info-mini-box {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.info-mini-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.info-mini-box h5 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-light);
}

.info-mini-box p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.btn-mini {
    display: inline-block;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-mini:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.tech-stack {
    background: var(--background-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.tech-tag {
    background: var(--background);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.app-card {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.app-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.app-card h5 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.app-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-md);
}

.app-card li {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.future-timeline {
    margin: var(--spacing-xl) 0;
}

.timeline-item {
    background: var(--background-light);
    border-left: 3px solid var(--primary-color);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.timeline-marker {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.timeline-item h5 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.timeline-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.trends-box {
    background: var(--background-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.trend-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.trend-pill {
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.trend-pill:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.ethics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.ethics-card {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.ethics-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.ethics-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.ethics-card h5 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.ethics-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: left;
}

.regulation-box {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.regulation-box ul {
    margin: var(--spacing-md) 0;
}

.regulation-box li {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.step-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.step-link:hover {
    background: var(--gradient-1);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.resource-card h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resource-card ul {
    list-style: none;
    padding: 0;
}

.resource-card li {
    margin-bottom: var(--spacing-sm);
}

.resource-card a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
}

.resource-card a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .intro-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .intro-tab-btn {
        width: 100%;
        text-align: center;
        border-radius: var(--radius-md);
    }
    
    .info-boxes,
    .application-grid,
    .ethics-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-tags {
        justify-content: center;
    }
    
    .step-links {
        flex-direction: column;
    }
    
    .step-link {
        width: 100%;
        justify-content: center;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   TECH TABS IN INTRO
   =========================== */
.tech-tabs {
    display: flex;
    gap: 0.5rem;
    margin: var(--spacing-lg) 0;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.tech-tab-btn {
    background: var(--background);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-tab-btn:hover {
    background: var(--background-lighter);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.tech-tab-btn.active {
    background: var(--gradient-1);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.tech-tab-content {
    display: none;
    padding: var(--spacing-lg) 0;
    animation: fadeIn 0.5s ease;
}

.tech-tab-content.active {
    display: block;
}

.tech-detail {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.tech-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.tech-header h6 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
}

.tech-badge {
    background: var(--gradient-1);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.tech-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.tech-features h6,
.tech-use-cases h6 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin: var(--spacing-md) 0 var(--spacing-sm) 0;
}

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

.tech-features li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tech-features li:before {
    content: "▸";
    color: var(--primary-light);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.use-case-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--spacing-sm);
}

.use-case-pill {
    background: var(--background);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.use-case-pill:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.tech-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.tech-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1.25rem;
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tech-link-btn:hover {
    background: var(--gradient-1);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===========================
   RESPONSIVE - TECH TABS
   =========================== */
@media (max-width: 768px) {
    .tech-tabs {
        flex-direction: row;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .tech-tab-btn {
        flex-shrink: 0;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .tech-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .tech-header h6 {
        font-size: 1.25rem;
    }
    
    .tech-links {
        flex-direction: column;
    }
    
    .tech-link-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Tech Tabs in Intro */
.tech-tabs {
    display: flex;
    gap: 0.5rem;
    margin: var(--spacing-lg) 0;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.tech-tab-btn {
    background: var(--background);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-tab-btn:hover {
    background: var(--background-lighter);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.tech-tab-btn.active {
    background: var(--gradient-1);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.tech-tab-content {
    display: none;
    padding: var(--spacing-lg) 0;
    animation: fadeIn 0.5s ease;
}

.tech-tab-content.active {
    display: block;
}

.tech-detail {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.tech-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.tech-header h6 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
}

.tech-badge {
    background: var(--gradient-1);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.tech-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.tech-features h6,
.tech-use-cases h6 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin: var(--spacing-md) 0 var(--spacing-sm) 0;
}

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

.tech-features li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tech-features li:before {
    content: "▸";
    color: var(--primary-light);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.use-case-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--spacing-sm);
}

.use-case-pill {
    background: var(--background);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.use-case-pill:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.tech-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.tech-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1.25rem;
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tech-link-btn:hover {
    background: var(--gradient-1);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .tech-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .tech-tab-btn {
        flex-shrink: 0;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .tech-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .tech-header h6 {
        font-size: 1.25rem;
    }
    
    .tech-links {
        flex-direction: column;
    }
    
    .tech-link-btn {
        width: 100%;
        justify-content: center;
    }
}
