/* Global Styles */
:root {
    --primary-white: #ffffff;
    --neon-blue: #00f3ff;
    --neon-orange: #ff9d00;
    --neon-purple: #bd00ff;
    --grey-line: #e0e0e0;
    --grey-dark: #888;
    --text-dark: #333333;
    --bg-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 2px solid var(--grey-line);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    margin-right: 12px;
    border-radius: 5px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

nav a:hover, nav a.active {
    color: #1a3a5c;
    text-shadow: 0 0 8px rgba(26, 58, 92, 0.5);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--neon-blue);
}

.slider-dot.active {
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.hero-overlay h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue);
    margin-bottom: 30px;
}

.cta-btn {
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: #fff;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.cta-btn:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 20px var(--neon-blue);
}

/* Panels Section */
.panels-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    flex-wrap: wrap;
    background: linear-gradient(180deg, #f8f8f8 0%, #fff 100%);
}

.panel {
    background: #fff;
    border: 2px solid var(--grey-line);
    border-radius: 12px;
    width: 320px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.panel img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.panel h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.panel p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    min-height: 60px;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

/* Panel Specific Styles */
.panel-equitable { border-color: rgba(255, 157, 0, 0.4); }
.panel-equitable:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255, 157, 0, 0.5);
    border-color: var(--neon-orange);
}
.panel-equitable .btn { color: var(--neon-orange); border-color: var(--neon-orange); }
.panel-equitable:hover .btn {
    background-color: var(--neon-orange);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 157, 0, 0.6);
}

.panel-reality { border-color: rgba(189, 0, 255, 0.4); }
.panel-reality:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(189, 0, 255, 0.5);
    border-color: var(--neon-purple);
}
.panel-reality .btn { color: var(--neon-purple); border-color: var(--neon-purple); }
.panel-reality:hover .btn {
    background-color: var(--neon-purple);
    color: #fff;
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.6);
}

.panel-gaming { border-color: rgba(0, 243, 255, 0.4); }
.panel-gaming:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
    border-color: var(--neon-blue);
}
.panel-gaming .btn { color: var(--neon-blue); border-color: var(--neon-blue); }
.panel-gaming:hover .btn {
    background-color: var(--neon-blue);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.6);
}

/* Section Titles */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    box-shadow: 0 0 10px var(--neon-blue);
}

/* Partners Section */
.partners-section {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
    border-top: 1px solid var(--grey-line);
    border-bottom: 1px solid var(--grey-line);
}

.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.partner-item {
    padding: 20px 40px;
    background: #f8f8f8;
    border-radius: 8px;
    font-weight: 600;
    color: var(--grey-dark);
    border: 1px solid var(--grey-line);
    transition: all 0.3s ease;
}

.partner-item:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

/* Journey Section */
.journey-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.journey-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.journey-videos {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-embed {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--grey-line);
}

.video-embed p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

.journey-text {
    flex: 1;
    min-width: 300px;
}

.journey-text p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

/* Features Preview */
.features-preview {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f8f8f8 0%, #fff 100%);
    text-align: center;
}

.features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.feature-item {
    width: 130px;
    padding: 20px 15px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--grey-line);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.2);
    border-color: var(--neon-blue);
}

.feature-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.feature-item h4 {
    font-size: 0.8rem;
    color: var(--text-dark);
}

.see-all-btn {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.see-all-btn:hover {
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    transform: translateY(-2px);
}

/* Future Section */
.future-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.future-section p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Content Section (for sub-pages) */
.content-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.content-section > img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
}

.content-section h1 {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

.content-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.content-section h2 {
    font-family: 'Orbitron', sans-serif;
    margin: 40px 0 20px;
    font-size: 1.4rem;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-section ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.content-section ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-size: 1rem;
}

.content-section ul li::before {
    content: '>';
    color: var(--neon-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Page Accent Colors */
.page-equitable .content-section h1::after { background: var(--neon-orange); box-shadow: 0 0 10px var(--neon-orange); }
.page-equitable .content-section ul li::before { color: var(--neon-orange); }

.page-reality .content-section h1::after { background: var(--neon-purple); box-shadow: 0 0 10px var(--neon-purple); }
.page-reality .content-section ul li::before { color: var(--neon-purple); }

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    text-align: center;
    padding: 25px 15px;
    background: #f8f8f8;
    border-radius: 12px;
    border: 1px solid var(--grey-line);
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.15);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--neon-blue);
}

.team-member h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.team-member .role {
    color: var(--neon-blue);
    font-size: 0.85rem;
    font-weight: 500;
}

.team-member.no-image .placeholder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    margin: 0 auto 15px;
}

.contributors-section {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(189, 0, 255, 0.1));
    border-radius: 12px;
    text-align: center;
}

.contributors-section h2 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
}

/* Features Full Grid */
.features-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--grey-line);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 5px 25px rgba(0, 243, 255, 0.2);
    transform: translateY(-5px);
}

.feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.tech-section {
    margin-top: 50px;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 12px;
}

.tech-section h2 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
}

.tech-section ul {
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 20px 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    color: var(--neon-blue);
    font-size: 1rem;
}

.footer-section p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #aaa;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--neon-blue);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
}

/* Responsive Styles */
@media (max-width: 992px) {
    header {
        padding: 15px 20px;
    }
    
    .hero-overlay h1 {
        font-size: 2.5rem;
    }
    
    .hero-slider {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        border-bottom: 2px solid var(--grey-line);
        display: none;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    nav ul li {
        border-bottom: 1px solid var(--grey-line);
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav a {
        display: block;
        padding: 15px 10px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .hero-slider {
        height: 350px;
    }
    
    .hero-overlay h1 {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .panels-container {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }
    
    .panel {
        width: 100%;
        max-width: 350px;
    }
    
    .journey-content {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .features-full-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 15px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 0.85rem;
    }
    
    .hero-slider {
        height: 280px;
    }
    
    .hero-overlay h1 {
        font-size: 1.5rem;
    }
    
    .content-section h1 {
        font-size: 1.6rem;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .feature-item {
        width: 100px;
        padding: 15px 10px;
    }
    
    .feature-item img {
        width: 45px;
        height: 45px;
    }
    
    .feature-item h4 {
        font-size: 0.7rem;
    }
}

/* Apps Grid for Equitable Page */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.app-card {
    display: block;
    background: #fff;
    border: 2px solid var(--grey-line);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.app-card:hover {
    border-color: var(--neon-orange);
    box-shadow: 0 5px 25px rgba(255, 157, 0, 0.2);
    transform: translateY(-5px);
}

.app-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.app-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.app-card p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

.store-badge {
    display: inline-block;
    background: var(--neon-orange);
    color: #fff;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Conditions Grid */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.condition-card {
    display: block;
    background: #fff;
    border: 2px solid var(--grey-line);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.condition-card:hover {
    border-color: var(--neon-orange);
    box-shadow: 0 5px 25px rgba(255, 157, 0, 0.2);
    transform: translateY(-5px);
}

.condition-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.condition-icon img {
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1);
}

.condition-icon-img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    overflow: hidden;
}

.condition-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.condition-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.condition-card p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

.learn-more {
    display: inline-block;
    color: var(--neon-orange);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Back Link */
.back-link {
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover {
    text-decoration: underline;
}

/* Game Cards Hover */
.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(255, 157, 0, 0.2);
}

/* ==================== */
/* TOUCHLESS REALITY STYLES */
/* ==================== */

/* Reality Hero */
.reality-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reality-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(189, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 243, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.reality-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.reality-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(189, 0, 255, 0.5);
}

.reality-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.reality-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

.reality-main {
    padding: 60px 50px;
}

/* Apps Highlight Section */
.apps-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px 0 50px;
}

.app-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    background: #fff;
    border: 2px solid var(--grey-line);
    border-radius: 12px;
    text-align: center;
    min-width: 220px;
    transition: all 0.3s ease;
}

.app-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(189, 0, 255, 0.15);
}

.app-badge strong {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--neon-purple);
    margin-bottom: 5px;
}

.app-badge span {
    font-size: 0.85rem;
    color: #666;
}

.app-pinch { border-color: rgba(189, 0, 255, 0.3); }
.app-air { border-color: rgba(0, 243, 255, 0.3); }
.app-wave { border-color: rgba(255, 157, 0, 0.3); }

/* Reality Categories Grid */
.reality-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.reality-category-card {
    background: #fff;
    border: 2px solid var(--grey-line);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
}

.reality-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(189, 0, 255, 0.2);
    border-color: rgba(189, 0, 255, 0.3);
}

.category-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.reality-category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 25px;
}

.category-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.category-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.category-arrow {
    display: inline-block;
    color: var(--neon-purple);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Technology Overview */
.technology-overview {
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid var(--grey-line);
}

.technology-overview h2 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.tech-feature {
    text-align: center;
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(189, 0, 255, 0.1), rgba(0, 243, 255, 0.1));
    color: var(--neon-purple);
}

.tech-icon.purple-glow {
    box-shadow: 0 0 20px rgba(189, 0, 255, 0.3);
}

.tech-feature h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.tech-feature p {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
}

.cta-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--neon-purple), #9900cc);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(189, 0, 255, 0.4);
}

/* Reality Subpage Styles */
.reality-subpage-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.reality-subpage-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reality-subpage-hero .hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.2));
}

.reality-subpage-hero .hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.reality-subpage-hero .back-link {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.reality-subpage-hero .back-link:hover {
    color: #fff;
}

.reality-subpage-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(189, 0, 255, 0.5);
}

.reality-subpage-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Subpage Content */
.subpage-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 30px;
}

.intro-section {
    margin-bottom: 50px;
}

.intro-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Applications Section */
.applications-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.application-card {
    background: #fff;
    border: 2px solid var(--grey-line);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.application-card:hover {
    border-color: rgba(189, 0, 255, 0.3);
    box-shadow: 0 5px 20px rgba(189, 0, 255, 0.1);
}

.application-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--neon-purple);
    margin-bottom: 15px;
}

.application-card > p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-purple);
    font-weight: bold;
}

/* MotionInput Apps Section */
.motioninput-apps {
    margin: 60px 0;
}

.motioninput-apps h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.app-card {
    background: #fff;
    border: 2px solid var(--grey-line);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(189, 0, 255, 0.15);
    border-color: rgba(189, 0, 255, 0.3);
}

.app-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(189, 0, 255, 0.1), rgba(0, 243, 255, 0.1));
    color: var(--neon-purple);
}

.app-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.app-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.app-link {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--neon-purple), #9900cc);
    color: #fff;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.app-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(189, 0, 255, 0.3);
}

/* Benefits Section */
.benefits-section {
    margin: 60px 0;
}

.benefits-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.benefit-item {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(189, 0, 255, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(189, 0, 255, 0.15), rgba(0, 243, 255, 0.15));
    color: var(--neon-purple);
}

.benefit-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Specs Section */
.specs-section {
    margin: 60px 0;
}

.specs-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--neon-purple);
}

.spec-item strong {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.spec-item span {
    color: #666;
    font-size: 0.95rem;
}

/* Security Section (Banking) */
.security-section {
    margin: 60px 0;
}

.security-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.security-item {
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border: 1px solid var(--grey-line);
    border-radius: 15px;
}

.security-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--neon-purple);
    margin-bottom: 10px;
}

.security-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Premium Section (Displays) */
.premium-section {
    margin: 60px 0;
}

.premium-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.premium-item {
    padding: 25px;
    background: #fff;
    border: 2px solid var(--grey-line);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.premium-item:hover {
    border-color: rgba(189, 0, 255, 0.3);
    box-shadow: 0 5px 20px rgba(189, 0, 255, 0.1);
}

.premium-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--neon-purple);
    margin-bottom: 10px;
}

.premium-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pedagogy Section (EdTech) */
.pedagogy-section {
    margin: 60px 0;
}

.pedagogy-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.pedagogy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.pedagogy-item {
    padding: 25px;
    background: linear-gradient(135deg, #f0f8ff, #fff);
    border-radius: 15px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.pedagogy-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--neon-purple);
    margin-bottom: 10px;
}

.pedagogy-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Vehicle Benefits Section */
.vehicle-benefits {
    margin: 60px 0;
}

.vehicle-benefits h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.vehicle-item {
    padding: 25px;
    background: #fff;
    border: 2px solid var(--grey-line);
    border-radius: 15px;
}

.vehicle-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--neon-purple);
    margin-bottom: 10px;
}

.vehicle-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Scenarios Section (Home) */
.scenarios-section {
    margin: 60px 0;
}

.scenarios-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.scenario-item {
    padding: 25px;
    background: linear-gradient(135deg, #fff5e6, #fff);
    border-radius: 15px;
    border: 1px solid rgba(255, 157, 0, 0.2);
}

.scenario-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--neon-orange);
    margin-bottom: 10px;
}

.scenario-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Integration Section */
.integration-section {
    margin: 60px 0;
}

.integration-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.integration-section > p {
    color: #555;
    margin-bottom: 25px;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.integration-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.integration-item h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.integration-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Compliance Section */
.compliance-section {
    margin: 60px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.compliance-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.compliance-section > p {
    color: #555;
    margin-bottom: 20px;
}

.compliance-list {
    list-style: none;
    padding: 0;
}

.compliance-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    border-bottom: 1px solid var(--grey-line);
}

.compliance-list li:last-child {
    border-bottom: none;
}

.compliance-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-purple);
    font-weight: bold;
}

/* ============================================
   TOUCHLESS GAMING SECTION STYLES
   ============================================ */

/* Gaming Hero */
.gaming-hero {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0a0a1a 100%);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gaming-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 243, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 243, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.gaming-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
}

.gaming-hero .hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Gaming Intro */
.gaming-intro {
    padding: 60px 20px;
    background: #fff;
}

.gaming-intro .intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.gaming-intro p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Gaming Main */
.gaming-main {
    padding: 60px 20px;
    background: #f8f9fa;
}

.gaming-main h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 15px;
}

.gaming-main .section-intro {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Gaming Categories Grid */
.gaming-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gaming-category-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.gaming-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 243, 255, 0.15);
    border-color: var(--neon-blue);
}

.gaming-category-card .category-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.gaming-category-card .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gaming-category-card:hover .category-image img {
    transform: scale(1.05);
}

.gaming-category-card .category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
}

.gaming-category-card .category-content {
    padding: 25px;
}

.gaming-category-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.gaming-category-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.gaming-category-card .category-link {
    color: var(--neon-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Gaming Subpage Hero */
.gaming-subpage-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gaming-subpage-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.gaming-subpage-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 20, 40, 0.8) 100%);
    z-index: 2;
}

.gaming-subpage-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
}

.gaming-subpage-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
}

.gaming-subpage-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.gaming-subpage-hero .coming-soon-badge {
    display: inline-block;
    background: var(--neon-blue);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 20px;
}

/* Blue Glow for Gaming */
.blue-glow {
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
    border: 2px solid var(--neon-blue);
}

/* Gaming Tech Section */
.gaming-tech {
    background: #f8f9fa;
}

.gaming-tech .tech-icon {
    color: var(--neon-blue);
}

/* Gaming CTA */
.gaming-cta {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
}

.gaming-cta h2,
.gaming-cta p {
    color: #fff;
}

/* Video Section */
.video-section {
    margin: 50px 0;
    text-align: center;
}

.video-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-caption {
    color: #666;
    font-size: 0.95rem;
    margin-top: 20px;
    font-style: italic;
}

/* How It Works / Steps */
.how-it-works {
    margin: 50px 0;
}

.how-it-works h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--neon-blue);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.step-item h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Gestures Section */
.gestures-section {
    margin: 50px 0;
}

.gestures-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.gestures-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.gesture-item {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

.gesture-icon {
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.gesture-item h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 10px;
}

.gesture-item p {
    color: #666;
    font-size: 0.85rem;
}

/* Control Modes */
.control-modes {
    margin: 50px 0;
}

.control-modes h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.mode-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 15px;
    border: 1px solid var(--grey-line);
}

.mode-icon {
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.mode-item h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 10px;
}

.mode-item p {
    color: #666;
    font-size: 0.85rem;
}

/* Tips Section */
.tips-section {
    margin: 50px 0;
}

.tips-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.tip-item {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    border: 1px solid var(--grey-line);
}

.tip-item h4 {
    color: var(--neon-blue);
    font-size: 1rem;
    margin-bottom: 10px;
}

.tip-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Featured Game Card */
.application-card.featured-game {
    background: linear-gradient(135deg, #f0f8ff 0%, #fff 100%);
    border: 2px solid var(--neon-blue);
}

/* Coming Soon Notice */
.coming-soon-notice {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 243, 255, 0.3);
    margin-top: 30px;
}

.coming-soon-notice .notice-icon {
    color: var(--neon-blue);
    flex-shrink: 0;
}

.coming-soon-notice .notice-content h4 {
    color: var(--neon-blue);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.coming-soon-notice .notice-content p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}

/* Technology Preview */
.technology-preview {
    margin: 50px 0;
}

.technology-preview h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.tech-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-preview-item {
    text-align: center;
    padding: 30px 20px;
}

.tech-preview-item .tech-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--neon-blue);
}

.tech-preview-item h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 10px;
}

.tech-preview-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Featured Games Section */
.featured-games {
    margin: 50px 0;
}

.featured-games h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.featured-game-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border: 1px solid var(--grey-line);
}

.featured-game-card:hover {
    box-shadow: 0 12px 40px rgba(0, 243, 255, 0.15);
}

.featured-game-card .game-image {
    height: 100%;
    min-height: 300px;
}

.featured-game-card .game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-game-card .game-content {
    padding: 40px;
    padding-left: 0;
}

.featured-game-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.featured-game-card .game-tagline {
    color: var(--neon-blue);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.featured-game-card > .game-content > p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.featured-game-card .game-features h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.featured-game-card .game-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* Video Links Grid */
.additional-videos {
    margin-top: 40px;
}

.additional-videos h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
}

.video-links-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.video-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid var(--grey-line);
}

.video-link-card:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--neon-blue);
    transform: translateY(-3px);
}

.video-link-icon {
    color: var(--neon-blue);
}

/* Accessibility Section */
.accessibility-section {
    margin: 50px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #fff 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.accessibility-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
}

.accessibility-content > p {
    text-align: center;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.accessibility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.accessibility-item {
    text-align: center;
    padding: 25px;
}

.accessibility-icon {
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.accessibility-item h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.accessibility-item p {
    color: #666;
    font-size: 0.9rem;
}

/* System Requirements */
.system-requirements {
    margin: 50px 0;
}

.system-requirements h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 30px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.requirement-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--grey-line);
}

.requirement-item h4 {
    color: var(--neon-blue);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.requirement-item p {
    color: #555;
    font-size: 0.9rem;
}

/* Responsive for new grids */
@media (max-width: 768px) {
    .apps-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .conditions-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .reality-hero,
    .gaming-hero {
        padding: 50px 20px;
    }
    
    .reality-hero h1,
    .gaming-hero h1 {
        font-size: 2rem;
    }
    
    .reality-main,
    .gaming-main {
        padding: 40px 20px;
    }
    
    .reality-categories-grid,
    .gaming-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .apps-highlight {
        flex-direction: column;
        align-items: center;
    }
    
    .app-badge {
        width: 100%;
        max-width: 300px;
    }
    
    .technology-overview {
        padding: 30px 20px;
    }
    
    .tech-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reality-subpage-hero,
    .gaming-subpage-hero {
        height: 300px;
    }
    
    .reality-subpage-hero h1,
    .gaming-subpage-hero h1 {
        font-size: 1.8rem;
    }
    
    .subpage-content {
        padding: 40px 20px;
    }
    
    .intro-section h2,
    .applications-section h2,
    .motioninput-apps h2,
    .benefits-section h2,
    .specs-section h2 {
        font-size: 1.4rem;
    }
    
    .steps-grid,
    .gestures-grid,
    .modes-grid,
    .tips-grid,
    .tech-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coming-soon-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .featured-game-card {
        grid-template-columns: 1fr;
    }
    
    .featured-game-card .game-content {
        padding: 30px;
    }
    
    .accessibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .conditions-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .specs-grid,
    .security-grid,
    .premium-grid,
    .pedagogy-grid,
    .vehicle-grid,
    .scenarios-grid,
    .integration-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid,
    .gestures-grid,
    .modes-grid,
    .tips-grid,
    .tech-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .accessibility-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages Styles */
.page-legal .legal-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
}

.page-legal .legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 243, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(189, 0, 255, 0.1) 0%, transparent 50%);
}

.page-legal .legal-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-legal .legal-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
}

.page-legal .legal-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-container {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--grey-line);
}

.last-updated {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--grey-line);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--neon-blue);
}

.legal-section h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 20px 0 10px;
}

.legal-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--neon-blue);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid var(--neon-blue);
}

.contact-info p {
    margin-bottom: 5px;
}

/* GDPR Specific Styles */
.intro-box {
    background: linear-gradient(135deg, #f0f8ff 0%, #fff 100%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.intro-box p {
    font-size: 1.1rem;
    color: #444;
    margin: 0;
}

.gdpr-card {
    display: flex;
    gap: 20px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--grey-line);
    transition: all 0.3s ease;
}

.gdpr-card:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.1);
}

.gdpr-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1) 0%, rgba(189, 0, 255, 0.1) 100%);
    border-radius: 12px;
    color: var(--neon-blue);
}

.gdpr-content h3 {
    margin: 0 0 10px;
    color: var(--text-dark);
}

.gdpr-content p {
    margin-bottom: 10px;
}

.gdpr-content ul {
    margin: 10px 0 0;
    padding-left: 20px;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.right-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--grey-line);
    transition: all 0.3s ease;
}

.right-item:hover {
    border-color: var(--neon-blue);
    transform: translateY(-3px);
}

.right-item h4 {
    color: var(--neon-blue);
    font-size: 1rem;
    margin-bottom: 10px;
}

.right-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.rights-note {
    text-align: center;
    font-style: italic;
    color: #666;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.05) 0%, rgba(189, 0, 255, 0.05) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--neon-blue);
}

.highlight-box h3 {
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.ico-note {
    margin-top: 20px;
    padding: 15px;
    background: #fff9e6;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

/* Social Links in Footer */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--neon-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-container {
        padding: 30px 20px;
    }
    
    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gdpr-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .gdpr-content ul {
        text-align: left;
    }
    
    .page-legal .legal-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .rights-grid {
        grid-template-columns: 1fr;
    }
}
