/* ========================================
   Clockwise Entertainment - Base Styles
   ======================================== */

:root {
    --primary: #6c5ce7;
    --primary-dark: #5b4cdb;
    --secondary: #00cec9;
    --accent: #fd79a8;
    --dark: #0a0a0f;
    --dark-light: #12121a;
    --dark-lighter: #1a1a25;
    --text: #ffffff;
    --text-muted: #a0a0b0;
    --gradient-1: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    --gradient-2: linear-gradient(135deg, #00cec9 0%, #81ecec 100%);
    --gradient-3: linear-gradient(135deg, #6c5ce7 0%, #00cec9 50%, #fd79a8 100%);
    --shadow: 0 10px 40px rgba(108, 92, 231, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Christmas Snow Effect
   ======================================== */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -20px;
    color: #fff;
    opacity: 0.9;
    pointer-events: none;
    animation: snowfall linear forwards;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0 0 3px rgba(200, 220, 255, 0.6));
}

.snowflake.sparkle {
    animation: snowfall linear forwards, sparkle 0.5s ease-in-out infinite alternate;
}

.snowflake.glow {
    text-shadow: 0 0 10px #fff, 0 0 20px rgba(108, 92, 231, 0.5), 0 0 30px rgba(0, 206, 201, 0.3);
}

@keyframes snowfall {
    0% {
        transform: translateY(0) rotate(0deg) translateX(0);
        opacity: 1;
    }
    25% {
        transform: translateY(25vh) rotate(90deg) translateX(15px);
    }
    50% {
        transform: translateY(50vh) rotate(180deg) translateX(-15px);
    }
    75% {
        transform: translateY(75vh) rotate(270deg) translateX(10px);
    }
    100% {
        transform: translateY(105vh) rotate(360deg) translateX(-10px);
        opacity: 0.3;
    }
}

@keyframes sparkle {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Christmas Holiday Banner (optional) */
.holiday-banner {
    position: fixed;
    top: 80px;
    right: 20px;
    background: linear-gradient(135deg, #c41e3a 0%, #1a472a 100%);
    padding: 10px 20px;
    border-radius: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
    animation: bannerPulse 2s ease-in-out infinite;
}

.holiday-banner i {
    color: #ffd700;
    font-size: 1.2rem;
    animation: starSpin 3s linear infinite;
}

.holiday-banner span {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes bannerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes starSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-icon {
    font-size: 4rem;
    color: var(--primary);
    animation: pulse 1s ease-in-out infinite;
}

.loader-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 20px;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: var(--dark-lighter);
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: var(--gradient-1);
    animation: load 1.5s ease-in-out forwards;
}

@keyframes load {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition);
}

.logo i {
    font-size: 1.8rem;
    color: var(--primary);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Account Button in Nav */
.nav-account {
    background: var(--gradient-1);
    padding: 10px 20px !important;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-account::after {
    display: none !important;
}

.nav-account:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

.shape-4 {
    width: 500px;
    height: 500px;
    background: var(--primary-dark);
    bottom: -150px;
    right: 20%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.95); }
    75% { transform: translate(-50px, -30px) scale(1.05); }
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    animation: particleFloat 15s infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: -2s; }
.particle:nth-child(3) { left: 60%; top: 40%; animation-delay: -4s; }
.particle:nth-child(4) { left: 80%; top: 60%; animation-delay: -6s; }
.particle:nth-child(5) { left: 30%; top: 30%; animation-delay: -8s; }
.particle:nth-child(6) { left: 70%; top: 70%; animation-delay: -10s; }
.particle:nth-child(7) { left: 50%; top: 10%; animation-delay: -12s; }
.particle:nth-child(8) { left: 90%; top: 90%; animation-delay: -14s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-100px) scale(1.5); opacity: 1; }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(108, 92, 231, 0.2);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    margin-bottom: 30px;
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.stat-icon {
    color: var(--primary);
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: var(--dark-lighter);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--text);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(108, 92, 231, 0.4);
}

.btn-primary i {
    transition: var(--transition);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(108, 92, 231, 0.4); }
    to { box-shadow: 0 0 40px rgba(108, 92, 231, 0.8); }
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--text);
}

.btn-outline:hover {
    background: var(--primary);
}

.btn-white {
    background: var(--text);
    color: var(--dark);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--text);
    color: var(--text);
}

.btn-outline-white:hover {
    background: var(--text);
    color: var(--dark);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
}

.section-desc {
    color: var(--text-muted);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--dark-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--dark-lighter);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: var(--transition);
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(108, 92, 231, 0.1);
}

.about-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.about-card p {
    color: var(--text-muted);
}

.card-line {
    width: 50px;
    height: 3px;
    background: var(--gradient-1);
    margin: 20px auto 0;
    transition: var(--transition);
}

.about-card:hover .card-line {
    width: 100px;
}

/* What We Do Section */
.what-we-do {
    padding: 100px 0;
}

.wwd-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wwd-text h2 {
    font-size: 2.5rem;
    margin: 15px 0 20px;
    line-height: 1.2;
}

.wwd-text h2 .highlight {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wwd-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.wwd-list {
    margin-bottom: 30px;
}

.wwd-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    color: var(--text-muted);
}

.wwd-list li i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.wwd-visual {
    display: flex;
    justify-content: center;
}

.visual-box {
    width: 350px;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    animation: float-icon 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.visual-rings span {
    position: absolute;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: ring-pulse 3s ease-out infinite;
}

.visual-rings span:nth-child(1) {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.visual-rings span:nth-child(2) {
    width: 280px;
    height: 280px;
    animation-delay: 1s;
}

.visual-rings span:nth-child(3) {
    width: 360px;
    height: 360px;
    animation-delay: 2s;
}

@keyframes ring-pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0; }
}

.visual-particles span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: orbit 8s linear infinite;
}

.visual-particles span:nth-child(1) { animation-delay: 0s; }
.visual-particles span:nth-child(2) { animation-delay: -1.3s; }
.visual-particles span:nth-child(3) { animation-delay: -2.6s; }
.visual-particles span:nth-child(4) { animation-delay: -4s; }
.visual-particles span:nth-child(5) { animation-delay: -5.3s; }
.visual-particles span:nth-child(6) { animation-delay: -6.6s; }

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(180px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(180px) rotate(-360deg); }
}

/* Blog Preview */
.blog-preview {
    padding: 100px 0;
    background: var(--dark-light);
}

.blog-preview-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: var(--dark-lighter);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.preview-image {
    position: relative;
    min-height: 300px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-placeholder {
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.5;
}

.fa-spin-slow {
    animation: rotate 10s linear infinite;
}

.preview-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    background: var(--gradient-1);
    border-radius: 20px;
    font-size: 0.85rem;
}

.preview-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.preview-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.preview-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.preview-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.preview-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.blog-cta {
    text-align: center;
    margin-top: 40px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--gradient-1);
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    animation: float 15s infinite;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
    animation: float 20s infinite reverse;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark-light);
    position: relative;
    padding-top: 60px;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-99%);
}

.footer-wave svg {
    width: 100%;
    height: 60px;
    fill: var(--dark-light);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 15px 0 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-logo i {
    font-size: 1.5rem;
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--dark-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-1);
    color: var(--text);
    transform: translateY(-5px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-links-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    padding: 8px 0;
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid var(--dark-lighter);
    padding: 25px 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

/* Page Hero */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 150px 20px 80px;
    text-align: center;
}

.page-hero-content {
    z-index: 1;
}

.page-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 1s ease 0.3s both;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
}

.glitch:hover::before {
    animation: glitch-1 0.3s infinite;
    color: var(--secondary);
    z-index: -1;
    opacity: 0.8;
}

.glitch:hover::after {
    animation: glitch-2 0.3s infinite;
    color: var(--accent);
    z-index: -2;
    opacity: 0.8;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(3px, -3px); }
    60% { transform: translate(-3px, -3px); }
    80% { transform: translate(3px, 3px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(3px, -3px); }
    40% { transform: translate(-3px, 3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(-3px, -3px); }
}

/* Blog Page */
.blog-page {
    padding: 60px 0 100px;
}

.blog-card-full {
    background: var(--dark-light);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    margin-bottom: 60px;
}

.blog-card-image {
    position: relative;
    min-height: 400px;
    background: var(--dark-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-placeholder-large {
    position: relative;
}

.blog-placeholder-large i {
    font-size: 6rem;
    color: var(--primary);
}

.icon-rings span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: ring-pulse 2s ease-out infinite;
}

.icon-rings span:nth-child(1) { width: 150px; height: 150px; }
.icon-rings span:nth-child(2) { width: 200px; height: 200px; animation-delay: 0.5s; }
.icon-rings span:nth-child(3) { width: 250px; height: 250px; animation-delay: 1s; }

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.blog-card-content {
    padding: 50px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.meta-item {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary);
    margin-right: 5px;
}

.blog-card-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.blog-card-excerpt p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Blog Grid */
.blog-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.blog-section-header h2 {
    font-size: 1.5rem;
}

.section-line {
    flex: 1;
    height: 1px;
    background: var(--dark-lighter);
}

.blog-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card-mini {
    background: var(--dark-light);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.blog-card-mini-image {
    position: relative;
    height: 180px;
    background: var(--dark-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-placeholder {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.5;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    background: var(--primary);
    border-radius: 15px;
    font-size: 0.8rem;
}

.blog-card-mini-content {
    padding: 25px;
}

.blog-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.blog-date i {
    margin-right: 5px;
}

.blog-card-mini-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-card-mini-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.read-more-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.read-more-link:hover {
    gap: 10px;
}

.coming-soon {
    opacity: 0.5;
}

/* Newsletter */
.newsletter-section {
    margin-top: 60px;
    padding: 50px;
    background: var(--gradient-1);
    border-radius: 20px;
    text-align: center;
}

.newsletter-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.newsletter-content p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-form .btn {
    padding: 15px 25px;
}

/* Contact Page */
.contact-page {
    padding: 60px 0 100px;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-main-card {
    background: var(--dark-light);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.contact-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

.contact-main-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-main-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.email-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(108, 92, 231, 0.2);
    border-radius: 10px;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.email-button:hover {
    background: rgba(108, 92, 231, 0.3);
    transform: translateY(-2px);
}

.response-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding: 15px 20px;
    background: rgba(0, 206, 201, 0.1);
    border-radius: 10px;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark);
}

.badge-text {
    text-align: left;
}

.badge-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.badge-value {
    font-weight: 600;
    color: var(--secondary);
}

.contact-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--dark-light);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    background: var(--dark-lighter);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact Form */
.form-card {
    background: var(--dark-light);
    padding: 50px;
    border-radius: 20px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-new {
    margin-bottom: 25px;
}

.form-group-new label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: var(--dark-lighter);
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.textarea-wrapper i {
    top: 20px;
    transform: none;
}

.textarea-wrapper textarea {
    min-height: 120px;
    resize: vertical;
}

.additional-info {
    margin-top: 40px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 206, 201, 0.1);
    border-radius: 10px;
}

.info-box i {
    color: var(--secondary);
    font-size: 1.5rem;
}

.info-box a {
    color: var(--primary);
    font-weight: 600;
}

/* Support Page */
.support-page {
    padding: 60px 0 100px;
}

.support-main {
    max-width: 600px;
    margin: 0 auto 60px;
}

.support-card-large {
    background: var(--dark-light);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.support-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.support-icon-large {
    width: 120px;
    height: 120px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--dark);
}

.float-animation {
    animation: float-icon 3s ease-in-out infinite;
}

.icon-particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: particle-orbit 4s linear infinite;
}

.icon-particles span:nth-child(1) { animation-delay: 0s; }
.icon-particles span:nth-child(2) { animation-delay: -1s; }
.icon-particles span:nth-child(3) { animation-delay: -2s; }
.icon-particles span:nth-child(4) { animation-delay: -3s; }

@keyframes particle-orbit {
    0% { transform: rotate(0deg) translateX(80px); }
    100% { transform: rotate(360deg) translateX(80px); }
}

.support-card-large h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.support-card-large p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.support-email-btn {
    background: rgba(0, 206, 201, 0.2);
    color: var(--secondary);
}

.support-badge {
    background: rgba(253, 121, 168, 0.1);
    justify-content: center;
}

.support-badge .badge-icon {
    background: var(--accent);
}

.support-badge .badge-value {
    color: var(--accent);
}

/* FAQ Section */
.faq-page-section {
    margin-bottom: 60px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--dark-light);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 500;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--primary);
}

/* Help Categories */
.help-categories {
    margin-bottom: 60px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--dark-light);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.category-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.category-card:hover .category-link {
    gap: 10px;
}

/* Support CTA */
.support-cta {
    background: var(--gradient-1);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.support-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.support-cta p {
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Blog Post Page */
.post-hero {
    padding: 150px 20px 80px;
    text-align: center;
    position: relative;
}

.post-hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    margin-bottom: 30px;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--primary);
}

.post-category {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-1);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.post-title {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 30px;
}

.post-meta-full {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-details {
    text-align: left;
}

.author-name {
    font-weight: 600;
    display: block;
}

.post-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.post-stats {
    color: var(--text-muted);
}

/* Post Content */
.post-content-section {
    padding: 60px 0 100px;
}

.post-body {
    background: var(--dark-light);
    padding: 50px;
    border-radius: 20px;
}

.post-intro {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.post-section {
    margin-bottom: 40px;
}

.post-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.post-section h2 i {
    color: var(--primary);
}

.post-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.highlight-quote {
    background: rgba(108, 92, 231, 0.1);
    border-left: 4px solid var(--primary);
    padding: 30px;
    margin: 30px 0;
    border-radius: 0 15px 15px 0;
    position: relative;
}

.highlight-quote i {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 15px;
}

.highlight-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-card {
    background: var(--dark-lighter);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.info-card h4 {
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.9rem;
}

.styled-list {
    margin: 20px 0;
}

.styled-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: var(--text-muted);
}

.styled-list li i {
    color: var(--secondary);
}

.signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--dark-lighter);
}

.signature p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
}

/* Post Share */
.post-share {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 30px;
    background: var(--dark-light);
    border-radius: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    background: var(--dark-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.twitter:hover { background: #1da1f2; }
.share-btn.linkedin:hover { background: #0077b5; }
.share-btn.facebook:hover { background: #1877f2; }
.share-btn.copy:hover { background: var(--primary); }

/* Post Navigation */
.post-navigation {
    margin-top: 30px;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--dark-light);
    border-radius: 10px;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary);
}

/* Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* Animations */
.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-card-full,
    .blog-preview-card {
        grid-template-columns: 1fr;
    }
    
    .contact-page-grid,
    .wwd-content {
        grid-template-columns: 1fr;
    }
    
    .wwd-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links-grid {
        justify-items: center;
    }
    
    .footer-links-col a {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .post-body,
    .form-card,
    .contact-main-card,
    .support-card-large {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 120px 20px 60px;
    }
    
    .blog-card-content,
    .preview-content {
        padding: 25px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        width: 100%;
    }
}

/* ========================================
   Downloads Page Styles
   ======================================== */
.downloads-page {
    padding: 60px 0 100px;
}

.downloads-coming-soon {
    margin-bottom: 80px;
}

.coming-soon-card {
    background: var(--dark-light);
    padding: 60px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid var(--dark-lighter);
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-3);
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
}

.coming-soon-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.coming-soon-card > p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: var(--dark-lighter);
    border-radius: 15px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(108, 92, 231, 0.2);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary);
}

.feature-item span {
    font-weight: 500;
}

.coming-soon-note {
    color: var(--text-muted);
}

.coming-soon-note a {
    color: var(--primary);
    font-weight: 600;
}

.coming-soon-note a:hover {
    text-decoration: underline;
}

/* Downloads Grid */
.downloads-section {
    margin-bottom: 60px;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.download-card {
    background: var(--dark-light);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--dark-lighter);
    transition: var(--transition);
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.download-image {
    position: relative;
    height: 200px;
    background: var(--dark-lighter);
}

.download-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-muted);
    opacity: 0.3;
}

.download-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.download-content {
    padding: 25px;
}

.download-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.download-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.download-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.download-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-meta i {
    color: var(--primary);
}

.coming-soon-card-item {
    opacity: 0.7;
}

.coming-soon-card-item:hover {
    opacity: 1;
}

/* Download Button (for future use) */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--gradient-1);
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 15px;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Downloads CTA */
.downloads-cta {
    background: var(--dark-light);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--dark-lighter);
}

.downloads-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.downloads-cta p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Downloads Responsive */
@media (max-width: 768px) {
    .coming-soon-card {
        padding: 40px 25px;
    }
    
    .coming-soon-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .coming-soon-card h2 {
        font-size: 1.5rem;
    }
    
    .coming-soon-features {
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px 20px;
    }
    
    .downloads-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Account Page Styles
   ======================================== */
.account-page {
    padding: 60px 0 100px;
}

.auth-container {
    max-width: 450px;
    margin: 0 auto;
}

.auth-card {
    background: var(--dark-light);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid var(--dark-lighter);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-3);
}

.auth-card.hidden {
    display: none;
}

.auth-header {
    text-align: center;
    margin-bottom: 35px;
}

.auth-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.auth-icon.verify-icon {
    background: var(--gradient-2);
}

.auth-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-muted);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i:first-child {
    position: absolute;
    left: 15px;
    color: var(--text-muted);
    font-size: 1rem;
}

.input-wrapper input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: var(--dark-lighter);
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--dark);
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.toggle-password {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.toggle-password:hover {
    color: var(--primary);
}

.username-status {
    position: absolute;
    right: 15px;
    font-size: 1rem;
}

.input-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.form-options {
    display: flex;
    justify-content: flex-end;
}

.forgot-link {
    color: var(--primary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.auth-message {
    display: none;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: center;
}

.auth-message.success {
    background: rgba(0, 206, 201, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(0, 206, 201, 0.3);
}

.auth-message.error {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

/* Auth Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--dark-lighter);
}

.auth-divider span {
    padding: 0 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Google Button */
.btn-google {
    background: #ffffff;
    color: #333333;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-google:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-google i {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--dark-lighter);
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Verify Card */
.verify-content {
    text-align: center;
}

.verify-email {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.verify-instruction {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Dashboard Card */
.dashboard-card {
    max-width: 500px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--dark-lighter);
}

.user-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.user-info h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.user-info .username {
    color: var(--primary);
    font-weight: 500;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.stat-card {
    background: var(--dark-lighter);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.stat-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-card .stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.dashboard-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--dark-lighter);
    border-radius: 15px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
}

.action-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.action-card:hover {
    transform: translateY(-5px);
    background: rgba(108, 92, 231, 0.2);
}

.logout-action:hover {
    background: rgba(255, 107, 107, 0.2);
}

.logout-action:hover i {
    color: #ff6b6b;
}

/* Account Responsive */
@media (max-width: 768px) {
    .auth-card {
        padding: 35px 25px;
    }
    
    .auth-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .auth-header h2 {
        font-size: 1.5rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        text-align: center;
    }
    
    .dashboard-stats,
    .dashboard-actions {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Legal Pages (Terms, Privacy, Security)
   ======================================== */
.legal-page {
    padding: 60px 0 100px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    background: var(--dark-light);
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 25px;
    border: 1px solid var(--dark-lighter);
}

.legal-section h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.legal-section h2 i {
    color: var(--primary);
    font-size: 1.2rem;
}

.legal-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    list-style: none;
    padding: 0;
}

.legal-section ul li {
    color: var(--text-muted);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.legal-section ul li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.legal-section ul li strong {
    color: var(--text);
}

.legal-section a {
    color: var(--primary);
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-section h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin: 25px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-section h3 i {
    color: var(--primary);
}

.legal-highlight {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 206, 201, 0.1));
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
}

.legal-highlight p {
    margin: 10px 0;
    line-height: 1.7;
}

.legal-highlight p:first-child {
    margin-top: 0;
}

.legal-highlight p:last-child {
    margin-bottom: 0;
}

/* Footer Legal Links */
.footer-legal {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Signup Warning */
.signup-warning {
    background: rgba(253, 121, 168, 0.1);
    border: 1px solid rgba(253, 121, 168, 0.3);
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.signup-warning i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 2px;
}

.signup-warning p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.signup-warning a {
    color: var(--primary);
}

/* Legal Responsive */
@media (max-width: 768px) {
    .legal-section {
        padding: 25px 20px;
    }
    
    .legal-section h2 {
        font-size: 1.2rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

/* Terms Agreement Checkbox */
.terms-agreement {
    margin-top: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label .checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.terms-notice {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin: 15px 0;
}

.terms-notice a {
    color: var(--primary);
    text-decoration: none;
}

.terms-notice a:hover {
    text-decoration: underline;
}

/* Password Requirements */
.password-requirements {
    margin: 10px 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.password-requirements .requirement {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 5px 0;
    transition: color 0.3s ease;
}

.password-requirements .requirement i {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.password-requirements .requirement.met {
    color: #00cec9;
}

.password-requirements .requirement.met i {
    color: #00cec9;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
    margin-top: 8px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}
