/* Premium Dark 3D Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #FFFFFF;
    --secondary: #F5F5F5;
    --accent: #D9D9D9;
    --dark-bg: #080808;
    --darker-bg: #030303;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --shadow: 0 28px 60px rgba(0, 0, 0, 0.8);
    --shadow-hover: 0 60px 120px rgba(0, 0, 0, 0.9);
}

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

html {
    overflow-x: hidden;
    width: 100%;
    background: #000000;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: var(--text-primary);
    overflow-x: hidden;
    padding-top: 0;
    margin: 0;
    min-height: 100%;
}

.page-root {
    perspective: 1000px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}



.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.35rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
}

.header-container .mobile-menu-toggle {
    order: -1;
    margin-right: 0.5rem;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo a {
    display: block;
    line-height: 0;
}

.header-logo img {
    height: 70px;
    width: auto;
    transition: opacity 0.3s ease;
}

.header-logo img:hover {
    opacity: 0.8;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.header-btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.header-btn-primary {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.header-btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.header-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.user-info-header:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.user-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.user-balance {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 600;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.user-balance i {
    color: #4ade80;
    font-size: 0.85rem;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-icon-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    padding: 0;
}

.header-icon-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.header-icon-btn i {
    font-size: 0.95rem;
    line-height: 1;
    display: block;
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid #000000;
}

.logout-form {
    margin: 0;
}

.header-btn-logout {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.header-btn-logout:hover {
    background: rgba(255, 59, 48, 0.15);
    border-color: rgba(255, 59, 48, 0.4);
    color: #ff3b30;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 59, 48, 0.2);
}

.header-btn-logout i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    line-height: 1;
    display: block;
}

.header-btn-logout:hover i {
    transform: translateX(-2px);
}

.btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: translateZ(10px);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateZ(20px) translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.coming-soon {
    position: relative;
    overflow: hidden;
}

.coming-soon::after {
    content: 'Coming Soon';
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(45deg, var(--secondary), #ff4757);
    color: white;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    transform: rotate(12deg);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

/* Development Notice */
.development-notice {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 0.5rem 0;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.development-notice p {
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Main Content */
main {
    background: #000000;
    width: 100%;
    overflow-x: hidden;
    flex: 1;
}

section {
    width: 100%;
    background: #000000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    background: #000000;
    padding-top: 180px;
    width: 100%;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo-wrapper {
    margin-bottom: 2.5rem;
    animation: logoFadeIn 1s ease 0.2s both;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-logo {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    color: #ffffff;
}

.title-line {
    display: block;
    animation: titleSlideIn 1s ease both;
}

.title-line:nth-child(1) {
    animation-delay: 0.4s;
}

.title-line:nth-child(2) {
    animation-delay: 0.6s;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeIn 1s ease 0.8s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 400;
    animation: fadeIn 1s ease 1s both;
}

/* Hero Buttons - BBRE Style */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeIn 1s ease 1.2s both;
}

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    cursor: pointer;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.hero-btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-btn-primary i,
.hero-btn-secondary i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover i,
.hero-btn-secondary:hover i {
    transform: translateX(3px);
}

.hero-scroll-indicator {
    display: none;
}

/* Ensure headings and important text are fully opaque white */
h1,
h2,
h3,
h4,
h5 {
    color: #FFFFFF;
}

.tech-card p,
.overview-card p,
.pricing-card p,
.pricing-card li {
    color: #FFFFFF;
}

.nav a {
    color: #F2F2F2;
}

/* Improve button contrast */
.btn {
    color: #FFFFFF;
}

/* Features Section - Cinematic 3D Scene */
.features {
    padding: 8rem 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: cinematicLighting 8s ease-in-out infinite alternate;
}

@keyframes cinematicLighting {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.8;
    }
}

.cinematic-scene {
    position: relative;
    perspective: 2000px;
    transform-style: preserve-3d;
}

.scene-logo {
    text-align: center;
    margin-bottom: 3rem;
    transform: translateZ(100px);
}

.animated-logo {
    width: 120px;
    height: 120px;
    animation: logoEntrance 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
        logoFloat 4s ease-in-out 3s infinite;
    transform: scale(0) rotateY(-180deg);
    filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.8));
}

@keyframes logoEntrance {
    0% {
        transform: scale(0) rotateY(-180deg) translateZ(-200px);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) rotateY(-90deg) translateZ(50px);
        opacity: 0.7;
    }

    100% {
        transform: scale(1) rotateY(0deg) translateZ(0px);
        opacity: 1;
    }
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px) rotateY(0deg);
    }

    25% {
        transform: translateY(-10px) rotateY(5deg);
    }

    50% {
        transform: translateY(0px) rotateY(0deg);
    }

    75% {
        transform: translateY(-5px) rotateY(-5deg);
    }
}

.scene-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 5rem;
    background: linear-gradient(45deg, #ffffff, #d9d9d9, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.5);
    animation: titleReveal 2s ease-out 1.5s forwards;
    transform: translateY(50px) scale(0.8);
    opacity: 0;
    position: relative;
}

.scene-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(45deg, #ffffff, #d9d9d9);
    animation: titleLine 1s ease-out 2.5s forwards;
}

@keyframes titleReveal {
    0% {
        transform: translateY(50px) scale(0.8);
        opacity: 0;
    }

    100% {
        transform: translateY(0px) scale(1);
        opacity: 1;
    }
}

@keyframes titleLine {
    0% {
        width: 0;
    }

    100% {
        width: 200px;
    }
}

.tech-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    position: relative;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    transform: translateZ(50px) rotateX(10deg) scale(0.9);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(45deg, #ffffff, #d9d9d9);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.tech-card:hover {
    transform: translateZ(100px) rotateX(0deg) scale(1.05);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.9),
        0 0 100px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.tech-card:hover::before {
    transform: scaleX(1);
}

.tech-level {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.tech-card p {
    opacity: 0.9;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Sequential Reveals */
.reveal-1 {
    animation: cardReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 3.5s forwards;
}

.reveal-2 {
    animation: cardReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 4s forwards;
}

.reveal-3 {
    animation: cardReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 4.5s forwards;
}

.reveal-4 {
    animation: cardReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 5s forwards;
}

.reveal-5 {
    animation: cardReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 5.5s forwards;
}

.reveal-6 {
    animation: cardReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 6s forwards;
}

@keyframes cardReveal {
    0% {
        transform: translateZ(-100px) rotateX(45deg) scale(0.8);
        opacity: 0;
    }

    50% {
        transform: translateZ(25px) rotateX(5deg) scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: translateZ(50px) rotateX(10deg) scale(0.9);
        opacity: 1;
    }
}

/* Particle Effects */
.tech-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: particleGlow 3s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes particleGlow {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Overview Section */
.overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.9) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.overview h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.overview-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transform: translateZ(20px);
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    position: relative;
}

.overview-card:hover {
    transform: translateZ(40px) translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.overview-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Supported Emails Section */
.supported-emails {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9) 0%, rgba(20, 20, 20, 0.8) 100%);
}

.supported-emails h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.email-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.email-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s ease;
    width: 180px;
    height: 180px;
    justify-content: center;
}

.email-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.email-logo-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.email-logo-item span {
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
}

.pricing h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.category-tab {
    padding: 1rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.category-tab:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    color: var(--primary);
}

.category-tab.active {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.category-content {
    position: relative;
}

.category-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.category-section.active {
    display: block;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-soon-content {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.coming-soon-content p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, var(--secondary), #ff4757);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    padding: 3rem 2.5rem;
    text-align: center;
    transform: translateZ(20px);
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card::after {
    content: '';
    position: absolute;
    left: -40%;
    top: -60%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.02), transparent 15%, transparent 70%);
    transform: rotate(20deg) translateZ(-1px);
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateZ(80px) translateY(-22px) rotateY(6deg);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.85);
}

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

.pricing-card .app-logo {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transform: translateZ(60px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.pricing-card .app-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: none;
}

.pricing-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-card li {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.plans {
    margin: 2rem 0;
}

.plans p {
    margin-bottom: 0.5rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    text-align: center;
    flex-shrink: 0;
}

.footer p {
    opacity: 0.7;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 0.1rem;
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    animation: footerLogoGlow 2s ease-in-out infinite alternate;
}

@keyframes footerLogoGlow {
    0% {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    }

    100% {
        filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.9));
    }
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-mission {
    text-align: center;
    margin: 1.5rem auto;
    max-width: 600px;
}

.footer-mission .mission-text-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.footer-mission .mission-static-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.2;
}

.footer-mission .mission-animated-text {
    position: relative;
    display: inline-block;
    min-width: 85px;
    height: 1.5rem;
}

.footer-mission .mission-word {
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    opacity: 0;
    transform: translateY(10px);
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.footer-mission .mission-word.active {
    animation: footerWordAppear 3s ease-in-out;
}

@keyframes footerWordAppear {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    10%,
    90% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.footer-mission .mission-cursor {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--primary);
    animation: footerCursorBlink 1s infinite;
    margin-left: 0.0625rem;
}

@keyframes footerCursorBlink {

    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

/* 404 Page */
.error-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 4rem;
    text-align: center;
    transform: translateZ(30px);
    box-shadow: var(--shadow);
    max-width: 600px;
    width: 100%;
}

.error-container h1 {
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--secondary), #ff4757);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.error-container h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.error-container p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: #000000;
    width: 100%;
    overflow-x: hidden;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.faq-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 60px;
    max-height: 60px;
    max-width: 500px;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.faq-item.open {
    border-color: rgba(255, 255, 255, 0.4);
    max-height: 400px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    gap: 1rem;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    font-size: 1.25rem;
    margin-top: -5px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Responsive */
@media (max-width: 1200px) {
    .faq-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .faq-section {
        padding: 6rem 0;
    }

    .faq-header h2 {
        font-size: 2.5rem;
    }

    .faq-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .faq-question {
        padding: 0.4rem;
        font-size: 0.65rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .faq-item.open .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
}

@media (max-width: 640px) {
    .faq-section {
        padding: 4rem 0;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-header p {
        font-size: 1rem;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-question {
        padding: 0.4rem;
        font-size: 0.65rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .faq-icon {
        font-size: 0.9rem;
    }

    .faq-item.open .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }

    .faq-answer p {
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.75rem;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .features h2,
    .overview h2,
    .pricing h2 {
        font-size: 2rem;
    }

    .tech-grid,
    .overview-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        gap: 1rem;
    }

    .header .logo h1 {
        font-size: 1.4rem;
    }

    .hero-content img {
        width: 180px;
        transform: translateZ(30px);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .pricing-card .app-logo {
        width: 48px;
        height: 48px;
    }

    .header .logo img {
        height: 64px;
    }

    .pricing-card .btn {
        margin-top: 1.6rem;
    }
}

/* Auth Pages */
.auth-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.auth-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow);
    transform: translateZ(20px);
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.btn-primary,
.btn-secondary {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateZ(10px);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: var(--dark-bg);
}

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

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    text-decoration: none !important;
}

.btn-secondary:hover {
    background: var(--glass-bg);
    color: var(--primary);
    transform: translateZ(20px) translateY(-2px);
    text-decoration: none !important;
}

.auth-card p {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
}

.auth-card a {
    color: var(--primary);
    text-decoration: none;
}

.auth-card a:hover {
    text-decoration: underline;
}

.error {
    color: #ff6b6b;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Dashboard */
.dashboard-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.dashboard-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow);
    transform: translateZ(20px);
    text-align: center;
}

.dashboard-card h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.dashboard-card p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* Dashboard Layout */
.dashboard-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 80px;
}

.dashboard-main {
    display: flex;
    flex: 1;
}

.dashboard-sidebar {
    width: 260px;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 1rem;
    transform: translateZ(10px);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    margin-top: -10px;
    display: flex;
    flex-direction: column;
}

.user-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1rem;
    margin: 0 1rem 1rem;
    display: flex;
    align-items: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transform: translateZ(5px);
    position: relative;
    overflow: hidden;
}

.user-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.user-avatar i {
    color: var(--dark-bg);
    font-size: 1.1rem;
}

.user-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 0.25rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.license-status {
    font-size: 0.8rem;
    color: #4ade80;
    margin: 0;
    font-weight: 500;
    opacity: 0.9;
}

.sidebar-nav {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sidebar-section {
    margin-bottom: 1.75rem;
}

.sidebar-section-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.6rem;
    padding: 0 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-section-title::after {
    content: '';
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.02);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    margin-bottom: 4px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.sidebar-link i {
    margin-right: 0.85rem;
    width: 20px;
    text-align: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-link span {
    flex: 1;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.sidebar-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(3px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sidebar-link:hover i {
    color: #ffffff;
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.sidebar-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.4);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.15);
}

.sidebar-link.active i {
    color: #d8b4fe;
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(216, 180, 254, 0.5));
}

.sidebar-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 3px;
    background: linear-gradient(to bottom, #a855f7, #ec4899);
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.dashboard-content {
    flex: 1;
    padding: 2rem;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    overflow-y: auto;
    overflow-x: hidden;
    min-height: calc(100vh - 90px);
}

.dashboard-content .container {
    max-width: none;
    width: 100%;
}

/* Header Updates */
.user-info {
    color: var(--text-secondary);
    font-weight: 500;
    margin-right: 1rem;
}

.logout-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.logout-btn:hover {
    background: var(--glass-bg);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}

.mobile-menu-toggle i {
    color: white;
    font-size: 1.1rem;
}

/* Sidebar Overlay for Mobile */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
}

/* Responsive */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .dashboard-layout {
        padding-top: 90px;
        min-height: 100vh;
    }

    .dashboard-main {
        position: relative;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .dashboard-sidebar {
        position: fixed;
        top: 90px;
        left: 0;
        bottom: 0;
        width: 280px;
        max-width: 85vw;
        height: calc(100vh - 90px);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        overflow-x: hidden;
        border-right: 1px solid var(--glass-border);
        padding: 1.5rem 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
    }

    .dashboard-sidebar.active {
        transform: translateX(0);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    }

    .sidebar-overlay {
        display: block;
    }

    .dashboard-content {
        width: 100%;
        flex: 1;
        padding: 1.5rem 1rem;
        min-height: auto;
        height: auto;
        overflow-y: visible;
        overflow-x: hidden;
    }

    .dashboard-content .container {
        padding: 0;
    }

    .user-card {
        margin: 0 1rem 1rem;
        padding: 1rem;
    }

    .sidebar-nav {
        padding: 0 0.5rem;
    }

    .sidebar-section {
        margin-bottom: 1.5rem;
    }

    .sidebar-section-title {
        display: block;
        font-size: 0.75rem;
        padding: 0 1rem;
    }

    .sidebar-link {
        padding: 0.75rem 1rem;
        margin-bottom: 0.25rem;
    }

    .sidebar-link i {
        margin-right: 0.75rem;
        font-size: 1rem;
    }

    .sidebar-link span {
        display: inline;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .mobile-menu-toggle {
        width: 34px;
        height: 34px;
        margin-right: 0.4rem;
    }

    .mobile-menu-toggle i {
        font-size: 0.95rem;
    }

    .dashboard-sidebar {
        width: 260px;
    }

    .dashboard-content {
        padding: 1rem 0.5rem;
    }

    .user-card {
        margin: 0 0.75rem 0.75rem;
        padding: 0.75rem;
    }

    .user-avatar {
        width: 40px;
        height: 40px;
    }

    .user-info h4 {
        font-size: 0.9rem;
    }

    .license-status {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu-toggle {
        width: 30px;
        height: 30px;
        margin-right: 0.35rem;
    }

    .mobile-menu-toggle i {
        font-size: 0.9rem;
    }

    .dashboard-content {
        padding: 0.85rem 0.4rem;
    }
}

/* Enhanced Dashboard Styles */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.welcome-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.welcome-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    opacity: 0.8;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.action-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark-bg);
    border: none;
    box-shadow: var(--shadow);
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}


.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.stat-change.positive {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

.stat-change.neutral {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.content-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.card-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-header h2 i {
    color: var(--accent);
}

.view-all {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: var(--primary);
}

.activity-list {
    padding: 0;
}

.activity-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.3s ease;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.activity-icon.success {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

.activity-icon.info {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.activity-icon.warning {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.activity-icon.danger {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.activity-icon.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.activity-text {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.activity-text strong {
    color: var(--primary);
}

.activity-time {
    color: var(--text-secondary);
    font-size: 0.8rem;
    opacity: 0.7;
}

.actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    text-align: center;
}

.action-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.action-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.action-icon i {
    color: #ffffff;
    font-size: 1.25rem;
}

.action-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* API Key Card */
.api-key-card {
    grid-column: 1 / -1;
}

.api-key-content {
    padding: 2rem;
}

.api-key-display {
    margin-bottom: 1.5rem;
}

.api-key-display label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

.api-key-input-container {
    margin-bottom: 0;
}

.api-key-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.api-key-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.api-key-buttons {
    display: none;
}

/* Desktop layout - buttons next to input */
@media (min-width: 769px) {
    .api-key-input-container {
        flex: 1;
        margin-bottom: 0;
    }

    .api-key-input {
        width: 100%;
    }

    .api-key-buttons {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .api-key-btn {
        flex: none;
        width: auto;
        max-width: 150px;
    }

    .api-key-content {
        display: flex;
        align-items: stretch;
        gap: 0.75rem;
    }

    .api-key-buttons {
        margin-bottom: 0;
    }
}

.api-key-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    flex: 1;
    max-width: 150px;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.api-key-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.regenerate-btn {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.regenerate-btn:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: translateY(-2px);
}

.docs-btn {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.docs-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.api-key-warning {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    color: rgba(255, 193, 7, 0.9);
    font-size: 0.85rem;
}

.api-key-warning i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.chart-placeholder {
    padding: 1.5rem;
}

.chart-visual {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 150px;
    margin-bottom: 1rem;
}

.chart-bar {
    width: 30px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    position: relative;
}

.chart-bar:hover {
    opacity: 0.8;
    transform: scaleY(1.02);
}

.chart-bar::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chart-bar:hover::after {
    opacity: 1;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
}

.chart-labels span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.time-selector {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}

.status-list {
    padding: 1.5rem;
}

.status-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.status-item:last-child {
    border-bottom: none;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.status-indicator.online {
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.status-indicator.maintenance {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.status-item span {
    flex: 1;
    color: var(--text-primary);
    font-weight: 500;
}

.status-item small {
    color: var(--text-secondary);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

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

@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .welcome-section h1 {
        font-size: 2rem;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .actions-grid {
        grid-template-columns: 1fr;
    }

    .chart-visual {
        height: 120px;
    }

    .chart-bar {
        width: 25px;
    }
}

/* Payment History Page Styles */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.page-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    opacity: 0.8;
}

.page-actions {
    display: flex;
    gap: 1rem;
}

.filters-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    opacity: 0.7;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.filter-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    min-width: 120px;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

.payment-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.summary-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.summary-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.summary-icon.total {
    background: linear-gradient(135deg, #10b981, #059669);
}

.summary-icon.completed {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.summary-icon.pending {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.summary-icon.failed {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.summary-icon i {
    color: white;
    font-size: 1.5rem;
}

.summary-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.summary-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.payments-table-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 2rem;
}

.payments-table {
    width: 100%;
    border-collapse: collapse;
}

.payments-table thead {
    background: rgba(255, 255, 255, 0.05);
}

.payments-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--glass-border);
}

.payments-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    vertical-align: top;
}

.payments-table tbody tr {
    transition: all 0.2s ease;
}

.payments-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.date-cell .date {
    font-weight: 600;
    color: var(--primary);
    display: block;
}

.date-cell small {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.description-cell strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

.description-cell small {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.amount-cell {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.status-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.completed {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.status-badge.failed {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.status-badge.refunded {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.payment-method i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.action-btn-small {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.action-btn-small:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
    transform: scale(1.05);
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.pagination-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pagination-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-current {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark-bg);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Mobile Responsive for Payments */
@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .filters-section {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .filter-controls {
        justify-content: center;
        flex-wrap: wrap;
    }

    .payment-summary {
        grid-template-columns: 1fr;
    }

    .payments-table-container {
        overflow-x: auto;
    }

    .payments-table {
        min-width: 600px;
    }

    .pagination {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Updates Page Styles */
.version-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.version-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.version-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.version-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.version-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.version-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.version-date,
.version-status {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.version-status {
    color: #10b981;
    font-weight: 600;
}

.version-status {
    color: #10b981;
    font-weight: 600;
}

.version-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.product-filter {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.product-filter h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.filter-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--dark-bg);
    transform: translateY(-1px);
}

.updates-timeline {
    position: relative;
    margin-bottom: 2rem;
}

.updates-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-right: 1.5rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-marker i {
    color: var(--dark-bg);
    font-size: 1.25rem;
}

.timeline-content {
    flex: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.timeline-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.timeline-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    flex: 1;
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
    margin-left: 1rem;
    flex-shrink: 0;
}

.timeline-product {
    margin-bottom: 1rem;
}

.product-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-tag.platform {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.product-tag.spotify {
    background: linear-gradient(135deg, #1db954, #1aa34a);
    color: white;
}

.product-tag.gmail {
    background: linear-gradient(135deg, #ea4335, #d33b2c);
    color: white;
}

.product-tag.tiktok {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
}

.product-tag.outlook {
    background: linear-gradient(135deg, #0078d4, #005a9e);
    color: white;
}

.product-tag.tempmail {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.timeline-changes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.change-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.change-item i {
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.change-item i.fa-plus-circle {
    color: #10b981;
}

.change-item i.fa-bug {
    color: #ef4444;
}

.change-item i.fa-shield-alt,
.change-item i.fa-lock {
    color: #3b82f6;
}

.change-item i.fa-palette,
.change-item i.fa-mobile-alt,
.change-item i.fa-chart-line {
    color: #8b5cf6;
}

.change-item i.fa-code,
.change-item i.fa-clock,
.change-item i.fa-plug {
    color: #f59e0b;
}

.change-item i.fa-users,
.change-item i.fa-share-alt,
.change-item i.fa-user-plus {
    color: #06b6d4;
}

.change-item i.fa-tachometer-alt,
.change-item i.fa-database,
.change-item i.fa-cloud {
    color: #10b981;
}

.change-item i.fa-globe,
.change-item i.fa-mail-bulk {
    color: #f59e0b;
}

.change-item i.fa-music,
.change-item i.fa-envelope,
.change-item i.fa-video,
.change-item i.fa-inbox {
    color: var(--accent);
}

.whats-next-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.whats-next-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.whats-next-card h2 i {
    color: var(--accent);
}

.next-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.next-feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all 0.2s ease;
}

.next-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--dark-bg);
    font-size: 1.25rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.feature-status {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    text-transform: uppercase;
}

.feature-status:contains("In Development") {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.feature-status:contains("Planning Phase") {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.feature-status:contains("Testing") {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

/* FAQ Page Styles */
.faq-search {
    margin-bottom: 2rem;
}

.faq-categories {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    color: var(--dark-bg);
    transform: translateY(-1px);
}

.faq-accordion {
    margin-bottom: 2rem;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;

    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;

    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--text-secondary);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: var(--primary);
    font-weight: 600;
}

.help-card {
    background: linear-gradient(135deg, var(--glass-bg), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.help-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.help-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.help-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive for Updates and FAQ */
@media (max-width: 768px) {
    .version-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .version-meta {
        align-items: flex-start;
    }

    .product-filter {
        padding: 1rem;
    }

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

    .filter-btn {
        flex: 1;
        min-width: 100px;
        text-align: center;
        font-size: 0.8rem;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-marker {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }

    .updates-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .timeline-date {
        margin-left: 0;
    }

    .next-features {
        grid-template-columns: 1fr;
    }

    .faq-categories {
        justify-content: center;
    }

    .category-btn {
        flex: 1;
        min-width: 80px;
        text-align: center;
    }

    .help-actions {
        flex-direction: column;
        align-items: center;
    }

    .help-actions .action-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Applications Page Styles */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.application-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.application-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.app-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-info {
    flex: 1;
}

.app-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.app-version {
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.app-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.app-status.active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.app-status.expired {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.app-description {
    margin-bottom: 1.5rem;
}

.app-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.app-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.download-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark-bg);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    flex: 1;
    justify-content: center;
}

.download-btn:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.download-btn.disabled {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    cursor: not-allowed;
}

.requirements-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.requirements-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.requirements-card h2 i {
    color: var(--accent);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.requirement-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.req-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.req-icon i {
    color: var(--dark-bg);
    font-size: 1.25rem;
}

.req-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.req-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Pricing Page Styles */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.duration-options {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.25rem;
}

.duration-btn {
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.duration-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.duration-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pricing-categories {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.pricing-content {
    display: none;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 0 30px rgba(217, 217, 217, 0.3);
}

.pricing-card.premium {
    background: linear-gradient(135deg, var(--glass-bg), rgba(255, 255, 255, 0.08));
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.featured-badge,
.premium-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.premium-badge {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.card-header {
    display: flex;
    align-items: center;
}

.app-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.app-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-title h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.pricing-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.billing-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.features-list li i {
    color: #10b981;
    flex-shrink: 0;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.purchase-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark-bg);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.purchase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.demo-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.demo-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.coming-soon-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.coming-soon-icon i {
    color: var(--dark-bg);
    font-size: 2rem;
}

.coming-soon-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.coming-soon-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.feature-item i {
    color: var(--accent);
    font-size: 1.25rem;
    width: 20px;
}

.feature-item span {
    color: var(--text-primary);
    font-weight: 500;
}

.notify-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark-bg);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.pricing-faq {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.pricing-faq h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

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

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

/* Mobile Responsive for Applications and Pricing */
@media (max-width: 768px) {
    .applications-grid {
        grid-template-columns: 1fr;
    }

    .application-card {
        padding: 1.5rem;
    }

    .app-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .app-icon {
        margin-right: 0;
    }

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

    .download-btn {
        width: 100%;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }

    .duration-options {
        width: 100%;
        justify-content: center;
    }

    .duration-btn {
        flex: 1;
        text-align: center;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .app-logo {
        margin-right: 0;
    }

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

    .purchase-btn,
    .demo-btn {
        width: 100%;
    }

    .coming-soon-features {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Support Page Styles */
.support-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    color: #9922b5;
    font-size: 1.25rem;
}

.stat-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.stat-info p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.support-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.support-icon i {
    color: var(--dark-bg);
    font-size: 1.5rem;
}

.support-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.support-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.support-btn {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.support-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    color: var(--dark-bg);
}

.support-btn.primary:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.recent-tickets {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 0.25rem;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.section-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.view-all-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.view-all-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.tickets-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.ticket-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.ticket-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ticket-icon i {
    font-size: 1.25rem;
}

.ticket-icon .fa-check-circle {
    color: #10b981;
    background: rgba(16, 185, 129, 0.2);
}

.ticket-icon .fa-clock {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.2);
}

.ticket-icon .fa-exclamation-triangle {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.2);
}

.ticket-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.ticket-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.ticket-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ticket-code {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
}

.ticket-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.ticket-status {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    text-transform: uppercase;
}

.ticket-status.resolved {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.ticket-status.in-progress {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.ticket-status.open {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.support-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.hours-item .day {
    font-weight: 600;
    color: var(--text-primary);
}

.hours-item .time {
    color: var(--accent);
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.contact-item i {
    color: var(--accent);
    width: 20px;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.quick-help {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.quick-help h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.help-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all 0.2s ease;
}

.help-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.help-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.help-icon i {
    color: var(--dark-bg);
    font-size: 1.25rem;
}

.help-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.help-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.help-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.help-link:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.modal-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(217, 217, 217, 0.2);
}

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

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark-bg);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive for Support */
@media (max-width: 768px) {
    .support-stats {
        grid-template-columns: 1fr;
    }

    .support-options {
        grid-template-columns: 1fr;
    }

    .support-card {
        padding: 1.5rem;
    }

    .recent-tickets {
        padding: 1.5rem;
    }

    .ticket-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .ticket-meta {
        justify-content: center;
    }

    .support-contact {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .hours-grid {
        gap: 0.75rem;
    }

    .contact-info {
        gap: 1rem;
    }

    .contact-item {
        padding: 0.75rem;
    }

    .hours-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .help-grid {
        grid-template-columns: 1fr;
    }

    .help-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* View Ticket Page Styles */
.ticket-status-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.status-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    flex: 1;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.status-badge.resolved {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.status-info {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.status-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.conversation-card,
.reply-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.card-header {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-header h3 i {
    color: var(--accent);
}

.card-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0.25rem 0 0 0;
}

.messages-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.message {
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.message.customer {
    background: rgba(255, 255, 255, 0.05);
    margin-left: 2rem;
}

.message.support {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark-bg);
    margin-right: 2rem;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
}

.sender {
    font-weight: 600;
}

.time {
    color: var(--text-secondary);
    opacity: 0.8;
}

.message.support .time {
    color: rgba(255, 255, 255, 0.9);
}

.message-content p {
    margin: 0;
    line-height: 1.5;
}

.resolution-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 600;
}

.reply-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-primary);
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(217, 217, 217, 0.1);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.form-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.form-info i {
    color: var(--accent);
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    border: none;
    font-size: 0.9rem;
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark-bg);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive for View Ticket */
@media (max-width: 768px) {

    .ticket-status-card,
    .conversation-card,
    .reply-card {
        padding: 1.5rem;
    }

    .status-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .status-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .message.customer,
    .message.support {
        margin-left: 0;
        margin-right: 0;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

.contact-card {
    padding: 1.5rem;
}

.hours-item {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.help-grid {
    grid-template-columns: 1fr;
}

.help-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

.modal-content {
    width: 95%;
    margin: 10% auto;
}

.modal-header,
.modal-body {
    padding: 1.5rem;
}

.form-actions {
    flex-direction: column;
}

.btn {
    width: 100%;
}

/* =====
=======================================
   CAPTCHA SOLVER SHOWCASE SECTION
   ============================================ */

.captcha-solver-showcase {
    padding: 8rem 0;
    background: #000000;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.captcha-solver-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.captcha-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.captcha-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

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

.captcha-cinema {
    position: relative;
    z-index: 2;
}

.cinema-screen {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.cinema-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 100%);
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.captcha-demo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.captcha-demo-item {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: fadeInUp 0.8s ease forwards;
}

.captcha-demo-item:nth-child(1) {
    animation-delay: 0.2s;
}

.captcha-demo-item:nth-child(2) {
    animation-delay: 0.4s;
}

.captcha-demo-item:nth-child(3) {
    animation-delay: 0.6s;
}

.captcha-demo-item:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.captcha-box {
    background: rgba(20, 20, 30, 0.8);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.captcha-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
}

.captcha-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.captcha-logo {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.captcha-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6366f1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.status-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.captcha-content {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.captcha-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    width: 100%;
    max-width: 200px;
}

.grid-cell {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.grid-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(99, 102, 241, 0.3) 50%,
            transparent 100%);
    animation: cellScan 3s linear infinite;
}

.grid-cell::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 100%);
    border-radius: 6px;
    opacity: 0.5;
}

@keyframes cellScan {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.challenge-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cloudflare-spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #6366f1;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: #8b5cf6;
    animation-duration: 2s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-top-color: #a78bfa;
    animation-duration: 2.5s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.verify-text {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.funcaptcha-puzzle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    width: 100%;
    max-width: 150px;
}

.puzzle-piece {
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 12px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.puzzle-piece::before {
    content: '';
    position: absolute;
    inset: 6px;
    background: linear-gradient(225deg,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 100%);
    border-radius: 8px;
}

.puzzle-piece::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30%;
    height: 30%;
    background: rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
}

.captcha-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #a78bfa);
    border-radius: 2px;
    width: 0%;
    animation: progressFill 3s ease-in-out forwards;
}

@keyframes progressFill {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.captcha-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    animation: resultFadeIn 0.5s ease 3s forwards;
}

@keyframes resultFadeIn {
    to {
        opacity: 1;
    }
}

.checkmark {
    width: 32px;
    height: 32px;
}

.checkmark-circle {
    stroke: #10b981;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: checkmarkCircle 0.6s ease 3s forwards;
}

@keyframes checkmarkCircle {
    to {
        stroke-dashoffset: 0;
    }
}

.checkmark-check {
    stroke: #10b981;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: checkmarkCheck 0.3s ease 3.6s forwards;
}

@keyframes checkmarkCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.captcha-result span {
    font-weight: 600;
    color: #10b981;
    font-size: 1rem;
}

.stats-overlay {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-unit {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    display: inline;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.captcha-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    animation: pillFloat 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

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

.feature-pill:hover::before {
    left: 100%;
}

.feature-pill:nth-child(1) {
    animation-delay: 0s;
}

.feature-pill:nth-child(2) {
    animation-delay: 0.5s;
}

.feature-pill:nth-child(3) {
    animation-delay: 1s;
}

.feature-pill:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes pillFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.feature-pill:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.pill-text {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
    .captcha-demo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .captcha-title {
        font-size: 2.5rem;
    }

    .stats-overlay {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cinema-screen {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .captcha-solver-showcase {
        padding: 4rem 0;
    }

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

    .captcha-subtitle {
        font-size: 1rem;
    }

    .captcha-features {
        flex-direction: column;
        align-items: stretch;
    }

    .feature-pill {
        justify-content: center;
    }
}

/* Hero Responsive Design */
@media (max-width: 968px) {
    .hero {
        min-height: 90vh;
        padding-top: 4rem;
    }

    .hero-logo {
        width: 240px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        gap: 1.5rem;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 85vh;
        padding-top: 3rem;
    }

    .hero-logo {
        width: 180px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Header Responsive Design */
@media (max-width: 968px) {
    .header-container {
        padding: 0.3rem 1.5rem;
    }

    .header-logo img {
        height: 70px;
    }

    .header-nav {
        gap: 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .header-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

    .user-info-header {
        padding: 0.45rem 1rem;
        gap: 1rem;
    }

    .user-name {
        font-size: 0.85rem;
    }

    .user-balance {
        font-size: 0.85rem;
        padding-left: 0.8rem;
    }

    .header-icon-btn {
        width: 34px;
        height: 34px;
    }

    .hero {
        padding-top: 150px;
    }
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .header-nav {
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .header-logo img {
        height: 50px;
    }

    .header-btn {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
    }

    .header-user {
        gap: 0.4rem;
        flex-wrap: nowrap;
    }

    .user-info-header {
        padding: 0.35rem 0.6rem;
        gap: 0.5rem;
        min-width: auto;
    }

    .user-name {
        font-size: 0.75rem;
        max-width: 70px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .user-balance {
        font-size: 0.75rem;
        padding-left: 0.5rem;
    }

    .header-icons {
        gap: 0.3rem;
    }

    .header-icon-btn {
        width: 30px;
        height: 30px;
    }

    .header-icon-btn i {
        font-size: 0.8rem;
    }

    .header-btn-logout {
        padding: 0.5rem 0.85rem;
        font-size: 0.8rem;
    }

    .hero {
        padding-top: 130px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0.3rem 0.75rem;
        gap: 0.5rem;
    }

    .header-container .mobile-menu-toggle {
        margin-right: 0.5rem;
    }

    .header-logo img {
        height: 60px;
    }

    .nav-actions {
        gap: 0.4rem;
    }

    .header-btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
    }

    .header-nav {
        gap: 0.5rem;
    }

    .header-user {
        gap: 0.4rem;
        flex-wrap: nowrap;
    }

    .user-info-header {
        padding: 0.5rem 0.85rem;
        gap: 0.5rem;
        flex-direction: row;
        align-items: center;
        min-width: auto;
    }

    .user-name {
        display: none;
    }

    .user-balance {
        font-size: 0.85rem;
        gap: 0.4rem;
        padding-left: 0;
        border-left: none;
        padding-top: 0;
        border-top: none;
        width: auto;
        font-weight: 600;
    }

    .user-balance i {
        font-size: 0.8rem;
    }

    .header-icons {
        gap: 0.4rem;
    }

    .header-icon-btn {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .header-icon-btn i {
        font-size: 0.95rem;
        line-height: 1;
        display: block;
    }

    .notification-badge {
        width: 7px;
        height: 7px;
        top: -3px;
        right: -3px;
    }

    .header-btn-logout .logout-text {
        display: none;
    }

    .header-btn-logout {
        padding: 0;
        gap: 0;
        width: 34px;
        height: 34px;
        min-width: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-btn-logout i {
        font-size: 0.9rem;
        margin: 0;
        line-height: 1;
        display: block;
    }

    .hero {
        padding-top: 120px;
    }
}

@media (max-width: 640px) {
    .header-container {
        padding: 0.25rem 0.5rem;
        gap: 0.4rem;
    }

    .header-logo img {
        height: 50px;
    }

    .nav-actions {
        gap: 0.4rem;
    }

    .header-btn {
        padding: 0.4rem 0.65rem;
        font-size: 0.7rem;
    }

    .header-user {
        gap: 0.35rem;
    }

    .user-info-header {
        padding: 0.45rem 0.75rem;
        gap: 0.4rem;
    }

    .user-balance {
        font-size: 0.8rem;
        gap: 0.35rem;
        font-weight: 600;
    }

    .user-balance i {
        font-size: 0.75rem;
    }

    .header-icons {
        gap: 0.35rem;
    }

    .header-icon-btn {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .header-icon-btn i {
        font-size: 0.9rem;
        line-height: 1;
        display: block;
    }

    .notification-badge {
        width: 6px;
        height: 6px;
        top: -2px;
        right: -2px;
        border-width: 1px;
    }

    .header-btn-logout .logout-text {
        display: none;
    }

    .header-btn-logout {
        padding: 0;
        width: 32px;
        height: 32px;
        min-width: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-btn-logout i {
        font-size: 0.85rem;
        margin: 0;
        line-height: 1;
        display: block;
    }

    .hero {
        padding-top: 110px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0rem 0.4rem;
        gap: 0.3rem;
        margin-bottom: 10px;
    }

    .header-logo img {
        height: 55px;
        margin-bottom: 5px;
    }

    .user-balance {
        font-size: 0.75rem;
        font-weight: 600;
    }

    .user-balance i {
        font-size: 0.7rem;
    }

    .user-info-header {
        padding: 0.4rem 0.65rem;
    }

    .header-icons {
        gap: 0.3rem;
    }

    .header-btn-logout .logout-text {
        display: none;
    }

    .header-btn-logout {
        width: 30px;
        height: 30px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-btn-logout i {
        font-size: 0.8rem;
        margin: 0;
        line-height: 1;
        display: block;
    }

    .header-icon-btn {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .header-icon-btn i {
        font-size: 0.8rem;
        line-height: 1;
        display: block;
    }
}

/* ============================================
   PRICING SECTION (Dashboard Style)
   ============================================ */

.pricing-section {
    padding: 8rem 0;
    background: #000000;
    width: 100%;
    overflow-x: hidden;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.pricing-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-duration {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.duration-btn {
    padding: 0.65rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.duration-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.duration-btn.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.pricing-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.pricing-category-btn {
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.pricing-category-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.pricing-category-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.pricing-content {
    display: none;
}

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

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.product-card.featured {
    border-color: rgba(255, 255, 255, 0.4);
}

.product-card.premium {
    border-color: rgba(255, 255, 255, 0.5);
}

.featured-label,
.premium-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 1rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-label {
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.5rem;
}

.product-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.product-tech {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.product-pricing {
    margin-bottom: 1.5rem;
}

.price-display {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
}

.price-period {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

.price-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.product-features li {
    padding: 0.65rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: '✓';
    margin-right: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.product-btn.primary {
    background: #ffffff;
    color: #000000;
}

.product-btn.primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.product-btn.secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.coming-soon-section {
    text-align: center;
    padding: 4rem 2rem;
}

.coming-soon-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.coming-soon-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Pricing Responsive */
@media (max-width: 968px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .pricing-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .pricing-section {
        padding: 4rem 0;
    }

    .pricing-header h2 {
        font-size: 2rem;
    }

    .pricing-duration {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .duration-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

    .pricing-categories {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }

    .price-amount {
        font-size: 2rem;
    }
}

/* ============================================
   BROWSER TECHNOLOGY SECTION
   ============================================ */

.browser-tech-section {
    padding: 8rem 0;
    background: #000000;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.browser-tech-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.tech-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.tech-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.tech-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.tech-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
}

.tech-levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.tech-level-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tech-level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.tech-level-card:hover::before {
    transform: translateX(100%);
}

.tech-level-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.tech-level-card.featured {
    border-color: rgba(255, 255, 255, 0.3);
}

.tech-level-card.premium {
    border-color: rgba(255, 255, 255, 0.4);
}

.featured-marker,
.premium-marker {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.premium-marker {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.level-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.level-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -1px;
}

.level-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.level-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.level-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.level-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    padding: 0.4rem 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.tech-level-card:hover .feature-tag {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Browser Tech Responsive */
@media (max-width: 1200px) {
    .tech-levels-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 968px) {
    .browser-tech-section {
        padding: 6rem 0;
    }

    .tech-main-title {
        font-size: 2.8rem;
    }

    .tech-subtitle {
        font-size: 1.1rem;
    }

    .tech-levels-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tech-level-card {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .browser-tech-section {
        padding: 4rem 0;
    }

    .tech-main-title {
        font-size: 2.2rem;
    }

    .tech-subtitle {
        font-size: 1rem;
    }

    .badge-line {
        width: 40px;
    }

    .level-badge {
        padding: 0.85rem 1.25rem;
    }

    .level-number {
        font-size: 2rem;
    }

    .level-content h3 {
        font-size: 1.2rem;
    }

    .level-content p {
        font-size: 0.9rem;
    }
}

/* Global Overflow Fix */
@media (max-width: 640px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

/* Admin 
Layout - Same as Dashboard Layout */
.admin-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 90px;
}

.admin-main {
    display: flex;
    flex: 1;
}

.admin-content {
    flex: 1;
    padding: 2rem;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    overflow-y: auto;
    height: calc(100vh - 90px);
}

.admin-content .container {
    max-width: none;
}

/* Admin Responsive */
@media (max-width: 768px) {
    .admin-layout {
        flex-direction: column;
    }

    .admin-main {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }
}

/* Sidebar Category */
.sidebar-category {
    padding: 1rem 1rem 0.5rem;
}

.sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 1rem 0.5rem;
}

.category-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 0.5rem;
}

/* Admin Page Header */
.admin-page-header {
    margin-bottom: 2rem;
}

.admin-page-header h1 {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-page-header h1 i {
    color: rgba(255, 255, 255, 0.7);
}

.admin-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
}

.admin-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    background: rgba(52, 152, 219, 0.15);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 8px;
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: rgba(52, 152, 219, 0.25);
    border-color: rgba(52, 152, 219, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.admin-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-select {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-select:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.admin-table-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: rgba(255, 255, 255, 0.05);
}

.admin-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.admin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.admin-table tbody tr:last-child {
    border-bottom: none;
}

.admin-table td {
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    vertical-align: middle;
}

.post-title-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-thumb {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-title-cell strong {
    display: block;
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.95);
}

.post-title-cell small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.status-badge.published {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

/* Integration Enterprise Section */
.integration-enterprise-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    color: #000000;
    padding: 8rem 2rem;
    overflow: hidden;
}

.integration-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.integration-enterprise-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 6rem;
}

.integration-enterprise-header {
    margin-bottom: 4rem;
}

.integration-label {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.integration-enterprise-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 2rem 0;
    letter-spacing: -0.03em;
    color: #000000;
}

.integration-enterprise-description {
    font-size: clamp(1.125rem, 1.8vw, 1.4rem);
    font-weight: 300;
    line-height: 1.6;
    margin: 0 auto 3rem;
    max-width: 700px;
    color: rgba(0, 0, 0, 0.65);
}

.integration-sdk-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
}

.sdk-commands {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.sdk-command-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.sdk-language {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    min-width: 140px;
}

.sdk-install {
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    color: #000000;
    font-weight: 500;
    flex: 1;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sdk-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.sdk-note i {
    color: #fbbf24;
}

/* Browser Extension Showcase */
.integration-browser-showcase {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.browser-extension-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 2rem;
}

.browser-extension-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    font-size: 3rem;
    color: #000000;
    flex-shrink: 0;
}

.browser-extension-text {
    flex: 1;
    text-align: left;
    max-width: 500px;
}


.browser-extension-text p {
    font-size: clamp(1.125rem, 1.8vw, 1.4rem);
    font-weight: 300;
    line-height: 1.6;
    margin: 0 auto 3rem;
    max-width: 700px;
    color: rgba(0, 0, 0, 0.65);
}

.browser-extension-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.browser-extension-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.browser-extension-link i {
    transition: transform 0.3s ease;
}

.browser-extension-link:hover i {
    transform: translateX(3px);
}

/* Responsive Design for Integration Section */
@media (max-width: 768px) {
    .integration-enterprise-section {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .integration-enterprise-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .integration-enterprise-description {
        font-size: 1.1rem;
    }

    .integration-sdk-box {
        padding: 2rem 1.5rem;
    }

    .sdk-commands {
        gap: 1rem;
    }

    .sdk-command-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .sdk-language {
        min-width: auto;
        font-size: 0.8rem;
    }

    .sdk-install {
        width: 100%;
        text-align: left;
        font-size: 0.9rem;
    }

    .browser-extension-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }

    .browser-extension-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .browser-extension-text {
        max-width: none;
    }


    .browser-extension-text p {
        font-size: 1.1rem;
        max-width: none;
        margin: 0 0 2rem 0;
    }
}

@media (max-width: 480px) {
    .integration-enterprise-section {
        padding: 3rem 1rem;
    }

    .integration-label {
        padding: 0.5rem 1.5rem;
        font-size: 0.8rem;
    }

    .integration-enterprise-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .integration-enterprise-description {
        font-size: 1rem;
    }

    .integration-sdk-box {
        padding: 1.5rem 1rem;
    }

    .sdk-note {
        font-size: 0.8rem;
    }

    .browser-extension-content {
        padding: 2rem 1rem;
    }

    .browser-extension-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }


    .browser-extension-text p {
        font-size: 1rem;
    }

    .browser-extension-link {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
}

/* Footer BBRE Style Section */
.footer-bbre-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    color: #000000;
    padding: 8rem 2rem;
    overflow: hidden;
}

.footer-bbre-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.footer-brand-area {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-bbre-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 3rem 0;
    letter-spacing: -0.03em;
    color: #000000;
}

.footer-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-nav-tab {
    color: #000000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav-tab:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
}

.footer-link {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-link:hover {
    color: #000000;
    transform: translateX(4px);
}

.footer-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-logo {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-top: -1px;
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.footer-social-link i {
    font-size: 1.1rem;
}

/* Responsive Design for BBRE Footer */
@media (max-width: 768px) {
    .footer-bbre-section {
        padding: 2.5rem 1.5rem;
        min-height: auto;
    }

    .footer-bbre-content {
        gap: 1.5rem;
    }

    .footer-brand-area {
        margin-bottom: 1rem;
    }

    .footer-bbre-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .footer-nav-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 1.25rem;
    }

    .footer-nav-tab {
        font-size: 0.8rem;
        padding: 0.6rem 0.4rem;
        text-align: center;
        width: 100%;
        display: block;
    }

    .footer-nav-tab:nth-child(5) {
        grid-column: 2;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 1.25rem auto;
        max-width: 100%;
        justify-items: center;
    }

    .footer-links-column {
        text-align: center;
        gap: 0.5rem;
        width: 100%;
    }

    .footer-column-title {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
        font-weight: 600;
    }

    .footer-link {
        font-size: 0.85rem;
        padding: 0.1rem 0;
        line-height: 1.4;
    }

    .footer-bottom-section {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding-top: 1.25rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-bbre-section {
        padding: 2rem 1rem;
    }

    .footer-bbre-content {
        gap: 1.25rem;
    }

    .footer-brand-area {
        margin-bottom: 0.75rem;
    }

    .footer-bbre-title {
        font-size: clamp(3.5rem, 16vw, 5rem);
        margin-bottom: 0.75rem;
    }

    .footer-nav-tabs {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
        margin-bottom: 1rem;
        max-width: 100%;
    }

    .footer-nav-tab {
        font-size: 0.75rem;
        padding: 0.5rem 0.3rem;
    }

    .footer-nav-tab:nth-child(5) {
        grid-column: 2;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin: 1rem auto;
        max-width: 100%;
        justify-items: center;
    }

    .footer-links-column {
        text-align: center;
        gap: 0.4rem;
        width: 100%;
    }

    .footer-column-title {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .footer-link {
        font-size: 0.8rem;
        padding: 0.08rem 0;
        line-height: 1.3;
    }

    .footer-bottom-section {
        gap: 0.5rem;
        padding-top: 1rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

.status-badge.draft {
    background: rgba(241, 196, 15, 0.15);
    color: #f1c40f;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.status-badge.archived {
    background: rgba(149, 165, 166, 0.15);
    color: #95a5a6;
    border: 1px solid rgba(149, 165, 166, 0.3);
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transform: translateY(-2px);
}

.btn-icon.btn-danger {
    background: transparent;
}

.btn-icon.btn-danger:hover {
    background: rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.admin-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Staff Badge */
.staff-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 0.5rem;
    padding: 0.3rem 0.7rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    vertical-align: middle;
}

.staff-badge::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: bold;
}

.staff-badge-small {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 0.4rem;
    padding: 0.25rem 0.6rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 3px;
    letter-spacing: 0.2px;
    vertical-align: middle;
    transition: all 0.2s ease;
}

.staff-badge-small::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: bold;
}

/* ============================================
   REGISTER - EMAIL VERIFICATION STYLES
   ============================================ */

/* Register Slider Container */
.register-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.register-step {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.register-step.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.register-step.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

.register-step.slide-in-right {
    transform: translateX(0);
    opacity: 1;
}

/* Back Button */
.back-button {
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-2px);
}

/* Verification Code Container */
.verification-code-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 30px 0;
}

.code-input {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
}

.code-input:focus {
    outline: none;
    border-color: #4a9eff;
    background: rgba(74, 158, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(74, 158, 255, 0.1);
    transform: scale(1.05);
}

.code-input:not(:placeholder-shown) {
    border-color: #4a9eff;
    background: rgba(74, 158, 255, 0.05);
}

/* Resend Code Section */
.resend-code-section {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.resend-code-section p {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}

.resend-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #4a9eff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.resend-btn:hover:not(:disabled) {
    background: rgba(74, 158, 255, 0.1);
    border-color: #4a9eff;
    transform: translateY(-2px);
}

.resend-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Success Message */
.auth-success-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 10px;
    color: #22c55e;
    font-size: 14px;
    margin-bottom: 20px;
    animation: slideDown 0.3s ease;
}

.auth-success-message i {
    font-size: 18px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .verification-code-container {
        gap: 8px;
    }

    .code-input {
        width: 42px;
        height: 52px;
        font-size: 20px;
    }

    .auth-form-header h2 {
        font-size: 22px;
    }

    .back-button {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .verification-code-container {
        gap: 6px;
    }

    .code-input {
        width: 38px;
        height: 48px;
        font-size: 18px;
    }
}


/* Subtype Pricing Warning */
.subtype-warning {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding: 0.5rem 0.6rem;
    background: rgba(241, 196, 15, 0.08);
    border: 1px solid rgba(241, 196, 15, 0.15);
    border-radius: 6px;
    font-size: 0.72rem;
    color: rgba(241, 196, 15, 0.9);
}

.subtype-warning i {
    font-size: 0.7rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.subtype-warning-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.subtype-warning-title {
    font-weight: 600;
    color: #f1c40f;
}

.subtype-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.2rem;
}

.subtype-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.7rem;
}

.subtype-name {
    color: rgba(255, 255, 255, 0.8);
    text-transform: capitalize;
}

.subtype-price {
    color: #3498db;
    font-weight: 600;
}

.price-cosmic .subtype-warning {
    margin-top: 0.5rem;
}