/* Cyber/Tech Review Theme - High End */
:root {
    --bg-dark: #050505;
    --bg-card: rgba(15, 15, 18, 0.6);
    --text-main: #E0E0E0;
    --text-muted: #888899;

    --primary: #00F2EA;
    /* Neon Cyan */
    --secondary: #FF0050;
    /* Neon Pink/Red */
    --accent: #7000FF;
    /* Deep Violet */

    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 242, 234, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* cursor: none !important; REMOVED FOR USABILITY SAFETY */
    /* Custom Cursor */
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 242, 234, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 9998;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

/* Hover States for Cursor */
body:hover .cursor-outline.hovered {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 234, 0.1);
    border-color: var(--primary);
}

/* Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    opacity: 0.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* Header & Nav */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 2rem 0;
    z-index: 100;
    transition: transform 0.3s;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 2rem;
}

.hero-content {
    max-width: 1000px;
    z-index: 2;
}

.hero h1 {
    font-size: 7vw;
    /* Massive scaling text */
    line-height: 0.9;
    margin-bottom: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Text Reveal Masks */
.reveal-text {
    opacity: 1;
    /* Safety: Visible by default */
    transform: translateY(0);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 3.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--primary);
    color: black;
    border-color: var(--primary);
}

/* Container & Sections */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin: 10rem 0 6rem;
}

.section-header h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Cards */
.camera-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.camera-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.image-wrapper {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.camera-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.camera-card:hover .camera-image {
    transform: scale(1.05);
}

.camera-content {
    padding: 2.5rem;
}

.camera-badge {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.camera-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.camera-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: white;
    opacity: 0.8;
    font-weight: 700;
    display: block;
    margin-bottom: 2rem;
}

.camera-description {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Spec Bars */
.specs-visuals {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-bar-container {
    width: 100%;
}

.spec-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
    font-weight: 500;
}

.spec-bar-bg {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.spec-bar-fill {
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.amazon-button {
    display: block;
    width: 100%;
    padding: 1.2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 12px;
    transition: all 0.3s;
}

.amazon-button:hover {
    background: white;
    color: black;
}

/* Table */
.comparison-table-wrapper {
    margin-top: 5rem;
    border-top: 1px solid var(--border-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

th,
td {
    padding: 2rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}

th {
    color: white;
    text-transform: uppercase;
    font-size: 0.9rem;
}

td strong {
    color: white;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 6rem 0 2rem;
    margin-top: 8rem;
    background: black;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
}

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

.footer-section a {
    color: #666;
    text-decoration: none;
    line-height: 2;
}
}
}