/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #F5F9FC;
    background: linear-gradient(135deg, #0A0E1A 0%, #1C2333 25%, #2A1A3D 50%, #1C2333 75%, #0A0E1A 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Container and layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

/* Header */
.header {
    padding: 2rem 0;
    animation: fadeInDown 0.8s ease-out;
}

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

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(121, 94, 255, 0.3));
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(121, 94, 255, 0.5));
}

.logo img {
    border-radius: 8px;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #F5F9FC, #795EFF, #A64DFF);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    animation: shimmer 3s ease-in-out infinite;
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.hero-section {
    text-align: center;
    max-width: 1200px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}



/* Hero title */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(121, 94, 255, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #795EFF 0%, #A64DFF 50%, #D946EF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 200%;
}

/* Hero description */
.hero-description {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(245, 249, 252, 0.9);
    margin-bottom: 3.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(121, 94, 255, 0.05) 0%, rgba(166, 77, 255, 0.03) 50%, rgba(121, 94, 255, 0.05) 100%);
    border: 1px solid rgba(121, 94, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(121, 94, 255, 0.1);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-description::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(121, 94, 255, 0.2), rgba(166, 77, 255, 0.1), rgba(121, 94, 255, 0.2));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.5;
    animation: shimmer 3s ease-in-out infinite;
}

/* Feature Showcase */
.feature-showcase {
    margin-bottom: 3rem;
    position: relative;
}

.showcase-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.showcase-section {
    display: none;
    animation: fadeInUp 0.5s ease-out;
    min-height: 600px;
    overflow-y: auto;
    padding-bottom: 2rem;
}

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

.showcase-header {
    text-align: center;
    margin-bottom: 2rem;
}

.showcase-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F5F9FC;
    margin-bottom: 0.5rem;
}

.showcase-header p {
    color: rgba(245, 249, 252, 0.8);
    font-size: 1rem;
}

/* Network Visualization */
.network-visualization {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Prevent overflow */
    padding: 2rem; /* Add padding to prevent cutoff */
    box-sizing: border-box;
}

.network-visualization::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 1px solid rgba(121, 94, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.network-visualization::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 1px solid rgba(121, 94, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.central-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}



.node-icon {
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
    color: #795EFF;
}

.node-icon svg {
    filter: drop-shadow(0 0 10px rgba(121, 94, 255, 0.3));
}

.node-label {
    font-size: 0.9rem;
    color: rgba(245, 249, 252, 0.8);
    font-weight: 500;
}

.app-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.app-node {
    position: absolute;
    text-align: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s ease;
    animation: floatAround 8s ease-in-out infinite;
    animation-delay: var(--delay);
    padding: 0.5rem;
   /* background: rgba(255, 255, 255, 0.05); */
    border-radius: 12px;
   /* border: 1px solid rgba(255, 255, 255, 0.1); */
    /* backdrop-filter: blur(10px); */
    min-width: 80px;
}

.app-node.visible {
    opacity: 1;
    transform: scale(1);
}

.app-node.floating {
    animation: floatAround 12s ease-in-out infinite;
    animation-delay: var(--delay);
}

/* Different speeds for each ring */
.app-node:nth-child(1),
.app-node:nth-child(2),
.app-node:nth-child(3),
.app-node:nth-child(4) {
    animation-duration: 8s; /* Inner ring - faster */
}

.app-node:nth-child(5),
.app-node:nth-child(6),
.app-node:nth-child(7),
.app-node:nth-child(8) {
    animation-duration: 12s; /* Middle ring - medium */
}

.app-node:nth-child(9),
.app-node:nth-child(10),
.app-node:nth-child(11),
.app-node:nth-child(12) {
    animation-duration: 16s; /* Outer ring - slower */
}

/* Structured orbital positioning - 3 concentric rings with better spacing and no cutoff */
/* Using margin for centering to avoid transform conflicts with animations */
/* Inner ring (closest to workspace) */
.app-node:nth-child(1) { top: 15%; left: 25%; margin-left: -40px; margin-top: -20px; }
.app-node:nth-child(2) { top: 15%; left: 75%; margin-left: -40px; margin-top: -20px; }
.app-node:nth-child(3) { top: 45%; left: 15%; margin-left: -40px; margin-top: -20px; }
.app-node:nth-child(4) { top: 45%; left: 85%; margin-left: -40px; margin-top: -20px; }

/* Second ring */
.app-node:nth-child(5) { top: 5%; left: 50%; margin-left: -40px; margin-top: -20px; }
.app-node:nth-child(6) { top: 25%; left: 10%; margin-left: -40px; margin-top: -20px; }
.app-node:nth-child(7) { top: 25%; left: 90%; margin-left: -40px; margin-top: -20px; }
.app-node:nth-child(8) { top: 65%; left: 25%; margin-left: -40px; margin-top: -20px; }
.app-node:nth-child(9) { top: 65%; left: 75%; margin-left: -40px; margin-top: -20px; }

/* Third ring (outer) */
.app-node:nth-child(10) { top: 85%; left: 50%; margin-left: -40px; margin-top: -20px; }
.app-node:nth-child(11) { top: 80%; left: 20%; margin-left: -40px; margin-top: -20px; }
.app-node:nth-child(12) { top: 80%; left: 80%; margin-left: -40px; margin-top: -20px; }

.app-icon {
    margin-bottom: 0.25rem;
    color: rgba(245, 249, 252, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon svg {
    filter: drop-shadow(0 0 8px rgba(121, 94, 255, 0.2));
    transition: all 0.3s ease;
}

.app-node.visible .app-icon svg {
    filter: drop-shadow(0 0 12px rgba(121, 94, 255, 0.4));
}

.app-node.floating .app-icon {
    color: var(--app-color);
}

.app-node.floating .app-icon svg {
    filter: drop-shadow(0 0 12px var(--app-color));
    transition: all 0.3s ease;
}

.app-node.floating:hover .app-icon svg {
    filter: drop-shadow(0 0 20px var(--app-color));
    transform: scale(1.2);
}

.app-name {
    font-size: 0.8rem;
    color: rgba(245, 249, 252, 0.9);
    font-weight: 500;
}

/* Risk Dashboard */
.risk-dashboard {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 400px;
}

.risk-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #795EFF, #A64DFF);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #795EFF;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(245, 249, 252, 0.8);
    margin-bottom: 0.5rem;
}

.metric-trend {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.metric-trend.positive {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.metric-trend.negative {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

.metric-trend.neutral {
    background: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
}

.risk-visualization {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex: 1;
    flex-wrap: wrap;
    min-height: 300px;
    margin-top: 1rem;
}

.risk-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.chart-label {
    font-size: 1rem;
    color: rgba(245, 249, 252, 0.8);
    font-weight: 500;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 1.5rem;
    height: 200px;
}

.chart-bar {
    width: 50px;
    background: linear-gradient(to top, #EF4444, #F59E0B, #10B981);
    border-radius: 6px 6px 0 0;
    transition: height 1s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 0.5rem;
}

.chart-bar.high { 
    background: linear-gradient(to top, #EF4444, #DC2626);
    height: 0%;
}

.chart-bar.medium { 
    background: linear-gradient(to top, #F59E0B, #D97706);
    height: 0%;
}

.chart-bar.low { 
    background: linear-gradient(to top, #10B981, #059669);
    height: 0%;
}

.bar-label {
    font-size: 0.8rem;
    color: rgba(245, 249, 252, 0.8);
    margin-bottom: 0.25rem;
}

.bar-value {
    font-size: 1rem;
    font-weight: 600;
    color: #F5F9FC;
}

.security-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #10B981 0deg, #10B981 306deg, rgba(255, 255, 255, 0.1) 306deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.score-circle::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(28, 35, 51, 0.9);
}

.score-value {
    font-size: 2rem;
    font-weight: 700;
    color: #10B981;
    z-index: 1;
}

.score-label {
    font-size: 0.8rem;
    color: rgba(245, 249, 252, 0.8);
    text-align: center;
    margin-top: 0.5rem;
}

.score-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.score-category {
    font-size: 0.9rem;
    color: rgba(245, 249, 252, 0.8);
}

.score-points {
    font-size: 0.9rem;
    color: #10B981;
    font-weight: 600;
}

.risk-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #795EFF;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(245, 249, 252, 0.8);
}

.risk-chart {
    display: flex;
    align-items: end;
    gap: 1rem;
    height: 200px;
}

.chart-bar {
    width: 40px;
    background: linear-gradient(to top, #EF4444, #F59E0B, #10B981);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.chart-bar.high { background: linear-gradient(to top, #EF4444, #DC2626); }
.chart-bar.medium { background: linear-gradient(to top, #F59E0B, #D97706); }
.chart-bar.low { background: linear-gradient(to top, #10B981, #059669); }

/* Access Control */
.access-control {
    max-width: 600px;
    margin: 0 auto;
    max-height: 450px;
    overflow-y: auto;
}

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

.summary-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #795EFF;
    margin-bottom: 0.25rem;
}

.summary-label {
    font-size: 0.8rem;
    color: rgba(245, 249, 252, 0.8);
}

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

.app-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.app-item.high-risk {
    border-left: 4px solid #EF4444;
    background: rgba(239, 68, 68, 0.05);
}

.app-item.medium-risk {
    border-left: 4px solid #F59E0B;
    background: rgba(245, 158, 11, 0.05);
}

.app-item.low-risk {
    border-left: 4px solid #10B981;
    background: rgba(16, 185, 129, 0.05);
}

.app-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(121, 94, 255, 0.3);
}

.app-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-details .app-name {
    font-size: 1rem;
    font-weight: 600;
    color: #F5F9FC;
    margin-bottom: 0.25rem;
}

.app-permissions {
    font-size: 0.8rem;
    color: rgba(245, 249, 252, 0.7);
    margin-bottom: 0.25rem;
}

.risk-indicator {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.risk-indicator.high {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

.risk-indicator.medium {
    background: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
}

.risk-indicator.low {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

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

.action-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn.revoke {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.action-btn.revoke:hover {
    background: rgba(239, 68, 68, 0.3);
}

.action-btn.modify {
    background: rgba(121, 94, 255, 0.2);
    color: #795EFF;
    border: 1px solid rgba(121, 94, 255, 0.3);
}

.action-btn.modify:hover {
    background: rgba(121, 94, 255, 0.3);
}

.action-btn.details {
    background: rgba(245, 249, 252, 0.1);
    color: rgba(245, 249, 252, 0.8);
    border: 1px solid rgba(245, 249, 252, 0.2);
}

.action-btn.details:hover {
    background: rgba(245, 249, 252, 0.2);
}

/* Monitoring Dashboard */
.monitoring-dashboard {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 400px;
}

.monitoring-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #795EFF;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(245, 249, 252, 0.8);
}

/* Monitoring Feed */
.monitoring-feed {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.feed-header h4 {
    font-size: 1.1rem;
    color: #F5F9FC;
    font-weight: 600;
}

.feed-filter {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(245, 249, 252, 0.8);
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: rgba(121, 94, 255, 0.2);
    border-color: rgba(121, 94, 255, 0.3);
    color: #795EFF;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: slideInRight 0.5s ease-out;
    position: relative;
}

.activity-item.alert {
    border-left: 4px solid #EF4444;
    background: rgba(239, 68, 68, 0.05);
}

.activity-item.warning {
    border-left: 4px solid #F59E0B;
    background: rgba(245, 158, 11, 0.05);
}

.activity-item.success {
    border-left: 4px solid #10B981;
    background: rgba(16, 185, 129, 0.05);
}

.activity-item.info {
    border-left: 4px solid #3B82F6;
    background: rgba(59, 130, 246, 0.05);
}

.activity-item.discovery {
    border-left: 4px solid #8B5CF6;
    background: rgba(139, 92, 246, 0.05);
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(121, 94, 255, 0.3);
}

.activity-icon {
    margin-top: 0.1rem;
    color: rgba(245, 249, 252, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-icon svg {
    transition: all 0.3s ease;
}

.activity-item:hover .activity-icon {
    color: #795EFF;
}

.activity-content {
    flex: 1;
}

.activity-text {
    color: #F5F9FC;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.activity-details {
    color: rgba(245, 249, 252, 0.7);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.activity-time {
    color: rgba(245, 249, 252, 0.6);
    font-size: 0.8rem;
}

.activity-actions {
    display: flex;
    gap: 0.5rem;
}

/* Navigation */
.showcase-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #795EFF;
    transform: scale(1.2);
}

.nav-dot:hover {
    background: rgba(121, 94, 255, 0.6);
}

/* CTA section */
.cta-section {
    animation: fadeInUp 0.8s ease-out 1s both;
    background: linear-gradient(135deg, rgba(121, 94, 255, 0.1) 0%, rgba(166, 77, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(121, 94, 255, 0.2);
}

/* Waitlist Section */
.waitlist-section {
    margin: 2rem 0;
    text-align: center;
}

.waitlist-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #F5F9FC;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #795EFF 0%, #A64DFF 50%, #D946EF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.waitlist-description {
    color: rgba(245, 249, 252, 0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.waitlist-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #795EFF 0%, #A64DFF 50%, #D946EF 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(121, 94, 255, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.waitlist-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.waitlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(121, 94, 255, 0.5);
}

.waitlist-btn:hover::before {
    left: 100%;
}

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

.waitlist-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.waitlist-btn:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(121, 94, 255, 0.4);
}

.form-message {
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

.form-message.info {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3B82F6;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: rgba(245, 249, 252, 0.8);
    font-size: 0.9rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #6CD97E, #4ADE80);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(108, 217, 126, 0.5);
}

.notify-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.form-input, .email-input {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(121, 94, 255, 0.3);
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(28, 35, 51, 0.9) 0%, rgba(42, 26, 61, 0.8) 100%);
    backdrop-filter: blur(15px);
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-input::placeholder, .email-input::placeholder {
    color: rgba(245, 249, 252, 0.6);
}

.form-input:focus, .email-input:focus {
    outline: none;
    border-color: #795EFF;
    background: linear-gradient(135deg, rgba(28, 35, 51, 0.95) 0%, rgba(42, 26, 61, 0.9) 100%);
    box-shadow: 0 0 0 3px rgba(121, 94, 255, 0.2), 0 0 20px rgba(121, 94, 255, 0.3);
}

.form-input option {
    background: #1a1a2e;
    color: #F5F9FC;
}

/* Style select elements to show placeholder text properly */
select.form-input {
    color: rgba(245, 249, 252, 0.6); /* Default placeholder color */
}

/* When an actual option is selected (not empty value), use normal text color */
select.form-input:not([value=""]) {
    color: white;
}

/* JavaScript will handle the color change when option is selected */

/* Style the placeholder option specifically */
select.form-input option[value=""] {
    color: rgba(245, 249, 252, 0.6);
}

/* Style regular options */
select.form-input option:not([value=""]) {
    color: #F5F9FC;
}

.form-textarea {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(121, 94, 255, 0.3);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(28, 35, 51, 0.9) 0%, rgba(42, 26, 61, 0.8) 100%);
    backdrop-filter: blur(15px);
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    min-height: 80px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-textarea::placeholder {
    color: rgba(245, 249, 252, 0.6);
}

.form-textarea:focus {
    outline: none;
    border-color: #795EFF;
    background: linear-gradient(135deg, rgba(28, 35, 51, 0.95) 0%, rgba(42, 26, 61, 0.9) 100%);
    box-shadow: 0 0 0 3px rgba(121, 94, 255, 0.2), 0 0 20px rgba(121, 94, 255, 0.3);
}

.notify-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #795EFF 0%, #A64DFF 50%, #D946EF 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(121, 94, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.notify-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(121, 94, 255, 0.5);
}

.notify-btn:hover::before {
    left: 100%;
}

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

.privacy-note {
    color: rgba(245, 249, 252, 0.7);
    font-size: 0.875rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Footer */
.footer {
    padding: 2rem 0;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content p {
    color: rgba(245, 249, 252, 0.7);
    font-size: 0.875rem;
}

/* Background elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(121, 94, 255, 0.15) 0%, rgba(166, 77, 255, 0.1) 50%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.bg-circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.bg-circle-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.bg-gradient {
    position: absolute;
    background: linear-gradient(45deg, rgba(121, 94, 255, 0.1), rgba(166, 77, 255, 0.05), rgba(217, 70, 239, 0.1));
    filter: blur(40px);
    animation: float 8s ease-in-out infinite;
}

.bg-gradient-1 {
    width: 400px;
    height: 400px;
    top: 20%;
    right: 20%;
    animation-delay: 1s;
    border-radius: 50%;
}

.bg-gradient-2 {
    width: 300px;
    height: 300px;
    bottom: 30%;
    left: 30%;
    animation-delay: 3s;
    border-radius: 50%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 
            0 8px 32px rgba(121, 94, 255, 0.1),
            0 0 0 1px rgba(121, 94, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 8px 32px rgba(121, 94, 255, 0.2),
            0 0 0 1px rgba(121, 94, 255, 0.2),
            0 0 20px rgba(121, 94, 255, 0.3);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(3px, -4px) rotate(0.2deg);
    }
    50% {
        transform: translate(-2px, -6px) rotate(-0.1deg);
    }
    75% {
        transform: translate(-3px, -3px) rotate(0.1deg);
    }
}

/* Responsive adjustments for app nodes */
@media (max-width: 768px) {
    .network-visualization {
        height: 350px;
        padding: 1rem;
    }
    
    .app-node {
        min-width: 70px;
        padding: 0.4rem;
    }
    
    .app-name {
        font-size: 0.7rem;
    }
    
    /* Adjust positioning for smaller screens */
    .app-node:nth-child(6) { left: 12%; }
    .app-node:nth-child(7) { left: 88%; }
    .app-node:nth-child(11) { left: 22%; }
    .app-node:nth-child(12) { left: 78%; }
    
    /* Form responsive adjustments */
    .form-grid, .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .notify-form, .waitlist-form {
        max-width: 90%;
        gap: 1rem;
    }
    
    .form-input, .email-input, .form-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .waitlist-section {
        margin: 1.5rem 0;
    }
    
    .waitlist-title {
        font-size: 1.5rem;
    }
    
    .waitlist-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Game Launcher */
.game-launcher {
    margin: 2rem 0;
    text-align: center;
}

.play-game-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.play-game-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.play-game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.play-game-btn:hover::before {
    left: 100%;
}

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

/* Game Overlay */
.game-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.game-overlay.active {
    display: flex;
}

.game-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(121, 94, 255, 0.3);
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Game Header */
.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.game-header h2 {
    color: #F5F9FC;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    color: rgba(245, 249, 252, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.stat-value {
    display: block;
    color: #F5F9FC;
    font-size: 1.2rem;
    font-weight: 600;
}

.close-game-btn {
    background: transparent;
    border: 2px solid rgba(245, 249, 252, 0.3);
    color: #F5F9FC;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-game-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(245, 249, 252, 0.5);
}

/* Game Canvas */
#gameCanvas {
    border: 2px solid rgba(121, 94, 255, 0.5);
    border-radius: 10px;
    background: linear-gradient(to bottom, #0a0a1a 0%, #1a1a2e 100%);
    image-rendering: crisp-edges;
    display: block;
    margin: 0 auto;
}

/* Game Controls */
.game-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.control-info {
    display: flex;
    gap: 1.5rem;
}

.control-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.control-key {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.control-desc {
    color: rgba(245, 249, 252, 0.8);
    font-size: 0.9rem;
}

.restart-btn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.restart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Game Screens */
.game-over-screen,
.game-pause-screen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(121, 94, 255, 0.3);
    display: none;
    z-index: 10;
}

.game-over-screen.active,
.game-pause-screen.active {
    display: block;
    animation: popIn 0.3s ease-out;
}

.game-over-content h3,
.pause-content h3 {
    color: #F5F9FC;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-score {
    color: #F5F9FC;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.game-over-message,
.pause-content p {
    color: rgba(245, 249, 252, 0.8);
    margin-bottom: 2rem;
}

.game-over-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.play-again-btn,
.resume-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.play-again-btn:hover,
.resume-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.close-btn {
    background: transparent;
    color: rgba(245, 249, 252, 0.8);
    border: 2px solid rgba(245, 249, 252, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(245, 249, 252, 0.1);
    border-color: rgba(245, 249, 252, 0.5);
}

/* Game Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header {
        padding: 1.5rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
        max-width: 100%;
        border-radius: 12px;
    }
    
    .showcase-container {
        min-height: 700px;
        padding: 1.5rem;
    }
    
    .showcase-section {
        min-height: 650px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 1.5rem;
        margin: 0 -1rem;
        border-radius: 0;
    }
    
    .notify-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .email-input {
        min-width: unset;
    }
    
    .footer {
        padding: 1.5rem;
    }
    
    /* Game Responsive */
    .game-container {
        padding: 1rem;
        margin: 1rem;
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .game-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .game-stats {
        gap: 1rem;
    }
    
    #gameCanvas {
        width: 100%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 4/3;
    }
    
    .game-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .control-info {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        margin-bottom: 1.5rem;
    }
    
    .bg-circle,
    .bg-gradient {
        display: none;
    }
    
    /* Additional game responsive adjustments */
    .game-container {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .game-header h2 {
        font-size: 1.4rem;
    }
    
    .game-stats {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .stat {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .stat-label,
    .stat-value {
        display: inline;
        margin: 0;
    }
    
    .control-info {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .control-key {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
    
    .game-over-screen,
    .game-pause-screen {
        padding: 1rem;
        margin: 0.5rem;
        width: calc(100% - 1rem);
        transform: translate(-50%, -50%);
    }
} 