:root {
    --bg-color: #050510;
    --primary-color: #00f2ff; /* Cyan */
    --secondary-color: #bc13fe; /* Neon Purple */
    --text-color: #e0e0e0;
    --card-bg: rgba(255, 255, 255, 0.05);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
    overflow: hidden;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: twinkle linear infinite;
    will-change: opacity;
}

.galaxy {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    animation: galaxy-pulse 10s ease-in-out infinite alternate;
    will-change: transform, opacity;
}

@keyframes galaxy-pulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes twinkle {
    0% { opacity: 0.2; }
    50% { opacity: 1; }
    100% { opacity: 0.2; }
}

.shooting-star {
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(to left, rgba(255,255,255,0), rgba(255,255,255,1) 50%, rgba(255,255,255,0));
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
}

@keyframes shoot {
    0% {
        transform: translateX(0) translateY(0) rotate(-45deg);
        opacity: 1;
    }
    100% {
        transform: translateX(-500px) translateY(500px) rotate(-45deg);
        opacity: 0;
    }
}

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

/* Header */
header {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
    text-decoration: none;
    cursor: pointer;
    z-index: 1001;
}

/* Nav Menu */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.4s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 16, 0.98);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .nav-menu a {
        font-size: 1.5rem;
    }

    /* Hamburger Animation */
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
        background-color: var(--primary-color);
    }

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

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
        background-color: var(--primary-color);
    }
    
    /* Ensure logo stays visible */
    .logo {
        display: block; 
    }
}

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

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Hero Planet Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.planet {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #4a90e2, #001f3f);
    box-shadow: 
        inset -20px -20px 50px rgba(0,0,0,0.5),
        0 0 50px rgba(74, 144, 226, 0.3);
    position: relative;
    animation: planet-float 6s ease-in-out infinite alternate;
}

.planet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
    transform: translate(-50%, -50%) rotate(-45deg);
    animation: ring-spin 10s linear infinite;
}

.planet::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 1px dashed rgba(188, 19, 254, 0.3);
    transform: translate(-50%, -50%);
    animation: ring-spin-reverse 15s linear infinite;
}

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

@keyframes ring-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ring-spin-reverse {
    0% { transform: translate(-50%, -50%) rotate(360deg); }
    100% { transform: translate(-50%, -50%) rotate(0deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.scroll-indicator span {
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    transform: rotate(45deg);
    animation: scroll-fade 2s infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scroll-fade {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

/* Values Section */
.values {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.value-item h3 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.value-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 50px;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-visual {
        transform: scale(0.8);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(188, 19, 254, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #000;
}

/* Services */
.services, .projects, .tech {
    padding: 100px 0;
}

.services h2, .projects h2, .tech h2, .contact-cta h2, .page-header h1 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, background 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Technologies */
.tech-category {
    margin-bottom: 50px;
}

.tech-category h3 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.tech-item:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
    transform: scale(1.05);
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.project-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.2);
}

.project-image {
    height: 200px;
    width: 100%;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 10px;
}

.project-info .client {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.project-info p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 5px;
    border: 1px solid rgba(0, 242, 255, 0.3);
}

/* Contact CTA */
.contact-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Fallback background */
    background: #050510;
}

.warp-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(188, 19, 254, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 242, 255, 0.1) 0%, transparent 40%);
    z-index: 0;
}

.warp-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 242, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) scale(2);
    animation: grid-move 20s linear infinite;
    opacity: 0.3;
}

@keyframes grid-move {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0) scale(2); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px) scale(2); }
}

.launch-card {
    position: relative;
    z-index: 1;
    background: rgba(10, 10, 25, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 242, 255, 0.3);
    padding: 60px 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 242, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.launch-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 60px rgba(0, 242, 255, 0.15), inset 0 0 30px rgba(0, 242, 255, 0.1);
}

.launch-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 20px;
    background: linear-gradient(45deg, transparent, rgba(0, 242, 255, 0.3), transparent);
    z-index: -1;
    animation: border-glow 3s linear infinite;
}

@keyframes border-glow {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.launch-card h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.launch-card p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.4);
    z-index: 1;
}

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

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

.btn-large:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.6);
}

/* Contact Page */
.page-header {
    padding-top: 150px;
    padding-bottom: 60px;
    text-align: center;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    padding-bottom: 100px;
}

.contact-info {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    height: fit-content;
}

.contact-info h3 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item .icon {
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 30px;
}

.contact-form-container {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

/* --- Template & Extended Component Styles --- */

/* Utility Classes */
.w-100 { width: 100%; }
.text-center { text-align: center; }
.text-muted { color: rgba(255, 255, 255, 0.5); font-size: 0.9em; }
.text-accent { color: var(--primary-color); }
.btn-sm { padding: 8px 15px; font-size: 0.8rem; }
.btn-accent { background: var(--secondary-color); color: white; }
.btn-outline { border: 1px solid rgba(255,255,255,0.5); background: transparent; color: white; }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

/* Form Extensions */
.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.form-check input {
    margin-right: 10px;
    width: auto;
}
.row {
    display: flex;
    gap: 20px;
}
.half { flex: 1; }

/* Authentication */
.auth-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.auth-box {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    max-width: 400px;
}
.auth-box h3 {
    margin-bottom: 20px;
    text-align: center;
    font-family: var(--font-heading);
}
.auth-footer {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
}
.auth-footer a { color: var(--primary-color); }

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: center; /* Align for different heights */
}
.pricing-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: transform 0.3s;
}
.pricing-card.featured {
    border: 1px solid var(--primary-color);
    background: rgba(0, 242, 255, 0.05);
    transform: scale(1.05);
    z-index: 1;
}
.price-header h3 {
    font-family: var(--font-heading);
    color: var(--text-color);
}
.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}
.price .unit { font-size: 1rem; color: rgba(255,255,255,0.5); }
.price-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}
.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
}
.price-features li i {
    margin-right: 10px;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}
.price-features li.disabled { opacity: 0.5; }

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.blog-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}
.blog-img {
    height: 180px;
    width: 100%;
}
.blog-content { padding: 25px; }
.blog-date {
    font-size: 0.8rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}
.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

/* Social & Newsletter */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.5rem;
}
.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}
.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.newsletter-form input { flex: 1; margin-bottom: 0; }

/* Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    margin-bottom: 15px;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
}
.accordion-header {
    padding: 20px;
    cursor: pointer;
    font-family: var(--font-heading);
    background: rgba(255,255,255,0.03);
    transition: background 0.3s;
    position: relative;
}
.accordion-header:hover { background: rgba(255,255,255,0.08); }
.accordion-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-weight: bold;
}
.accordion-header.active::after { content: '-'; }
.accordion-header.active { color: var(--primary-color); }
.accordion-body {
    padding: 20px;
    display: none;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}
.stat-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}
.stat-label {
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Tabs */
.tabs-container {
    max-width: 800px;
    margin: 0 auto;
}
.tabs-header {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}
.tab-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    padding: 15px 30px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}
.tab-btn:hover { color: white; }
.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}
.tab-content { display: none; animation: fadeIn 0.5s; }
.tab-content.active { display: block; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
}
.alert i { margin-right: 15px; font-size: 1.2rem; }
.alert-success {
    background: rgba(0, 242, 255, 0.1);
    border-color: rgba(0, 242, 255, 0.3);
    color: #00f2ff;
}
.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    color: #ffc107;
}
.alert-error {
    background: rgba(255, 87, 87, 0.1);
    border-color: rgba(255, 87, 87, 0.3);
    color: #ff5757;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.team-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s;
}
.team-card:hover { transform: translateY(-5px); border-color: var(--secondary-color); }
.team-img {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(0.5);
    transition: filter 0.3s;
}
.team-card:hover .team-img { filter: grayscale(0); }
.team-info { padding: 25px; }
.team-info h3 { color: var(--primary-color); font-family: var(--font-heading); margin-bottom: 5px; }
.team-role { color: var(--secondary-color); font-size: 0.9rem; margin-bottom: 15px; display: block; }
.team-social { display: flex; justify-content: center; gap: 15px; }
.team-social a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.team-social a:hover { color: white; }

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: translateX(-50%);
}
.timeline-item {
    margin-bottom: 50px;
    position: relative;
    width: 50%;
    padding: 0 40px;
}
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }
.timeline-dot {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}
.timeline-item:nth-child(odd) .timeline-dot { right: -10px; }
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }
.timeline-content {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}
.timeline-date { color: var(--secondary-color); font-weight: bold; margin-bottom: 10px; display: block; }

/* Table */
.table-container { overflow-x: auto; }
.cosmic-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
}
.cosmic-table th, .cosmic-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cosmic-table th {
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary-color);
    font-family: var(--font-heading);
}
.cosmic-table tr:hover { background: rgba(255,255,255,0.03); }
.status-badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}
.status-active { background: rgba(0, 255, 0, 0.2); color: #00ff00; }
.status-offline { background: rgba(255, 0, 0, 0.2); color: #ff0000; }

/* Loader */
.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}
.cosmic-loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 768px) {
    .timeline::before { left: 20px; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 0; text-align: left !important; }
    .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { left: 0; }
    .timeline-item:nth-child(odd) .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 10px; right: auto; }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

