/* ============================================
   Zodan Interactive - Ballistic Design
   Stunning, Animated, Mind-Blowing UI
   ============================================ */

/* CSS Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --dark-gradient: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --text-dark: #1a1a2e;
    --text-light: #8b9bb4;
    --text-white: #ffffff;
    --bg-light: #0f0c29;
    --bg-card: rgba(255, 255, 255, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.2);
    --shadow-neon: 0 0 20px rgba(102, 126, 234, 0.3);
    --border-radius: 16px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.7;
    color: var(--text-white);
    background: var(--bg-light);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

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

/* ============================================
   Animations
   ============================================ */

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(102, 126, 234, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(102, 126, 234, 0.3);
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    75% {
        transform: translateY(10px);
    }
}

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

@keyframes morphing {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.6s ease forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease forwards;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-glow {
    animation: glowPulse 3s ease-in-out infinite;
}

.animate-wave {
    animation: wave 2s ease-in-out infinite;
}

.animate-sparkle {
    animation: sparkle 2s ease-in-out infinite;
}

.animate-morph {
    animation: morphing 8s ease-in-out infinite;
}

/* Staggered Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* ============================================
   Header & Navigation
   ============================================ */

.header {
    background: var(--dark-gradient);
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 100vh;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(118, 75, 162, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(240, 147, 251, 0.3) 0%, transparent 50%);
    animation: gradientShift 10s ease infinite;
    background-size: 200% 200%;
    pointer-events: none;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

/* Floating orbs */
.header .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: float 12s ease-in-out infinite;
    pointer-events: none;
}

.header .orb-1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.25) 0%, transparent 70%);
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.header .orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.2) 0%, transparent 70%);
    top: 35%;
    right: 15%;
    animation-delay: 4s;
}

.header .orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.15) 0%, transparent 70%);
    bottom: 25%;
    left: 35%;
    animation-delay: 8s;
}

.nav {
    position: relative;
    z-index: 10;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 12, 41, 0.5);
    backdrop-filter: blur(20px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 800;
    transition: var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    position: relative;
    padding: 8px 0;
}

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

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

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

.hero {
    position: relative;
    z-index: 10;
    padding: 120px 0 160px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-white);
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease forwards;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero h1 span {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #667eea 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 50px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--text-white);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

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

/* ============================================
   Main Content Sections
   ============================================ */

main {
    position: relative;
    z-index: 1;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* Apps Grid */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.app-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-normal);
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.app-card:hover::before {
    opacity: 1;
}

.app-card-image {
    height: 250px;
    background: var(--dark-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.app-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(240, 147, 251, 0.4) 0%, transparent 50%);
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

.app-icon-large {
    width: 100px;
    height: 100px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
    box-shadow: var(--shadow-md);
}

.app-icon-large svg {
    width: 60px;
    height: 60px;
}

.versiontrack-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    border: 2px solid rgba(102, 126, 234, 0.4);
}

.versiontrack-icon svg {
    color: #667eea;
}

.app-card-content {
    padding: 48px;
}

.app-card-title {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 16px;
    font-weight: 700;
}

.app-card-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.app-card-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tag {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: var(--text-white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-card-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.app-card-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.95rem;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
    align-items: flex-start;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(102, 126, 234, 0.3);
}

.feature-item-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.feature-item-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.feature-item-content h4 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-item-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-glow);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.feature-title {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Target Audience Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-normal);
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.audience-card:hover::before {
    opacity: 1;
}

.audience-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-normal);
}

.audience-card:hover .audience-icon {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.4);
}

.audience-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.audience-card h4 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 16px;
    font-weight: 700;
}

.audience-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}
.stats-section {
    background: var(--dark-gradient);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(240, 147, 251, 0.25) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--text-white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: var(--bg-light);
    text-align: center;
    padding: 120px 0;
}

.cta-box {
    background: var(--primary-gradient);
    padding: 100px 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-neon);
    position: relative;
    overflow: hidden;
    animation: glowPulse 4s ease-in-out infinite;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
}

.cta-box h2 {
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-weight: 800;
}

.cta-box p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.cta-box .btn {
    position: relative;
    z-index: 1;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--dark-gradient);
    color: var(--text-white);
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--text-white);
    font-weight: 700;
}

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

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-normal);
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* ============================================
  /* Website Screenshot Section */
.screenshot-section {
    padding: 80px 0;
    background: var(--dark-gradient);
    position: relative;
    overflow: hidden;
}

.screenshot-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(240, 147, 251, 0.15) 0%, transparent 50%);
}

.screenshot-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
}

.screenshot-frame {
    position: relative;
    display: inline-block;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(102, 126, 234, 0.2);
    transition: all var(--transition-normal);
    animation: float 8s ease-in-out infinite;
}

.screenshot-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(102, 126, 234, 0.3);
}

.website-screenshot {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, transparent 100%);
    padding: 60px 40px 40px;
    text-align: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.screenshot-frame:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
}

.screenshot-overlay h3 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 12px;
    font-weight: 700;
}

.screenshot-overlay p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.screenshot-overlay .btn {
    background: var(--text-white);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.screenshot-overlay .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   App Detail Page Styles
   ============================================ */

.app-hero {
    padding: 160px 0 120px;
    position: relative;
}

.app-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.app-hero-text {
    color: var(--text-white);
}

.app-hero-badge {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-white);
}

.app-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -2px;
}

.app-hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.app-hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup {
    width: 320px;
    height: 640px;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border: 3px solid var(--glass-border);
    border-radius: 50px;
    box-shadow: var(--shadow-neon);
    position: relative;
    animation: float 8s ease-in-out infinite;
    overflow: hidden;
}

.app-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
}

.app-mockup-content {
    padding: 80px 24px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.app-mockup-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    border-radius: 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-neon);
    animation: glowPulse 3s ease-in-out infinite;
}

.app-mockup-icon svg {
    width: 60px;
    height: 60px;
    color: white;
}

/* App Screenshot */
.app-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    animation: float 8s ease-in-out infinite;
}

/* Logo Image */
.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    object-fit: contain;
}

/* Feature List */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    transition: var(--transition-normal);
}

.feature-item:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: var(--shadow-neon);
    border-color: rgba(102, 126, 234, 0.5);
}

.feature-item-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-neon);
    animation: glowPulse 3s ease-in-out infinite;
}

.feature-item-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.feature-item-content h4 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-item-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Screenshots */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.screenshot-item {
    aspect-ratio: 9/16;
    background: var(--dark-gradient);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.screenshot-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .app-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .app-hero-visual {
        order: -1;
    }
    
    .app-mockup {
        width: 280px;
        height: 560px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .header .orb-1 {
        width: 250px;
        height: 250px;
    }
    
    .header .orb-2 {
        width: 300px;
        height: 300px;
    }
    
    .header .orb-3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .nav-links {
        display: flex;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav-links li {
        flex: 1 1 140px;
        text-align: center;
    }

    .hero {
        padding: 80px 0 100px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .app-card-image {
        height: 180px;
    }

    .app-card-content {
        padding: 22px;
    }

    .app-card-title {
        font-size: 1.35rem;
    }

    .app-card-description {
        font-size: 0.95rem;
    }

    .app-card-actions {
        flex-direction: column;
    }

    .app-hero-title {
        font-size: 2.6rem;
    }

    .app-mockup {
        width: 220px;
        height: 440px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .cta-box {
        padding: 50px 24px;
    }
    
    .cta-box h2 {
        font-size: 1.6rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        gap: 40px;
    }

    .privacy-container {
        padding: 100px 20px 60px;
    }
}

@media (max-width: 600px) {
    .logo {
        font-size: 1.1rem;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .section {
        padding: 55px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .app-card-content {
        padding: 20px;
    }

    .app-card-title {
        font-size: 1.25rem;
    }

    .app-card-description {
        font-size: 0.9rem;
    }

    .cta-box {
        padding: 40px 18px;
    }

    .footer-content {
        gap: 28px;
    }

    .privacy-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .privacy-container {
        padding: 90px 16px 50px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .app-card-actions {
        flex-direction: column;
    }
    
    .app-card-actions .btn {
        width: 100%;
    }

    .app-hero-title {
        font-size: 2rem;
    }

    .app-hero-actions {
        flex-direction: column;
    }

    .app-mockup {
        width: 180px;
        height: 360px;
    }

    .content-box {
        padding: 24px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */

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

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.hidden { display: none; }
.visible { display: block; }

/* Intersection Observer Animation Trigger */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Privacy Page Enhancements */
.privacy-nav {
    background: var(--dark-gradient);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.privacy-badge {
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.privacy-app-name {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.privacy-section {
    margin-bottom: 32px;
}

.privacy-section h3 {
    margin-top: 18px;
    margin-bottom: 10px;
    color: var(--text-white);
    font-size: 1.1rem;
}

.privacy-highlight {
    background: rgba(102, 126, 234, 0.12);
    border-left: 4px solid var(--primary-color);
    padding: 18px;
    border-radius: 14px;
    margin-top: 16px;
}

.privacy-section ul {
    padding-left: 20px;
    margin: 12px 0;
    color: rgba(255, 255, 255, 0.85);
}

.privacy-section ul li {
    margin-bottom: 8px;
}

.privacy-contact {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-contact h3 {
    margin-bottom: 10px;
}

.privacy-effective {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Simple Blog Styles
   ============================================ */

.blog-single {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    gap: 32px;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
}

.blog-single-img {
    width: 120px;
    flex-shrink: 0;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.blog-single-content {
    flex: 1;
}

.blog-single-date {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-single-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.blog-single-title a {
    color: var(--text-white);
    text-decoration: none;
}

.blog-single-title a:hover {
    color: var(--primary-color);
}

.blog-single-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
}

.blog-single-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.blog-single-link:hover {
    text-decoration: underline;
}

/* Simple Article Page */
.article-simple {
    padding: 60px 0 100px;
}

.article-with-screenshot {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.article-screenshot {
    width: 220px;
    flex-shrink: 0;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 100px;
}

@media (max-width: 768px) {
    .blog-single {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-single-img {
        width: 90px;
    }

    .article-with-screenshot {
        flex-direction: column;
        align-items: center;
    }

    .article-screenshot {
        width: 180px;
        position: static;
    }
}

.back-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.back-link:hover {
    color: var(--text-white);
}

.article-simple-header {
    margin-bottom: 40px;
}

.article-simple-date {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-simple-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.article-simple-body {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-simple-body .lead {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 32px;
    line-height: 1.6;
}

.article-simple-body h2 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin: 40px 0 16px;
    font-weight: 700;
}

.article-simple-body ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-simple-body li {
    margin-bottom: 8px;
}

.article-simple-body p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .blog-single-content {
        padding: 28px;
    }
    
    .blog-single-title {
        font-size: 1.5rem;
    }
    
    .article-simple-header h1 {
        font-size: 1.9rem;
    }
    
    .article-simple-body {
        font-size: 1rem;
    }
    
    .article-simple-body .lead {
        font-size: 1.15rem;
    }
}

/* ============================================
   Blog Styles (Legacy - keep for compatibility)
   ============================================ */

/* Blog Header */
.header-small {
    min-height: auto;
    padding-bottom: 60px;
}

.header-small .hero {
    padding: 80px 0 60px;
}

.page-header {
    position: relative;
    z-index: 10;
    padding: 100px 0 80px;
    text-align: center;
}

.page-badge {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-white);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    animation: fadeInDown 0.8s ease forwards;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-header h1 span {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #667eea 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
    line-height: 1.8;
}

/* Blog Section */
.blog-section {
    background: var(--bg-light);
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-grid-small {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

/* Blog Cards */
.blog-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102, 126, 234, 0.3);
}

.blog-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
}

.blog-card-featured .blog-card-image {
    height: 100%;
    min-height: 400px;
}

.blog-card-featured .blog-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.blog-card-featured .blog-card-title {
    font-size: 2.2rem;
}

.blog-card-featured .blog-card-excerpt {
    font-size: 1.15rem;
}

.blog-card-image {
    position: relative;
    height: 220px;
    background: var(--dark-gradient);
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.blog-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.blog-card-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.blog-card-date::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

.blog-card-title {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-white);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.blog-card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.blog-card-tags .tag {
    padding: 6px 12px;
    font-size: 0.75rem;
}

.blog-card-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    width: fit-content;
}

.blog-card-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    width: fit-content;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    border-radius: 8px;
    border: 1px solid rgba(102, 126, 234, 0.4);
}

.blog-card-btn-link:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.5) 0%, rgba(118, 75, 162, 0.5) 100%);
    border-color: rgba(102, 126, 234, 0.6);
    gap: 12px;
    transform: translateY(-2px);
}

.blog-card-btn-link svg {
    transition: transform var(--transition-normal);
}

.blog-card-btn-link:hover svg {
    transform: translateX(4px);
}

/* Pagination */
.pagination {
    margin-top: 60px;
    text-align: center;
}

.pagination-info {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.pagination-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.pagination-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Newsletter Form */
.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 1rem;
    outline: none;
    transition: all var(--transition-normal);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Article Page Styles */
.article-header {
    padding: 40px 0 60px;
    background: var(--bg-light);
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
}

.article-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.article-breadcrumb a:hover {
    color: var(--text-white);
}

.article-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.article-meta-header {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.article-category {
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-date,
.article-read {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.article-title {
    font-size: 2.8rem;
    color: var(--text-white);
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.article-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.article-hero-image {
    margin-bottom: 48px;
    border-radius: 16px;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: auto;
    display: block;
}

.article-body {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    font-size: 1.1rem;
}

.article-lead {
    font-size: 1.3rem;
    color: var(--text-white);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 500;
}

.article-body h2 {
    font-size: 1.9rem;
    color: var(--text-white);
    margin: 48px 0 24px;
    font-weight: 700;
}

.article-body h3 {
    font-size: 1.4rem;
    color: var(--text-white);
    margin: 32px 0 16px;
    font-weight: 600;
}

.article-body p {
    margin-bottom: 24px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 24px;
    padding-left: 28px;
}

.article-body li {
    margin-bottom: 12px;
}

.article-body a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all var(--transition-normal);
}

.article-body a:hover {
    border-bottom-color: var(--primary-color);
}

.article-body blockquote {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 24px 32px;
    margin: 32px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-white);
}

.article-body blockquote cite {
    display: block;
    margin-top: 16px;
    font-size: 0.95rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
}

.article-body strong {
    color: var(--text-white);
    font-weight: 600;
}

.article-cta {
    margin: 40px 0;
    padding: 32px;
    background: var(--dark-gradient);
    border-radius: 16px;
    text-align: center;
}

.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.article-share span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.share-btn:hover {
    background: var(--primary-gradient);
    color: var(--text-white);
    transform: translateY(-3px);
}

.article-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.article-nav-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

.article-nav-link svg {
    transition: transform var(--transition-normal);
}

.article-nav-link:hover svg {
    transform: translateX(-4px);
}

/* Related Articles */
.related-articles {
    background: var(--dark-gradient);
    position: relative;
}

.related-articles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(240, 147, 251, 0.08) 0%, transparent 50%);
}

.related-articles .container {
    position: relative;
    z-index: 1;
}

.related-articles .section-title {
    text-align: center;
    margin-bottom: 48px;
}

/* Responsive Blog Styles */
@media (max-width: 1024px) {
    .blog-card-featured {
        grid-template-columns: 1fr;
    }
    
    .blog-card-featured .blog-card-image {
        min-height: 280px;
    }
    
    .blog-card-featured .blog-card-content {
        padding: 40px;
    }
    
    .blog-card-featured .blog-card-title {
        font-size: 1.8rem;
    }
    
    .article-title {
        font-size: 2.2rem;
    }
    
    .article-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card-featured .blog-card-content {
        padding: 28px;
    }
    
    .blog-card-content {
        padding: 24px;
    }
    
    .blog-card-title {
        font-size: 1.3rem;
    }
    
    .article-content {
        padding: 28px;
        border-radius: 16px;
    }
    
    .article-title {
        font-size: 1.7rem;
    }
    
    .article-lead {
        font-size: 1.1rem;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input-group .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .article-breadcrumb {
        font-size: 0.8rem;
    }
    
    .article-meta-header {
        gap: 12px;
    }
    
    .article-category {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .article-share {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-nav {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}
