body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
    min-height: 100vh;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ddd;
}

.animbg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(to top, #0a0a0a, #000000);
    overflow: hidden;
}

.star {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

nav {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: top 0.5s ease;
}

.logoc {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logoimg {
    height: 140px;
    width: auto;
}

.logoimg2 {
    height: 40px;
    width: auto;
}

.logotext {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logotext h1 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 700;
}

.logotext p {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.7;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    padding: 150px 0 80px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.subtitle {
    margin-bottom: 30px;
    font-size: 1.2em;
    opacity: 0.8;
}

.getscrpt {
    display: inline-block;
    padding: 10px 40px;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
    position: relative;
    top: 20px;
    overflow: hidden;
}

.getscrpt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.getscrpt:hover::before {
    transform: translateX(0);
}

.getscrpt:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.2);
}

.showcase {
    margin-top: 100px;
    padding-top: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
    position: relative;
    z-index: 1;
}

.showcase h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
    font-weight: 700;
}

.videoc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.videoslot {
    background-color: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
}

.videoslot:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255,255,255,0.1);
    z-index: 10;
}

.videoslot iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 20px;
    }

    .nav-links {
        margin-top: 20px;
    }

    .videoc {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .videoslot {
        position: static;
        margin-bottom: 20px;
    }

    .logoc {
        flex-direction: column;
        text-align: center;
    }
}