/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #07070d;
    color: #e0e0e0;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: #8b9dff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #a8b8ff;
}

/* ========== STARFIELD ========== */
.stars, .twinkling {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.stars {
    background: #07070d url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48Y2lyY2xlIGN4PSIxMiIgY3k9IjgiIHI9IjEiIGZpbGw9IndoaXRlIi8+PGNpcmNsZSBjeD0iODAiIGN5PSI1MCIgcj0iMSIgZmlsbD0id2hpdGUiLz48Y2lyY2xlIGN4PSIxNTAiIGN5PSIyMCIgcj0iMSIgZmlsbD0id2hpdGUiLz48Y2lyY2xlIGN4PSIyMDAiIGN5PSI4MCIgcj0iMSIgZmlsbD0id2hpdGUiLz48Y2lyY2xlIGN4PSIzMDAiIGN5PSI0MCIgcj0iMSIgZmlsbD0id2hpdGUiLz48Y2lyY2xlIGN4PSI0MDAiIGN5PSI2MCIgcj0iMSIgZmlsbD0id2hpdGUiLz48Y2lyY2xlIGN4PSI0NTAiIGN5PSIyMCIgcj0iMSIgZmlsbD0id2hpdGUiLz48Y2lyY2xlIGN4PSI1MCIgY3k9IjE1MCIgcj0iMSIgZmlsbD0id2hpdGUiLz48Y2lyY2xlIGN4PSIxMDAiIGN5PSIxODAiIHI9IjEiIGZpbGw9IndoaXRlIi8+PC9zdmc+) repeat;
    background-size: 500px 500px;
    animation: starMove 200s linear infinite;
}

.twinkling {
    background: transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48Y2lyY2xlIGN4PSI2MCIgY3k9IjEyMCIgcj0iMS41IiBmaWxsPSJ3aGl0ZSIgb3BhY2l0eT0iMC4zIi8+PGNpcmNsZSBjeD0iMTgwIiBjeT0iNjAiIHI9IjIiIGZpbGw9IndoaXRlIiBvcGFjaXR5PSIwLjIiLz48Y2lyY2xlIGN4PSIyODAiIGN5PSIxNDAiIHI9IjEuNSIgZmlsbD0id2hpdGUiIG9wYWNpdHk9IjAuNCIvPjxjaXJjbGUgY3g9IjM4MCIgY3k9IjUwIiByPSIxIiBmaWxsPSJ3aGl0ZSIgb3BhY2l0eT0iMC4zIi8+PC9zdmc+) repeat;
    background-size: 500px 500px;
    animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes starMove {
    from { transform: translateY(0); }
    to { transform: translateY(-500px); }
}

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

/* ========== NAVIGATION ========== */
nav {
    background: rgba(7, 7, 13, 0.92);
    border-bottom: 1px solid rgba(139, 157, 255, 0.08);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.nav-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: #a0a0b8;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8b9dff;
    transition: width 0.3s;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.btn-nav {
    background: linear-gradient(135deg, #8b9dff, #6a7ae6);
    color: #fff !important;
    padding: 8px 24px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(139, 157, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(139, 157, 255, 0.2);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #8b9dff, #6a7ae6);
    color: #fff;
    padding: 14px 38px;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(139, 157, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(139, 157, 255, 0.25);
    color: #fff;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 14px 38px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid rgba(139, 157, 255, 0.3);
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
}

.btn-secondary:hover {
    background: rgba(139, 157, 255, 0.06);
    border-color: #8b9dff;
    transform: translateY(-3px);
    color: #fff;
}

/* ========== HERO ========== */
.hero {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(139, 157, 255, 0.12);
    border: 1px solid rgba(139, 157, 255, 0.15);
    color: #8b9dff;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.1;
}

.hero .highlight {
    background: linear-gradient(135deg, #8b9dff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .tagline {
    font-size: 1.5rem;
    color: #8b9dff;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero .description {
    max-width: 480px;
    color: #b0b0c8;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

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

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

.globe-container {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(139, 157, 255, 0.06);
    border-radius: 50%;
    animation: spin 25s linear infinite;
}

.ring-2 {
    width: 82%;
    height: 82%;
    animation-direction: reverse;
    animation-duration: 18s;
    border-color: rgba(139, 157, 255, 0.04);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-logo {
    width: 170px;
    height: 170px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 50px rgba(139, 157, 255, 0.15));
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 100px 0;
    background: rgba(7, 7, 13, 0.6);
    border-top: 1px solid rgba(139, 157, 255, 0.04);
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text p {
    color: #b0b0c8;
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
    background: rgba(139, 157, 255, 0.03);
    border: 1px solid rgba(139, 157, 255, 0.06);
    border-radius: 12px;
    transition: border-color 0.3s;
}

.value-item:hover {
    border-color: rgba(139, 157, 255, 0.15);
}

.value-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-item h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.value-item p {
    color: #a0a0b8;
    font-size: 0.95rem;
    margin: 0;
}

/* ========== PAGE HEADER (RUXA PAGE) ========== */
.page-header {
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
}

.header-content {
    text-align: center;
}

.page-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 40px rgba(139, 157, 255, 0.12));
}

.page-header h1 {
    font-size: 4rem;
    color: #fff;
    font-weight: 800;
}

.page-header .subtitle {
    color: #8b9dff;
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* ========== DEVELOPMENT NOTICE ========== */
.dev-notice {
    max-width: 600px;
    margin: 0 auto 30px;
    background: rgba(255, 200, 50, 0.06);
    border: 1px solid rgba(255, 200, 50, 0.12);
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
}

.dev-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.dev-notice strong {
    color: #ffd866;
    display: block;
    font-size: 0.95rem;
}

.dev-notice p {
    color: #b0b0c8;
    font-size: 0.9rem;
    margin: 2px 0 0;
}

.header-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* ========== RUXA PAGE CONTENT ========== */
.ruxa-about {
    padding: 60px 0 100px;
    position: relative;
    z-index: 1;
}

.ruxa-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.ruxa-description h2 {
    font-size: 2.2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 16px;
}

.ruxa-description p {
    color: #b0b0c8;
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.ruxa-description h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 12px;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
    margin-bottom: 20px;
}

.feature-list li {
    color: #b0b0c8;
    padding: 4px 0;
    font-size: 1rem;
}

.platform-tags {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 30px;
}

.platform {
    background: rgba(139, 157, 255, 0.1);
    border: 1px solid rgba(139, 157, 255, 0.12);
    border-radius: 8px;
    padding: 6px 20px;
    color: #8b9dff;
    font-size: 0.9rem;
    font-weight: 500;
}

.ruxa-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== SIDEBAR ========== */
.ruxa-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.status-card {
    background: rgba(139, 157, 255, 0.03);
    border: 1px solid rgba(139, 157, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
}

.status-card h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 12px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4ade80;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 1.8s ease-in-out infinite;
}

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

.status-card p {
    color: #a0a0b8;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.btn-sidebar {
    display: inline-block;
    background: #5865f2;
    color: #fff;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s, transform 0.2s;
}

.btn-sidebar:hover {
    background: #4752c4;
    color: #fff;
    transform: translateY(-2px);
}

.coming-soon-list {
    list-style: none;
    padding: 0;
}

.coming-soon-list li {
    color: #b0b0c8;
    padding: 6px 0;
    font-size: 0.95rem;
}

.coming-soon-list li:first-child {
    color: #4ade80;
}

.owner-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
}

.owner-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.owner-info span {
    color: #fff;
    font-weight: 500;
}

/* ========== FOOTER ========== */
footer {
    background: rgba(7, 7, 13, 0.95);
    border-top: 1px solid rgba(139, 157, 255, 0.04);
    padding: 60px 0 24px;
    position: relative;
    z-index: 1;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 14px;
    font-size: 1rem;
}

.footer-section p {
    color: #a0a0b8;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #a0a0b8;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    background: rgba(139, 157, 255, 0.04);
    border: 1px solid rgba(139, 157, 255, 0.08);
    border-radius: 8px;
    padding: 8px 20px;
    color: #a0a0b8;
    font-size: 0.9rem;
    transition: background 0.3s, border-color 0.3s;
}

.social-link.discord:hover {
    background: rgba(88, 101, 242, 0.12);
    border-color: #5865f2;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(139, 157, 255, 0.04);
}

.footer-bottom p {
    color: #555;
    font-size: 0.85rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-content {
        gap: 50px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .globe-container {
        width: 260px;
        height: 260px;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(7, 7, 13, 0.98);
        padding: 24px;
        border-bottom: 1px solid rgba(139, 157, 255, 0.08);
        gap: 16px;
        align-items: stretch;
        text-align: center;
    }

    .nav-links.open {
        display: flex;
    }

    .btn-nav {
        text-align: center;
    }

    .hero {
        padding: 80px 0;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero .description {
        margin: 0 auto 32px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero .tagline {
        font-size: 1.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .globe-container {
        width: 200px;
        height: 200px;
    }

    .hero-logo {
        width: 110px;
        height: 110px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .ruxa-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.8rem;
    }

    .dev-notice {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .header-actions {
        flex-direction: column;
        align-items: center;
    }

    .ruxa-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}
