* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    overflow-x: hidden;
}

.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, #1e1b4b 0%, #0a0a0f 50%),
                radial-gradient(ellipse at bottom, #4c1d95 0%, #0a0a0f 50%);
    z-index: -1;
}

nav {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-nav {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.nav-links button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links button:hover {
    color: #ffffff;
    background: rgba(139, 92, 246, 0.1);
}

.nav-links button.active {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tab-content {
    display: none;
    animation: fadeIn 0.6s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* HOME TAB */
.hero-section {
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 2rem;
    margin: 3rem 0;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.showcase-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0;
}

.gallery-image {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.gallery-image:hover {
    transform: scale(1.03);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.team-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.team-card h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.member-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 3px solid #8b5cf6;
}

.member-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.member-role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* ABOUT TAB */
.about-hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    line-height: 2;
    font-size: 1.1rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8b5cf6;
}

/* SUBSCRIPTIONS TAB */
.subscriptions-hero {
    padding: 6rem 0 3rem;
    text-align: center;
}

.subscriptions-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.subscriptions-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
}

.subs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.sub-card {
    background: rgba(139, 92, 246, 0.05);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sub-card:hover::before {
    opacity: 1;
}

.sub-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #8b5cf6;
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.4);
}

.sub-tier {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.sub-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.sub-price {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
}

.sub-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.sub-features li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.sub-features li:before {
    content: "✓ ";
    color: #8b5cf6;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* DEPARTMENTS TAB */
.dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.dept-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.dept-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.3);
}

.dept-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
    overflow: hidden;
}

.dept-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dept-image .image-placeholder {
    font-size: 0.9rem;
}

.dept-content {
    padding: 2.5rem;
}

.dept-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #8b5cf6;
}

.dept-content p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.dept-requirements {
    background: rgba(0,0,0,3);
    padding:1.5rem;
    border-radius:12px;
    margin-top:1.5rem;
    border-left:3pxsolid#8b5cf6;
}
.dept-requirements strong {
color: #8b5cf6;
}
@media (max-width: 768px) {
.hero-title {
font-size: 3rem;
}
}
.hero-tagline {
    font-size: 1.3rem;
}

.nav-links {
    flex-wrap: wrap;
    justify-content: center;
}

.dept-grid {
    grid-template-columns: 1fr;
}

.about-hero h1,
.subscriptions-hero h1 {
    font-size: 2.5rem;
}