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

:root {
    --primary: #a855f7;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Fallback background color agar video na chale */
body {
    background-color: #050505;
    color: var(--white);
    overflow-x: hidden;
}

/* --- Video Background Settings --- */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -10;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Pura screen cover karega */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Thoda andhera taaki text dikhe */
}

/* --- Navbar --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu-icon {
    font-size: 26px;
    cursor: pointer;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.logo {
    font-size: 26px;
    font-weight: 700;
    text-shadow: 0 0 10px var(--primary);
}

/* --- Sidebar --- */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.4s;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 2px 0 10px rgba(0,0,0,0.5);
}

.sidebar a {
    padding: 15px;
    text-decoration: none;
    font-size: 18px;
    color: #ccc;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: var(--primary);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
    cursor: pointer;
}

/* --- Main Content --- */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 80px; /* Sections ke beech ka gap */
}

.box {
    text-align: center;
    /* Animation hata di, taaki content visible rahe */
}

/* Text Styles */
h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 4px 10px black;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px black;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
}

.subtitle {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px black;
}

.description {
    color: #eee;
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-shadow: 0 2px 5px black;
}

/* --- Buttons --- */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    padding: 14px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

.primary-btn {
    background: var(--primary);
    color: white;
}

.secondary-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: white;
}

/* --- Icons & Channels --- */
.skill-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 40px;
    text-shadow: 0 4px 5px black;
}

.channel-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.channel-card {
    text-decoration: none;
    color: white;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0,0,0,0.6); /* Halka dark background card ke liye */
    border: 1px solid rgba(255,255,255,0.1);
}

.channel-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.card-info {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Form --- */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.7);
    color: white;
    outline: none;
}

input:focus, textarea:focus {
    border-color: var(--primary);
}

/* --- Socials --- */
.social-links-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 30px;
    margin-bottom: 20px;
}

.social-links-row a {
    color: white;
    text-shadow: 0 4px 5px black;
}

.insta-btn {
    font-size: 40px;
    color: white;
}

.safety-links {
    margin-top: 30px;
}

.safety-links a {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0 10px;
    text-decoration: none;
}

.copyright {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 50px;
}
