@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Base styles */
body {
    font-family: "Inter", sans-serif;
    color: #e6e6e6;
    background: linear-gradient(180deg, #0a0a0d 0%, #09091a 100%);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Navbar */
.navbar {
    transition: background-color 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

/* Hero */
.hero-section {
    height: 100vh;
    background: radial-gradient(circle at center top, #1b2838 0%, #0a0a0d 80%);
    color: #ffffff;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
    font-size: 3.5rem;
    background: linear-gradient(90deg, #ECE9E6 0%, rgba(254, 253, 253, 255) 92%, rgba(255, 254, 254, 255) 96%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ffffff;
}

.hero-section .btn {
    border-radius: 50px;
    border-width: 2px;
    transition: color 0.3s, background 0.3s;
}

.hero-section .btn:hover {
    background: #5dfc8d;
    color: #0a0a0d;
}

/* Glass card */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

/* Neon colors */
.neon-green {
    color: rgba(93, 252, 141, 0);
}

.neon-blue {
    color: rgba(58, 199, 255, 0);
}

.neon-purple {
    color: rgba(244, 238, 250, 0);
}

/* Section titles */
.section-title {
    font-weight: 700;
    background: linear-gradient(90deg, rgba(253, 253, 253, 255) 95%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Stat tiles */
.stat-tile {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.25rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #e6e6e6;
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(90deg, rgba(254, 254, 254, 255) 96%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Timeline */
.timeline {
    position: relative;
    margin: 2rem auto;
    padding: 2rem 0;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 1rem 2rem;
    box-sizing: border-box;
}

.timeline-item .timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-date {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #5dfc8d;
}

@media (max-width: 767.98px) {
    .timeline::before {
        left: 8px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 2rem;
        padding-right: 1rem;
        margin-bottom: 1.5rem;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        text-align: left;
    }
}

/* Social Icons */
.social-icons a {
    color: #e6e6e6;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #5dfc8d;
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
}

/* Dark gradient section backgrounds */
.bg-dark-gradient {
    background: linear-gradient(180deg, #05050c 0%, #0a0a15 100%);
}

/* Responsive adjustments */
.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.ratio iframe {
    border-radius: 1rem 1rem 0 0;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-left-color: #000000;
    color: #ffffff;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.2);
}