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

html {
    scroll-behavior: smooth;
}

/* Screen reader only - for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    min-height: 100vh;
    background: #000000;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.nav-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
}

.nav-lad {
    color: #ffffff;
}

.nav-nix {
    color: #00d4ff;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00d4ff;
}

.nav-cta {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    padding: 0.5rem 1.2rem !important;
    border-radius: 25px;
    color: #000 !important;
    font-weight: 600;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-hamburger span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem;
    text-align: center;
}

/* Home page hero */
.home-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    z-index: 10;
}

/* Sub pages */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
    padding: 100px 2rem 4rem;
}

.nav-links a.active {
    color: #00d4ff;
}

/* Mascot */
.mascot {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: #00d4ff;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
    animation: mascot-float 3s ease-in-out infinite;
}

.mascot svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.2;
}

@keyframes mascot-float {

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

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

.logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: clamp(3rem, 12vw, 6rem);
    font-weight: bold;
    letter-spacing: 0.02em;
    position: relative;
    cursor: default;
}

.logo-lad {
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6);
    animation: pulse-white 3s ease-in-out infinite;
}

.logo-nix {
    color: #00d4ff;
    text-shadow:
        0 0 10px rgba(0, 212, 255, 0.8),
        0 0 20px rgba(0, 212, 255, 0.6),
        0 0 40px rgba(0, 212, 255, 0.4);
    animation: pulse-cyan 3s ease-in-out infinite;
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-pulse 4s ease-in-out infinite;
}

.tagline {
    margin-top: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(0.8rem, 3vw, 1.2rem);
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-subtitle {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
}

.btn-full {
    width: 100%;
}

/* Section Content */
.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
}

.highlight {
    color: #00d4ff;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s;
}

.about-card:hover {
    border-color: #00d4ff;
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.about-card p,
.about-card li {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.about-card ul {
    list-style: none;
}

.about-card li::before {
    content: "→ ";
    color: #00d4ff;
}

/* Core Principles */
.core-principles {
    margin-top: 3rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.principle {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.principle:hover {
    border-color: #00d4ff;
    transform: translateY(-3px);
}

.principle-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.principle h4 {
    font-family: 'Orbitron', sans-serif;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.principle p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Comparison Table */
.features-section {
    margin-top: 3rem;
}

.features-title {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1rem 1.5rem;
}

.table-header {
    background: rgba(0, 212, 255, 0.1);
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
}

.table-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.table-row:hover {
    background: rgba(0, 212, 255, 0.05);
}

.positive {
    color: #00d4ff;
}

.negative {
    color: rgba(255, 255, 255, 0.4);
}

/* News Section */
.news-timeline {
    position: relative;
    padding-left: 2rem;
}

.news-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00d4ff, transparent);
}

.news-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.news-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d4ff;
}

.news-date {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.news-content ul {
    list-style: none;
    color: rgba(255, 255, 255, 0.7);
}

.news-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.news-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}



/* Roadmap */
.roadmap-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.roadmap-phase {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(138, 43, 226, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s;
}

.roadmap-phase:hover {
    border-color: #00d4ff;
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(138, 43, 226, 0.12));
}

.roadmap-phase h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.roadmap-phase p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.roadmap-phase ul {
    list-style: none;
    color: rgba(255, 255, 255, 0.7);
}

.roadmap-phase li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    padding-left: 1.2rem;
    position: relative;
}

.roadmap-phase li::before {
    content: "→";
    color: #00d4ff;
    position: absolute;
    left: 0;
}

.phase-status {
    display: inline-block;
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.phase-status.active {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #000;
    border: none;
}

/* Legacy roadmap-item (keep for backwards compatibility) */
.roadmap-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.roadmap-item:hover {
    border-color: #00d4ff;
    transform: translateY(-5px);
}

.roadmap-version {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.roadmap-quarter {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.roadmap-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.roadmap-item ul {
    list-style: none;
    color: rgba(255, 255, 255, 0.7);
}

.roadmap-item li {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.roadmap-item li::before {
    content: "• ";
    color: #00d4ff;
}

/* Forms */
.form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00d4ff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select option {
    background: #111;
    color: #fff;
}

/* Pricing Page */
.pricing-coming-soon {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    margin-bottom: 3rem;
}

.pricing-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.pricing-coming-soon h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.pricing-coming-soon p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.pricing-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem !important;
}

.pricing-info h3 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.pricing-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.pricing-feature:hover {
    border-color: #00d4ff;
    transform: translateY(-3px);
}

.pricing-feature .feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.pricing-feature h4 {
    font-family: 'Orbitron', sans-serif;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.pricing-feature p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Thank You Page */
.thank-you-container {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-message {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.thank-you-note {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.thank-you-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
}

.form-success.active {
    display: block;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.form-success p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.success-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00d4ff;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: #00d4ff;
    transform: scale(1.1);
}

.footer-social svg {
    width: 24px;
    height: 24px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(0, 212, 255, 0.6);
    border-radius: 50%;
    animation: float 15s infinite;
}

/* Animations */
@keyframes pulse-white {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
    }

    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 255, 255, 0.8), 0 0 60px rgba(255, 255, 255, 0.6);
    }
}

@keyframes pulse-cyan {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(0, 212, 255, 0.8), 0 0 20px rgba(0, 212, 255, 0.6), 0 0 40px rgba(0, 212, 255, 0.4);
    }

    50% {
        text-shadow: 0 0 20px rgba(0, 212, 255, 1), 0 0 40px rgba(0, 212, 255, 0.8), 0 0 80px rgba(0, 212, 255, 0.6);
    }
}

@keyframes glow-pulse {

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

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .section {
        padding: 80px 1rem 3rem;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 0.8rem;
        padding: 0.8rem;
    }

    .form {
        padding: 1.5rem;
    }

    .footer-links {
        gap: 1rem;
    }
}

/* SEO Content Section */
.seo-content {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    padding: 4rem 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.seo-container {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #00d4ff;
    margin-bottom: 2rem;
    text-align: center;
}

.seo-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.seo-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.seo-feature {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.seo-feature:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.seo-feature h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #00d4ff;
    margin-bottom: 0.75rem;
}

.seo-feature p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .seo-content {
        padding: 3rem 1rem;
    }

    .seo-content h2 {
        font-size: 1.5rem;
    }
}

/* =========================================
   Cookie Consent Optimization Styles 
   Merged from cookie-consent.css for better SEO performance
   ========================================= */

/* Make the banner more prominent and user-friendly */
#cookieyes-consent-banner {
    font-family: 'Inter', sans-serif !important;
    box-shadow: 0 -4px 20px rgba(0, 212, 255, 0.15) !important;
}

/* Ensure equal prominence for Accept and Reject buttons (GDPR requirement) */
.cky-btn-accept,
.cky-btn-reject {
    font-weight: 600 !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    min-width: 120px !important;
}

/* Accept button - cyan gradient matching site design */
.cky-btn-accept {
    background: linear-gradient(135deg, #00d4ff, #0099cc) !important;
    color: #000 !important;
    border: none !important;
}

.cky-btn-accept:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4) !important;
}

/* Reject button - equal visual weight (GDPR compliance) */
.cky-btn-reject {
    background: transparent !important;
    color: #00d4ff !important;
    border: 2px solid #00d4ff !important;
}

.cky-btn-reject:hover {
    background: rgba(0, 212, 255, 0.1) !important;
}

/* Settings button */
.cky-btn-customize {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: underline !important;
    font-size: 13px !important;
}

.cky-btn-customize:hover {
    color: #00d4ff !important;
}

/* Banner text styling for better readability */
.cky-notice-des,
.cky-notice-des p {
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.6 !important;
    font-size: 14px !important;
}

/* Category toggle switches - cyan accent */
.cky-switch input:checked+.cky-slider {
    background-color: #00d4ff !important;
}

/* Persistent reminder for users who haven't made a choice */
.cky-consent-bar {
    animation: slideUp 0.4s ease-out !important;
}

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

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

/* Make category descriptions clearer */
.cky-accordion-header-des {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 13px !important;
}

/* Improve modal readability on dark background */
.cky-modal {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px) !important;
}

.cky-preference-content-wrapper {
    background: rgba(20, 20, 20, 0.98) !important;
    border: 1px solid rgba(0, 212, 255, 0.2) !important;
}

/* Tab styling */
.cky-tab-item.cky-active {
    border-bottom: 2px solid #00d4ff !important;
    color: #00d4ff !important;
}

.seo-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}


/* SEO Landing Pages */
.seo-landing {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.seo-article {
    margin-top: 2rem;
}

.seo-article p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.seo-article h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: #00d4ff;
    margin: 2.5rem 0 1.5rem 0;
}

.seo-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.seo-list li {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.seo-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00d4ff;
}

.seo-list li strong {
    color: #ffffff;
}

.cta-section {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .seo-landing {
        padding: 1rem;
    }

    .seo-article p {
        font-size: 1rem;
    }

    .cta-section {
        flex-direction: column;
    }

    .cta-section .btn {
        width: 100%;
        text-align: center;
    }
}


/* Product Page Styles */
.product-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
}

.product-section {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.product-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.product-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 800px;
}

.product-image-container {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
}

.product-image {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

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

.product-feature {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.product-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.product-feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Logo in navbar and footer */
.nav-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

/* Language Selector */
.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.language-current {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s;
}

.language-current:hover {
    background: rgba(0, 212, 255, 0.1);
}

.language-flag {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 150px;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.language-dropdown.active {
    display: flex;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s;
    color: #ffffff;
    text-decoration: none;
}

.language-option:hover {
    background: rgba(0, 212, 255, 0.2);
}

.language-option.active {
    background: rgba(0, 212, 255, 0.15);
    border-left: 3px solid #00d4ff;
}

.language-name {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .product-section {
        padding: 1.5rem;
    }

    .product-heading {
        font-size: 1.4rem;
    }

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

    .language-selector {
        margin-left: 0;
    }
}