:root {
    --primary-color: #00ff66; /* Neon Green */
    --primary-dark: #00cc52;
    --primary-glow: rgba(0, 255, 102, 0.5);
    --bg-color: #05080f; /* Deep cyber black */
    --surface-color: rgba(10, 15, 25, 0.7);
    --text-main: #ffffff;
    --text-muted: #8b9bb4;
    --border-color: rgba(0, 255, 102, 0.15);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(0, 255, 102, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(0, 200, 255, 0.05) 0%, transparent 50%);
}

/* Cyber Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        linear-gradient(rgba(0, 255, 102, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 102, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
}

/* Top Navigation Bar */
.top-bar {
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.logo-link {
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.top-logo {
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px var(--primary-glow));
}

/* App Container */
#app {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6rem 1rem 3rem;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

/* Cyber Loader */
.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60vh;
}

.cyber-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: cyberSpin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px var(--primary-glow);
}

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

.loader p {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    animation: pulseText 1.5s infinite;
}

@keyframes pulseText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Main Content Styles */
.glass-panel {
    background: var(--surface-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 255, 102, 0.05);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.partner-logo-container {
    background: rgba(0, 0, 0, 0.4);
    padding: 2.5rem;
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 0 1px var(--border-color);
    transition: all 0.4s ease;
    position: relative;
}

.partner-logo-container::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(45deg, transparent, var(--primary-color), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 102, 0.15);
}

.partner-logo-container:hover::after {
    opacity: 1;
}

.partner-logo {
    max-width: 280px;
    max-height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
}

.title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-card {
    background: rgba(5, 8, 15, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 255, 102, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 102, 0.1);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1;
}

.info-card h4 i {
    color: var(--primary-color);
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    z-index: 1;
    flex-grow: 1;
}

.tech-details {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    z-index: 1;
}

.tech-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
    border-bottom: 1px dashed rgba(255,255,255,0.05);
    padding-bottom: 0.3rem;
}

.tech-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.tech-label {
    color: var(--text-muted);
}

.tech-value {
    color: var(--primary-color);
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: rgba(0, 255, 102, 0.05);
    border: 1px solid rgba(0, 255, 102, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: inset 0 0 15px rgba(0, 255, 102, 0.1), 0 0 15px rgba(0, 255, 102, 0.1);
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: cyberPulse 2s infinite;
}

@keyframes cyberPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 102, 0); }
}

/* Slider Section */
.partners-section {
    width: 100%;
    background: rgba(5, 8, 15, 0.9);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    margin-top: auto;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.partners-section h3 {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.slider {
    height: 80px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, rgba(5,8,15,1) 0%, rgba(255,255,255,0) 100%);
    content: "";
    height: 80px;
    position: absolute;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slide-track {
    animation: scroll 50s linear infinite;
    display: flex;
}

.slide-track:hover {
    animation-play-state: paused;
}

.slide {
    height: 80px;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.slide img {
    max-height: 45px;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0.5) contrast(1.2) grayscale(100%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slide:hover img {
    filter: brightness(1) contrast(1) grayscale(0%);
    transform: scale(1.15);
    drop-shadow: 0 0 10px var(--primary-glow);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-220px * 12)); /* Dynamically updated in JS */ }
}

/* Responsive */
@media (max-width: 992px) {
    .title { font-size: 2.5rem; }
    .glass-panel { padding: 2rem; }
    .info-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

@media (max-width: 768px) {
    .glass-panel { padding: 1.5rem; }
    .title { font-size: 2rem; }
    .subtitle { font-size: 1rem; }
    .top-bar { padding: 1rem; justify-content: center; }
    .top-logo { height: 40px; }
    #app { padding-top: 5rem; }
    .slider::before, .slider::after { width: 50px; }
}
/* Legal Disclaimer */
.legal-disclaimer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    color: rgba(139, 155, 180, 0.4);
    text-align: center;
    line-height: 1.8;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .legal-disclaimer {
        font-size: 0.7rem;
        padding-top: 1.5rem;
    }
}
