/* Variables */
:root {
    --primary: #CD5CE6;
    --secondary: #78B153;
    --accent: #BFF9F9;
    --teal: #459698;
    --dark: #121212;
    --darker: #0a0a0a;
    --light: #f0f0f0;
    --neon-glow: 0 0 10px rgba(205, 92, 230, 0.7), 0 0 20px rgba(205, 92, 230, 0.5);
    --teal-glow: 0 0 10px rgba(69, 150, 152, 0.7), 0 0 20px rgba(69, 150, 152, 0.5);
}

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

@font-face {
    font-family: 'StalinistOne';
    src: url('../assets/fonts/StalinistOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body {
    font-family: 'Courier New', 'Monaco', monospace;
    /* updated to use Courier New */
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(rgba(0, 0, 0, 0.9) 0px,
            rgba(0, 0, 0, 0.9) 1px,
            transparent 1px,
            transparent 2px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: all 0.3s ease;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'StalinistOne', 'Poppins', Arial, sans-serif;
    /* updated font-family */
    letter-spacing: 1px;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--teal));
}

p {
    margin-bottom: 20px;
}

section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(odd) {
    background-color: var(--darker);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: var(--neon-glow);
}

.btn-secondary {
    background-color: var(--teal);
    color: white;
    box-shadow: var(--teal-glow);
}

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

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

.btn-small {
    padding: 8px 15px;
    font-size: 0.8rem;
}

/* Navigation */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    transition: all 0.3s ease;
}

#main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'StalinistOne', 'Poppins', Arial, sans-serif;
    /* updated font-family for Dc416 logo */
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: var(--neon-glow);
}

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

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--light);
    position: relative;
    padding-bottom: 5px;
    font-weight: 500;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--teal));
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--light);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../images/toronto-skyline.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.1) 2px,
            transparent 2px,
            transparent 4px);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: var(--neon-glow);
}

.hero .highlight {
    color: var(--primary);
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.digital-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

/* Mission Section */
.mission {
    text-align: center;
}

.mission p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Event Cards */
.event-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
}

.event-card {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    display: flex;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(205, 92, 230, 0.3);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(205, 92, 230, 0.5);
}

.event-date {
    background-color: var(--primary);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 80px;
}

.event-date .month {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
}

.event-details {
    padding: 20px;
    flex-grow: 1;
}

.event-details h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.event-meta {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 10px;
}

.event-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.event-description {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Blog Cards */
.blog-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
}

.blog-card {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 370px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(69, 150, 152, 0.3);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(69, 150, 152, 0.5);
}

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

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-meta {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 10px;
}

.blog-excerpt {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

/* Community Section */
.community {
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('../images/community-bg.jpg');
    background-size: cover;
    background-position: center;
}

.community p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(30, 30, 30, 0.7);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    color: var(--light);
    transition: all 0.3s ease;
    border: 1px solid rgba(205, 92, 230, 0.3);
}

.social-link i {
    font-size: 1.2rem;
    color: var(--primary);
}

.social-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.social-link:hover i {
    color: white;
}

/* Footer */
footer {
    background-color: var(--darker);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(205, 92, 230, 0.3);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 2rem;
    color: var(--primary);
    text-shadow: var(--neon-glow);
    margin-bottom: 10px;
    text-align: left;
}

.footer-logo h2::after {
    display: none;
}

.footer-logo p {
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-grow: 1;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-column ul li i {
    color: var(--primary);
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #666;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
        url('../images/header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(205, 92, 230, 0.3);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--primary);
    text-shadow: var(--neon-glow);
}

.breadcrumbs {
    color: #aaa;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #ccc;
}

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

/* Resources Page */
.resource-intro {
    text-align: center;
}

.resource-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1px;
}

.tab-button {
    background: transparent;
    border: none;
    color: #aaa;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.tab-button::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--teal));
    transition: width 0.3s ease;
}

.tab-button:hover {
    color: var(--light);
}

.tab-button.active {
    color: var(--primary);
}

.tab-button.active::after {
    width: 100%;
}

.tab-content {
    display: none;
    padding: 40px 0;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.resource-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
}

.resource-card {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    display: flex;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(205, 92, 230, 0.3);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(205, 92, 230, 0.5);
}

.resource-icon {
    background-color: var(--primary);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.resource-icon i {
    font-size: 2.5rem;
    color: white;
}

.resource-details {
    padding: 20px;
    flex-grow: 1;
}

.resource-details h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.resource-details p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.resource-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.resource-link:hover {
    color: var(--teal);
}

.resource-link:hover i {
    transform: translateX(3px);
}

/* Learning Path */
.beginner-path {
    max-width: 800px;
    margin: 40px auto;
    background-color: rgba(30, 30, 30, 0.5);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(205, 92, 230, 0.3);
}

.beginner-path h4 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
}

.path-steps {
    position: relative;
}

.path-steps::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 18px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--teal));
    z-index: 0;
}

.path-step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.path-step:last-child {
    margin-bottom: 0;
}

.step-number {
    background-color: var(--primary);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    margin-right: 20px;
    z-index: 1;
    box-shadow: var(--neon-glow);
}

.step-content {
    flex-grow: 1;
}

.step-content h5 {
    margin-bottom: 5px;
    color: var(--accent);
}

/* Tools Categories */
.tools-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tools-category {
    flex: 1;
    min-width: 300px;
    background-color: rgba(30, 30, 30, 0.5);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(69, 150, 152, 0.3);
}

.tools-category h4 {
    color: var(--teal);
    margin-bottom: 20px;
    text-align: center;
}

.tools-list li {
    margin-bottom: 20px;
    list-style: none;
}

.tools-list li:last-child {
    margin-bottom: 0;
}

.tools-list a {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 5px;
}

.tools-list p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Community Resources */
.community-resources {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.community-resource {
    flex: 1;
    min-width: 300px;
    background-color: rgba(30, 30, 30, 0.5);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(205, 92, 230, 0.3);
}

.community-resource h4 {
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.community-resource h4 i {
    font-size: 1.2rem;
}

.community-resource ul {
    list-style: none;
}

.community-resource ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.community-resource ul li::before {
    content: "→";
    color: var(--accent);
    position: absolute;
    left: 0;
}

/* Blog Page Styles */
.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.blog-main {
    flex: 2;
    min-width: 300px;
}

.blog-sidebar {
    flex: 1;
    min-width: 300px;
}

.blog-post {
    margin-bottom: 60px;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(69, 150, 152, 0.2);
}

.post-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 0.9rem;
}

.post-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.post-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: left;
}

.post-content h2::after {
    display: none;
}

.post-excerpt {
    margin-bottom: 25px;
}

/* Blog Sidebar */
.sidebar-widget {
    margin-bottom: 40px;
    background-color: rgba(30, 30, 30, 0.5);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(205, 92, 230, 0.2);
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Search Widget */
.search-form {
    display: flex;
    margin-top: 10px;
}

.search-form input {
    flex-grow: 1;
    background-color: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 5px 0 0 5px;
    color: var(--light);
    font-size: 0.9rem;
}

.search-form button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-form button:hover {
    background-color: #b643d0;
}

/* Categories Widget */
.categories-widget ul {
    list-style: none;
}

.categories-widget ul li {
    margin-bottom: 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.categories-widget ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.categories-widget a {
    display: flex;
    justify-content: space-between;
    color: #ccc;
    transition: all 0.3s ease;
}

.categories-widget a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.categories-widget a span {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Recent Posts Widget */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post {
    display: flex;
    gap: 15px;
    align-items: center;
}

.recent-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid rgba(205, 92, 230, 0.3);
}

.recent-post-content {
    flex-grow: 1;
}

.recent-post-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.recent-post-content h4 a {
    color: var(--light);
    transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
    color: var(--primary);
}

.recent-post-content .post-date {
    font-size: 0.8rem;
    color: #aaa;
}

/* Tags Widget */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    background-color: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(205, 92, 230, 0.3);
    color: #ccc;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(205, 92, 230, 0.3);
    border-radius: 5px;
    color: var(--light);
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination a.active {
    background-color: var(--primary);
    color: white;
}

.pagination a:hover:not(.active) {
    background-color: rgba(205, 92, 230, 0.2);
}

.pagination a.next {
    width: auto;
    padding: 0 15px;
}

.pagination a.next i {
    margin-left: 5px;
}

/* CTA Section */
.cta {
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 1px solid rgba(205, 92, 230, 0.3);
    border-bottom: 1px solid rgba(205, 92, 230, 0.3);
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Contact Page Styles */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    background-color: rgba(30, 30, 30, 0.7);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(205, 92, 230, 0.3);
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
    background-color: rgba(30, 30, 30, 0.7);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(205, 92, 230, 0.3);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-text p {
    margin-bottom: 5px;
    color: #ccc;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(205, 92, 230, 0.3);
    border-radius: 50%;
    color: var(--light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--light);
    font-family: 'Poppins', Arial, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-check input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.form-check label {
    font-size: 0.9rem;
    color: #ccc;
}

.error-message {
    color: #ff5757;
    font-size: 0.9rem;
    margin-top: 5px;
}

.success-message {
    background-color: rgba(69, 150, 152, 0.2);
    border: 1px solid var(--teal);
    color: var(--accent);
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(205, 92, 230, 0.3);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.show {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Event Filters */
.event-filters {
    background-color: rgba(18, 18, 18, 0.7);
    padding: 20px 0;
    border-bottom: 1px solid rgba(205, 92, 230, 0.3);
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--light);
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.filter-btn:hover:not(.active) {
    background-color: rgba(205, 92, 230, 0.2);
}

.event-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.event-search input {
    flex-grow: 1;
    padding: 12px 15px;
    background-color: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px 0 0 5px;
    color: var(--light);
    font-size: 0.9rem;
}

.event-search button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.events-list {
    display: block;
}

.events-list.hidden {
    display: none;
}

.event-card.featured {
    border: 2px solid var(--primary);
    position: relative;
}

.event-card.featured .event-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-speakers {
    margin-top: 20px;
    margin-bottom: 20px;
}

.event-speakers h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.speaker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.speaker img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.event-card.past {
    opacity: 0.8;
}

.past-event-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* About Page Styles */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(205, 92, 230, 0.5);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.mission-vision-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.mission-box,
.vision-box {
    flex: 1;
    min-width: 300px;
    background-color: rgba(30, 30, 30, 0.7);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.mission-box {
    border: 1px solid rgba(205, 92, 230, 0.3);
}

.vision-box {
    border: 1px solid rgba(69, 150, 152, 0.3);
}

.mission-box h2,
.vision-box h2 {
    margin-bottom: 20px;
}

/* Team Members */
.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.team-member {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 260px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(205, 92, 230, 0.3);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(205, 92, 230, 0.5);
}

.member-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 0 5px;
    font-size: 1.3rem;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.member-bio {
    padding: 0 20px 20px;
    font-size: 0.9rem;
    color: #ccc;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-bottom: 20px;
}

.member-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(18, 18, 18, 0.7);
    border-radius: 50%;
    color: var(--light);
    transition: all 0.3s ease;
    border: 1px solid rgba(205, 92, 230, 0.3);
}

.member-socials a:hover {
    background-color: var(--primary);
    color: white;
}

/* Impact Stats */
.impact-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

.stat-box {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 200px;
    text-align: center;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(205, 92, 230, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
    font-family: 'Cyberpunk', 'Poppins', Arial, sans-serif;
}

.stat-label {
    color: var(--accent);
    font-size: 1rem;
}

/* Testimonials */
.testimonials {
    text-align: center;
}

.testimonials h3 {
    margin-bottom: 30px;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(69, 150, 152, 0.3);
}

.testimonial-text {
    padding: 30px;
    position: relative;
}

.testimonial-text:before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: rgba(205, 92, 230, 0.1);
    position: absolute;
    top: 10px;
    left: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: rgba(18, 18, 18, 0.7);
    border-top: 1px solid rgba(69, 150, 152, 0.3);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    margin-bottom: 0;
    color: #aaa;
    font-size: 0.9rem;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Audio Control Button */
.audio-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--darker);
    color: var(--primary);
    border: 2px solid var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--neon-glow);
    opacity: 0.7;
}

.audio-control:hover,
.audio-control:focus {
    opacity: 1;
    transform: scale(1.05);
}

.audio-control.active {
    background-color: var(--primary);
    color: white;
}

.audio-control i {
    font-size: 1.2rem;
}

/* Mobile optimization for audio control */
@media screen and (max-width: 768px) {
    .audio-control {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

    .audio-control i {
        font-size: 1rem;
    }
}