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

:root {
    --purple-dark: #1a0b2e;
    --purple-bright: #7b2cbf;
    --orange-dark: #c1440e;
    --orange-bright: #ff6b35;
    --blue-dark: #0c1b4d;
    --blue-bright: #4a90e2;
    --red-dark: #6b0f1a;
    --red-bright: #ff385c;
    --green-dark: #0f3b2e;
    --green-bright: #2ecc71;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3%;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.nav-logo i {
    color: var(--purple-bright);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a.active,
.nav-links a:hover {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple-bright);
    transition: width 0.3s ease;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

.nav-music i {
    font-size: 1.2rem;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s ease;
}

.nav-music i:hover {
    color: var(--purple-bright);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 3% 2rem 3%;
    background: radial-gradient(ellipse at center, rgba(123, 44, 191, 0.15) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, var(--purple-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #aaa;
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    animation: fadeInUp 1.4s ease;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--purple-bright);
}

.stat-label {
    font-size: 1.2rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Section */
.section {
    padding: 4rem 3%;
    min-height: auto;
}

.page-section {
    padding-top: 6rem;
    min-height: 100vh;
}

/* Quick Links Section */
.quick-links-section {
    padding: 4rem 3%;
    background: radial-gradient(ellipse at center, rgba(123, 44, 191, 0.05) 0%, transparent 70%);
}

.quick-links-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.quick-link-card {
    position: relative;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: rgba(123, 44, 191, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(123, 44, 191, 0.3);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    overflow: hidden;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(123, 44, 191, 0.3);
    border-color: rgba(123, 44, 191, 0.6);
}

.quick-link-card:hover::before {
    opacity: 1;
}

.quick-link-icon {
    font-size: 3rem;
    color: var(--purple-bright);
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    z-index: 1;
}

.quick-link-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.quick-link-description {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.quick-link-count {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(123, 44, 191, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--purple-bright);
    border: 1px solid rgba(123, 44, 191, 0.5);
    position: relative;
    z-index: 1;
}

/* Group Photo Section */
.group-photo-section {
    padding: 5rem 3%;
    background: radial-gradient(ellipse at center, rgba(123, 44, 191, 0.1) 0%, transparent 70%);
}

.group-photo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.group-photo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    background: rgba(123, 44, 191, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(123, 44, 191, 0.3);
}

.group-photo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(123, 44, 191, 0.3);
}

.group-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.group-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 3rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.group-photo-card:hover .group-photo-overlay {
    transform: translateY(0);
}

.group-photo-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #fff;
    text-transform: uppercase;
}

.group-photo-description {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.6;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--purple-bright), transparent);
}

/* Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Member Card */
.member-card {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.member-card:nth-child(4n+1) {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-bright) 100%);
}

.member-card:nth-child(4n+2) {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-bright) 100%);
}

.member-card:nth-child(4n+3) {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-bright) 100%);
}

.member-card:nth-child(4n+4) {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-bright) 100%);
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.member-card:hover .card-background {
    opacity: 1;
}

.event-card:hover .card-background {
    opacity: 1;
}

.card-content {
    position: relative;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.member-name {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.member-role {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.member-tech-role {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.member-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    transition: opacity 0.3s ease;
}

.member-card:hover .member-description {
    opacity: 0;
}

.member-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Event Card */
.event-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.event-card:nth-child(3n+1) {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-bright) 100%);
}

.event-card:nth-child(3n+2) {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-bright) 100%);
}

.event-card:nth-child(3n+3) {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-bright) 100%);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.event-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.event-icon {
    font-size: 2rem;
}

.event-title {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.2;
}

.event-date {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.event-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.event-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.event-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.event-card:hover .event-description {
    opacity: 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 3%;
    background: rgba(26, 26, 46, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Design */

/* Large Tablets and Small Laptops */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 2%;
    }
    
    .hero-section {
        padding: 6rem 2% 2rem 2%;
    }
    
    .section {
        padding: 3rem 2%;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .member-card,
    .event-card {
        height: 450px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 3%;
    }
    
    .nav-logo {
        font-size: 1.3rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .hero-section {
        padding: 5rem 3% 2rem 3%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .group-photo-section {
        padding: 3rem 3%;
    }
    
    .group-photo-card {
        height: 450px;
    }
    
    .group-photo-title {
        font-size: 1.6rem;
    }
    
    .group-photo-description {
        font-size: 1rem;
    }
    
    .quick-links-section {
        padding: 3rem 3%;
    }
    
    .quick-links-container {
        gap: 1.5rem;
    }
    
    .quick-link-card {
        padding: 2.5rem 1.5rem;
    }
    
    .quick-link-icon {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .quick-link-title {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 3rem 3%;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .member-card,
    .event-card {
        height: auto;
        min-height: 400px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .member-name {
        font-size: 2rem;
    }
    
    .member-role {
        font-size: 0.95rem;
    }
    
    .member-description {
        font-size: 0.9rem;
    }
    
    .event-title {
        font-size: 1.5rem;
    }
    
    .event-icon {
        font-size: 1.5rem;
    }
}

/* Small Tablets and Large Phones */
@media (max-width: 580px) {
    .navbar {
        padding: 0.7rem 4%;
    }
    
    .nav-logo {
        font-size: 1.2rem;
        gap: 0.5rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .hero-section {
        padding: 4.5rem 4% 2rem 4%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .section {
        padding: 2.5rem 4%;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .cards-container {
        gap: 1.2rem;
    }
    
    .member-card,
    .event-card {
        min-height: 380px;
    }
    
    .card-content {
        padding: 1.3rem;
    }
    
    .member-name {
        font-size: 1.8rem;
    }
    
    .member-role {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .member-tech-role {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .member-description {
        font-size: 0.88rem;
        margin-bottom: 1rem;
    }
    
    .event-title {
        font-size: 1.4rem;
    }
    
    .event-date {
        font-size: 0.85rem;
    }
    
    .event-badge {
        padding: 0.25rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .event-description {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .navbar {
        padding: 0.6rem 5%;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .nav-logo {
        font-size: 1.1rem;
    }
    
    .nav-links {
        gap: 0.8rem;
        font-size: 0.8rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
    
    .nav-music i {
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 4rem 5% 2rem 5%;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .group-photo-section {
        padding: 2rem 5%;
    }
    
    .group-photo-card {
        height: 350px;
        border-radius: 15px;
    }
    
    .group-photo-overlay {
        padding: 2rem 1.5rem 1.5rem;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    }
    
    .group-photo-title {
        font-size: 1.4rem;
    }
    
    .group-photo-description {
        font-size: 0.9rem;
    }
    
    .quick-links-section {
        padding: 2rem 5%;
    }
    
    .quick-links-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .quick-link-card {
        padding: 2rem 1.5rem;
    }
    
    .quick-link-icon {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .quick-link-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .quick-link-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .quick-link-count {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .section {
        padding: 2rem 5%;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title::after {
        width: 80px;
        height: 3px;
    }
    
    .cards-container {
        gap: 1rem;
        grid-template-columns: 1fr;
    }
    
    .member-card,
    .event-card {
        height: auto;
        min-height: 350px;
        border-radius: 15px;
    }
    
    .card-content {
        padding: 1.2rem;
    }
    
    .member-name {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .member-role {
        font-size: 0.85rem;
        letter-spacing: 1px;
        margin-bottom: 0.4rem;
    }
    
    .member-tech-role {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .member-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .member-links {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
    
    .event-header {
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .event-icon {
        font-size: 1.3rem;
    }
    
    .event-title {
        font-size: 1.3rem;
    }
    
    .event-date {
        font-size: 0.8rem;
    }
    
    .event-meta {
        gap: 0.6rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
    }
    
    .event-badge {
        padding: 0.2rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .event-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    footer {
        padding: 1.5rem 5%;
        font-size: 0.85rem;
    }
}

/* Very Small Devices */
@media (max-width: 360px) {
    .navbar {
        padding: 0.5rem 5%;
    }
    
    .nav-logo {
        font-size: 1rem;
    }
    
    .nav-links {
        gap: 0.6rem;
    }
    
    .nav-links a {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .section {
        padding: 1.5rem 5%;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .member-card,
    .event-card {
        min-height: 320px;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .member-name {
        font-size: 1.4rem;
    }
    
    .event-title {
        font-size: 1.2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: var(--purple-bright);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9d4edd;
}
