@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Poppins:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hind Siliguri', 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #0f0c29, #302b63, #1a0000);
    background-attachment: fixed;
    color: #ffffff;
    overflow-x: hidden;
}

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.primary-text { color: #ff3333; }

/* Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
}
.logo span { font-family: 'Brush Script MT', cursive; font-size: 38px; color: #ff3333; }

nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}
nav ul li a:hover, nav ul li a.active { color: #ff3333; text-shadow: 0 0 10px rgba(255, 51, 51, 0.5); }

/* Main Container */
.page-container {
    padding: 120px 50px 50px;
    min-height: calc(100vh - 80px);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
    background: -webkit-linear-gradient(#fff, #ff3333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-subtitle { text-align: center; color: #ccc; margin-bottom: 50px; font-size: 1.2rem; }

/* Buttons */
.btn-glass {
    display: inline-block;
    padding: 12px 35px;
    background: rgba(255, 51, 51, 0.2);
    border: 1px solid rgba(255, 51, 51, 0.5);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.4s;
    backdrop-filter: blur(5px);
}
.btn-glass:hover {
    background: #ff3333;
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.6);
    transform: translateY(-3px);
}

/* Footer */
footer {
    text-align: center;
    padding: 25px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: auto;
}
.dev-credit { margin-top: 10px; font-size: 0.95rem; color: #aaa; }
.dev-credit a {
    color: #ff4d4d;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.dev-credit a:hover { text-shadow: 0 0 8px #ff4d4d; }