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

body {
    background: #012;
    min-height: 100vh;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
}
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 56px;
    background: #0a072d;
    color: #fff;
    display: flex;
    align-items: center;
    z-index: 100;
    box-shadow: 0 2px 12px #3a0ca322;
}
.logo {
    margin-left: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
    border: 2px solid #110e36;
}
.nav-links {
    display: flex;
    margin-left: auto;
    margin-right: 32px;
    gap: 28px;
    list-style: none;
}
.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 18px;
    border-radius: 22px;
    transition: background 0.2s, color 0.2s;
}
.nav-links li a.active,
.nav-links li a:hover {
    background: #7209b7;
    color: #fff;
}
.hamburger {
    display: none;
}
@media (max-width: 700px) {
    .nav-links {
        flex-direction: column;
        position: fixed;
        top: 56px;
        left: -220px;
        width: 180px;
        background: #0a072d;
        height: 100vh;
        padding-top: 24px;
        gap: 0;
        transition: left 0.3s;
        z-index: 150;
    }
    .nav-links.open {
        left: 0;
    }
    .nav-links li {
        margin: 0 0 18px 18px;
    }
    .hamburger {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        color: #fff;
        position: absolute;
        right: 18px;
        top: 10px;
        z-index: 200;
        cursor: pointer;
    }
}
.hero {
    margin-top: 80px;
    text-align: center;
    color: #fff;
    padding: 48px 16px 32px 16px;
}
.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 2px 16px #06022944;
}
.hero p {
    font-size: 1.2rem;
    color: #e0d7fa;
    margin-bottom: 0;
}
.profile-card {
    background: #060229;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(67,97,238,0.13);
    max-width: 340px;
    margin: 32px auto 0 auto;
    padding: 32px 20px 24px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.profile-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(67,97,238,0.13);
    border: 4px solid #fff;
    margin-bottom: 18px;
}
.profile-card h2 {
    color: #f7eaff;
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: bold;
}
.profile-card p {
    color: #f8f8ff;
    margin: 4px 0;
    font-size: 1.1rem;
    line-height: 1.4;
}
.pitch-video {
    display: flex;
    justify-content: center;
    margin: 48px 0 0 0;
    position: relative;
    z-index: 4;
}
.pitch-video-inner {
    background: linear-gradient(135deg, #060229 60%, #4361ee 100%);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(67,97,238,0.18), 0 2px 8px #7209b744;
    padding: 24px 18px 18px 18px;
    max-width: 540px;
    width: 98vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2.5px solid #7209b7;
}
.pitch-video-title {
    color:#fff;
    margin-bottom: 18px;
    font-size: 1.4rem;
    letter-spacing: 1px;
    font-weight: 700;
}
.pitch-video-title i {
    color: #ffd700;
}
.pitch-video-frame {
    width:100%;
    max-width:480px;
    aspect-ratio:16/9;
}
.pitch-video-frame iframe {
    border-radius:14px;
    box-shadow:0 4px 24px rgba(58,12,163,0.18);
    background:#060229;
    border:2px solid #4361ee;
    width: 100%;
    height: 270px;
}
.baseLight, .shadows, .balls {
    pointer-events: none;
}
.baseLight {
    position: absolute;
    top: 0; left: 0; right: 0; height: 100vh;
    background: radial-gradient(circle at 60% 20%, #4361ee22 0%, transparent 70%);
    z-index: 0;
}
.shadows, .balls {
    position: absolute;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 2;
    pointer-events: none;
}
.shadow, .ball {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
}
.shadow {
    width: 60px; height: 60px;
    background: #7209b733;
    filter: blur(12px);
    left: calc(50% + 180px  cos(var(--i)  30deg));
    top: calc(50% + 180px  sin(var(--i)  30deg));
}
.ball {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, #7209b7 0%, #4361ee 100%);
    left: calc(50% + 200px  cos(var(--i)  30deg));
    top: calc(50% + 200px  sin(var(--i)  30deg));
    box-shadow: 0 2px 8px #7209b744;
    animation: float 3s ease-in-out infinite alternate;
    animation-delay: calc(var(--i)  0.15s);
}
@keyframes float {
    to { transform: translateY(-18px) scale(1.08);}
}
.about {
    margin: 40px auto 0 auto;
    max-width: 900px;
    width: 100%;
    z-index: 1;
    background: transparent;
    box-sizing: border-box;
}
.about h1, .about p {
    position: relative;
    z-index: 3;
    background: #060229cc;
    color: #fff;
    margin: 0;
    padding: 12px 18px;
}
.about h1 {
    font-size: 1.5rem;
    text-align: center;
}
.about p {
    font-size: 1.1rem;
    text-align: left;
}
@media (min-width: 1200px) {
    .about {
        max-width: 1200px;
        font-size: 1.1rem;
    }
    .about h1 {
        font-size: 1.5rem;
    }
    .about p {
        font-size: 1.1rem;
    }
}
@media (max-width: 700px) {
    .profile-card {
        max-width: 98vw;
        padding: 18px 6px;
    }
    .about {
        max-width: 98vw;
        font-size: 1rem;
    }
}

/* Footer  */
.footer {
    width:100%;
    background:#0a072d;
    color:#fff;
    text-align:center;
    padding:24px 0 18px 0;
    font-size:1rem;
    letter-spacing:1px;
    box-shadow:0 -2px 12px rgba(67,97,238,0.10);
}
.footer-flex {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 24px;
}
.footer-section {
    flex:1;
    min-width:120px;
}
.footer-list {
    list-style:none;
    padding:0;
    margin:8px 0 0 0;
    font-size:0.97rem;
}
.footer-rating {
    font-size:1.3rem;
    margin:8px 0;
}
.footer-rating-score {
    font-size:1rem;
    color:#e0d7fa;
}

.footer-social {
    margin:8px 0;
    white-space:nowrap;
}
.footer-social a {
    color:#fff;
    margin:0 12px;
    text-decoration:none;
    font-size:1.2rem;
}
.about-footer-gap {
    height: 160px;
}
.footer-copyright {
    margin-top:18px;
    opacity:0.8;
}