:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #00ff88; /* Modern neon green */
    --accent-glow: rgba(0, 255, 136, 0.4);
    --secondary-text: #a0a0a0;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor for custom one */
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    background-image: 
        linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.5) 40%, rgba(10, 10, 10, 0.85) 70%, var(--bg-color) 100%),
        url('omniwsp-bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline.hovered {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 255, 136, 0.1);
    border-color: transparent;
}

/* Navbar */
.navbar {
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo img {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    object-fit: cover;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.5px;
    color: #000000;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.logo-text span {
    color: #25D366;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(37, 211, 102, 0.3);
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 580px;
}

.hero-downloads .hero-content {
    max-width: 720px;
}

.hero-downloads .hero-subtitle {
    margin-bottom: 1rem;
}

.hero-downloads .hero-note {
    margin-top: 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 800px;
    text-shadow: 0 2px 20px rgba(0, 255, 136, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-note {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-top: 1rem;
    opacity: 0.7;
}

/* Download Button */
.download-btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-color);
    background-color: var(--accent-color);
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--accent-glow);
}

.download-btn:active {
    transform: translateY(0);
}

.download-btn.large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.download-btn.is-disabled {
    background-color: #2a2a2a;
    color: #666666;
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
}

.platform-status {
    margin-top: 1rem;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.platform-status.available {
    background: rgba(0, 255, 136, 0.15);
    color: var(--accent-color);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.platform-status.upcoming {
    background: rgba(255, 255, 255, 0.05);
    color: #777777;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Background Decoration */
.circle-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.05) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

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

/* Section Styles */
section {
    padding: 3rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary-text);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.section-description strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Problem Section */
.problem-section {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(10, 10, 10, 0.5) 50%, rgba(0,0,0,0) 100%);
}

.problem-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    margin: 1.5rem auto;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.problem-card.highlight {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.2);
}

.problem-card.highlight:hover {
    background: rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.problem-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.problem-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.problem-text p {
    color: var(--secondary-text);
    line-height: 1.6;
}

/* Features Section */
.features-section {
    position: relative;
}

.downloads-section {
    padding-top: 2rem;
}

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

.features-grid.download-grid {
    gap: 2.5rem;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.downloads-actions {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .features-grid.download-grid {
        grid-template-columns: 1fr;
    }

    .downloads-section {
        padding-top: 1.5rem;
    }

    .downloads-actions {
        margin-top: 2rem;
    }

    body {
        background-position: left top;
        background-size: auto 100vh;
    }
}

.feature-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    cursor: pointer;
}

.chart-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: var(--font-main);
    cursor: pointer;
    outline: none;
}

.chart-select:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.chart-select option {
    background: #1a1a1a;
    color: var(--text-color);
}

.chart-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2px);
    border-radius: 12px;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.chart-loading.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.chart-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Stats Page */
.stats-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem 2rem;
}

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

.stats-summary-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    text-align: left;
}

.stats-summary-card h3 {
    font-size: 1rem;
    color: var(--secondary-text);
    margin-bottom: 0.75rem;
}

.stats-summary-card strong {
    font-size: 2rem;
    color: var(--text-color);
}

.stats-section {
    margin-top: 4rem;
}

.stats-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.stats-table-wrapper {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

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

.stats-table th,
.stats-table td {
    padding: 0.9rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-table tbody tr:hover {
    background: rgba(0, 255, 136, 0.05);
}

.stats-top-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.stats-top-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.5rem;
}

.stats-top-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.stats-top-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.stats-top-card li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--secondary-text);
}

.stats-top-card li span {
    color: var(--text-color);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 255, 136, 0.12);
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.85rem;
}

.empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--secondary-text);
}

.download-grid .feature-card {
    cursor: default;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.15);
}

.download-grid .feature-card:hover {
    transform: translateY(-6px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.platform-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.platform-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--accent-color);
}

.download-grid .feature-card.unavailable .platform-icon svg {
    fill: rgba(255, 255, 255, 0.25);
}

.download-grid .feature-card.unavailable h3,
.download-grid .feature-card.unavailable p {
    color: var(--secondary-text);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--secondary-text);
    line-height: 1.6;
}

/* Use Cases Section */
.use-cases-section {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(10, 10, 10, 0.5) 50%, rgba(0,0,0,0) 100%);
}

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

.use-case-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 136, 0.3);
    transform: scale(1.05);
}

.use-case-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.use-case-card p {
    color: var(--secondary-text);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 6rem 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin-bottom: 2.5rem;
}

.platform-note {
    font-size: 0.95rem;
    color: var(--accent-color);
    margin-top: 1.5rem;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer {
    font-size: 0.85rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.disclaimer strong {
    color: #888;
    font-weight: 600;
}

.disclaimer a {
    color: #ffffff;
    text-decoration: underline;
}

.disclaimer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}


/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .features-grid, .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .cursor-dot, .cursor-outline {
        display: none; /* Hide custom cursor on touch devices usually, but keeping simple for now */
    }
    
    * {
        cursor: auto;
    }
}

/* AdSense Ad Section Styles */
.ad-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(10, 10, 10, 0.3) 50%, rgba(0,0,0,0) 100%);
}

.ad-container-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.adsbygoogle {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}
