/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
}

/* Improve touch targets */
button, a, input, select, textarea {
    touch-action: manipulation;
}

/* Better focus states for accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #00d4ff;
    outline-offset: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding:  1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.12);
}

.navbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,0,0,0), #00d4ff, rgba(0,0,0,0));
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8), 0 0 20px rgba(0, 212, 255, 0.5);
    pointer-events: none;
}

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

.nav-logo .brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-logo .logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-logo .brand-text {
    color: #00d5ff;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    line-height: 1;
}

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


.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(0, 212, 255, 0.1);
}

.nav-cta .btn-primary {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border: none;
    padding: .75rem 1.5rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-3d-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff7b00, #cc4100);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-height: 44px;
    min-width: 44px;
    font-size: 1rem;
    line-height: 1.2;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
}

.btn-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #ff8000;
    padding: 1rem 2rem;
    border-radius: 30px;
    color: #ff8000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-height: 44px;
    min-width: 44px;
    font-size: 1rem;
    line-height: 1.2;
}

.btn-secondary:hover {
    background: #ff8000;
    color: white;
    transform: translateY(-3px);
}

.btn-secondary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #333;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-height: 44px;
    min-width: 44px;
    font-size: 1rem;
    line-height: 1.2;
}

.btn-outline:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0b5ed7;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Section Styles */
section {
    padding: 5rem 0;
    background: #0a0a0a;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Roadmaps Section */
.roadmaps {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

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

.roadmap-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.roadmap-card:hover::before {
    left: 100%;
}

.roadmap-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    border-color: #0b5ed7;
}

@media (hover: none) {
    .roadmap-card:hover,
    .resource-category:hover,
    .event-card:hover,
    .offer-card:hover {
        transform: none;
    }
    
    .roadmap-card:active,
    .resource-category:active,
    .event-card:active,
    .offer-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

.roadmap-card.featured {
    border: 2px solid #00d4ff;
    background: rgba(0, 212, 255, 0.05);
}

.roadmap-icon {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.roadmap-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.roadmap-card p {
    color: #737373;
    margin-bottom: 1.5rem;
}

.roadmap-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.roadmap-card li {
    color: #ccc;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.roadmap-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

/* Resources Section */
.resources {
    background: #0a0a0a;
}

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

.resource-category {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(96, 96, 96);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.resource-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
}

.resource-icon {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.resource-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.resource-category p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

/* Community Section */
.community {
    color: #0a0a0a;
    background: var(--color-bg);
}

/* Community as a card */
.community .container {
    background: linear-gradient(135deg, #fcfcfc 0%, #5f9af4 100%);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
    padding: 2rem;
}

@media (max-width: 768px) {
    .community .container {
        border-radius: 16px;
        padding: 1.5rem;
    }
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.community-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.community-text p {
    font-size: 1.25rem;
    color: #010101;
    margin-bottom: 2rem;
}

.community-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.feature i {
    color: #ff8000;
    font-size: 1.25rem;
}

.community-visual {
    position: relative;
    height: 400px;
}

.floating-cards {
    position: relative;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: #0b5dd75c;
    border: 1px solid rgba(0, 0, 0, 0.737);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    color: white;
    font-weight: 500;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 40%;
    right: 20%;
    animation-delay: 1.5s;
}

.floating-card:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-card:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Events Section */
.events {
    background: #0a0a0a;
}

.events-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #333;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: #ccc;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #0b5ed7;
    border-color: #0b5ed7;
    color: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
}

.event-date {
    text-align: center;
    min-width: 60px;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    color: #00d4ff;
    font-weight: 600;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
}

.event-content h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.event-content p {
    color: #ccc;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Offers Section */
.offers {
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
}

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

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.offer-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.offer-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.offer-price {
    margin-bottom: 2rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 0.5rem;
}

.sale-price {
    color: #00d4ff;
    font-size: 1.5rem;
    font-weight: 700;
}

.price-period {
    font-size: 1rem;
    font-weight: 400;
    color: #ccc;
}

.savings {
    display: block;
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.offer-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    padding: 0;
}

.offer-features li {
    color: #ccc;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.offer-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

.offer-card.featured {
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    transform: scale(1.05);
}

.offer-card.featured .offer-badge {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
}

/* About Section */
.about {
    background: #0a0a0a;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-visual {
    text-align: center;
}

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

.team-member {
    text-align: center;
}

.member-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-member h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.contact-method i {
    color: #0b5ed7;
    font-size: 1.25rem;
    width: 20px;
}

.contact-method a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #00d4ff;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-height: 44px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23ffffff" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 3rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d4ff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.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: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00d4ff;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Responsive Design */

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
}

/* Desktop */
@media (max-width: 1199px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .roadmap-grid,
    .resources-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .community-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 6rem 2rem 2rem;
        justify-content: flex-start;
        gap: 2rem;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 1rem 0 0 0;
        margin-top: 1rem;
    }
    
    .nav-cta {
        margin-top: 2rem;
    }
    
    .nav-cta .btn-primary {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary.large,
    .btn-secondary.large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    .stat p {
        font-size: 0.9rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .roadmap-grid,
    .resources-grid,
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .roadmap-card,
    .resource-category,
    .offer-card {
        padding: 1.5rem;
    }
    
    .roadmap-card h3,
    .resource-category h3,
    .offer-card h3 {
        font-size: 1.3rem;
    }

    .community-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .community-text h2,
    .about-text h2,
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .community-visual {
        height: 300px;
    }

    .about-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .events-filter {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .event-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem;
    }
}

/* Mobile Medium */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo .brand-text {
        font-size: 1.3rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .roadmap-card,
    .resource-category,
    .offer-card {
        padding: 1.2rem;
    }
    
    .roadmap-icon,
    .resource-icon {
        font-size: 2.5rem;
    }
    
    .community-text h2,
    .about-text h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .community-text p,
    .about-text p,
    .contact-info p {
        font-size: 1rem;
    }
    
    .floating-card {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .events-filter {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }

    .event-date {
        margin-bottom: 1rem;
    }
    
    .offer-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

/* Mobile Small */
@media (max-width: 375px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .btn-primary.large,
    .btn-secondary.large {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .roadmap-card,
    .resource-category,
    .offer-card {
        padding: 1rem;
    }
    
    .community-visual {
        height: 250px;
    }
    
    .floating-card {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    .hero-3d-container {
        will-change: transform;
    }
    
    .roadmap-card,
    .resource-category,
    .event-card,
    .offer-card {
        will-change: transform;
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
        
        .hero-3d-container {
            display: none;
        }
    }
}

/* Dark mode improvements */
@media (prefers-color-scheme: dark) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        color: #ffffff;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        border-width: 3px;
    }
    
    .nav-link::after {
        height: 3px;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* PWA Install prompt and standalone adjustments */
@media all and (display-mode: standalone) {
    .navbar { position: sticky; }
    body { padding-top: 0; }
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 212, 255, 0.3);
    border-top: 3px solid #0b5ed7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #00d4ff;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0099cc;
}

/* Mobile scrollbar */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 4px;
    }
}

/* Safe area insets for mobile devices with notches */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .container {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .nav-menu {
        padding-left: max(2rem, env(safe-area-inset-left));
        padding-right: max(2rem, env(safe-area-inset-right));
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

/* --- Theme Override: Light (White / Blue / Orange) --- */
:root {
    --color-bg: #ffffff;
    --color-surface: #ffffff;
    --color-surface-alt: #f7f9fc;
    --color-text: #1c2430;
    --color-text-muted: #5f6b7a;
    --color-border: #e6eaf0;
    --color-primary: #0d6efd; /* blue */
    --color-primary-700: #0b5ed7;
    --color-primary-100: #e7f0ff;
    --color-accent: #ff7b00; /* orange */
    --color-accent-700: #cc6100;
}

body {
    color: var(--color-text);
    background-color: var(--color-bg);
}

section,
.resources,
.events,
.offers,
.about,
.contact,
.roadmaps {
    background: var(--color-bg);
}

.navbar {
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 6px 24px rgba(13, 110, 253, 0.12);
}

.navbar::after {
    background: linear-gradient(90deg, rgba(0,0,0,0), var(--color-primary), rgba(0,0,0,0));
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.8), 0 0 20px rgba(13, 110, 253, 0.5);
}

.nav-logo .brand-text {
    color: var(--color-primary);
}

.nav-link {
    color: var(--color-text);
}

.nav-link:hover { color: var(--color-primary); }
.nav-link::after { background: var(--color-primary); }

.dropdown-content {
    background: #ffffff;
    border: 1px solid var(--color-border);
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.12);
}

.hamburger:hover { background-color: rgba(13, 110, 253, 0.08); }
.bar { background: var(--color-text); }

.hero-content { color: var(--color-text); }
.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-700));
    color: #ffffff;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.28);
}

.btn-secondary {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: #ffffff;
}

.btn-outline {
    border-color: var(--color-text);
    color: var(--color-text);
}

.btn-outline:hover {
    background: var(--color-text);
    color: #ffffff;
}

/* Cards and Surfaces to light */
.roadmap-card,
.resource-category,
.event-card,
.offer-card,
.contact-form {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 20px rgba(16, 24, 40, 0.06);
}

.roadmap-card:hover,
.resource-category:hover,
.event-card:hover,
.offer-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
}

.roadmap-card.featured {
    border: 2px solid var(--color-primary);
    background: var(--color-primary-100);
}

.roadmap-icon,
.resource-icon,
.event-date .month,
.sale-price {
    color: var(--color-primary);
}

.offer-card.featured {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.25);
}

.offer-card.featured .offer-badge {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-700));
}

.offer-badge {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-700));
}

.offer-features li::before,
.roadmap-card li::before {
    color: var(--color-primary);
}

.section-header h2 { color: var(--color-text); }
.section-header p,
.resource-category p,
.event-content p,
.offer-card p,
.about-text p,
.contact-info p,
.feature,
.offer-features li,
.roadmap-card li,
.event-meta,
.footer-section p,
.footer-section ul li a,
.contact-method,
.contact-method a,
.price-period {
    color: var(--color-text-muted);
}

/* Forms */
.form-group input,
.form-group select,
.form-group textarea {
    background: #ffffff;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
}

/* Footer to light */
.footer {
    background: var(--color-surface-alt);
    border-top: 1px solid var(--color-border);
}

.footer-section h3,
.footer-section h4,
.event-content h3,
.roadmap-card h3,
.resource-category h3,
.about-text h2,
.community-text h2,
.contact-info h2 { color: var(--color-text); }

.social-links a {
    background: rgba(13, 110, 253, 0.08);
    color: var(--color-primary);
}

.social-links a:hover {
    background: var(--color-primary);
    color: #ffffff;
}

/* Scrollbar (light) */
::-webkit-scrollbar-track { background: #eef2f7; }
::-webkit-scrollbar-thumb { background: var(--color-primary); }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary-700); }

