:root {
    --primary: #2016F9;
    --primary-dark: #1a12ae;
    --primary-light: #5f56ff;
    --secondary: #1e293b;
    --accent: #00d084;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-radial: radial-gradient(circle at top right, var(--primary-light), var(--primary));
    --shadow: 0 5px 15px rgba(32, 22, 249, 0.1);
    --shadow-lg: 0 10px 30px rgba(32, 22, 249, 0.15);
    --shadow-glow: 0 0 30px rgba(32, 22, 249, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.35);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    --glass-text: #333;
    --glass-header-bg: rgba(255, 255, 255, 0.8);
    --glass-card-bg: rgba(255, 255, 255, 0.5);
    --glass-footer-bg: rgba(30, 41, 59, 0.95);
    --glass-footer-text: #fff;
}

[data-theme="dark"] {
    --primary: #5f56ff;
    --primary-dark: #2016F9;
    --primary-light: #8b85ff;
    --secondary: #0f172a;
    --accent: #00d084;
    --light: #0f172a;
    --dark: #f8f9fa;
    --gray: #94a3b8;
    --text-dark: #e2e8f0;
    --text-medium: #cbd5e1;
    --text-light: #94a3b8;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-radial: radial-gradient(circle at top right, var(--primary-light), var(--primary));
    --shadow: 0 5px 15px rgba(95, 86, 255, 0.2);
    --shadow-lg: 0 10px 30px rgba(95, 86, 255, 0.3);
    --shadow-glow: 0 0 40px rgba(95, 86, 255, 0.4);
    --glass-bg: rgba(30, 41, 59, 0.35);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --glass-text: #e2e8f0;
    --glass-header-bg: rgba(15, 23, 42, 0.85);
    --glass-card-bg: rgba(30, 41, 59, 0.5);
    --glass-footer-bg: rgba(15, 23, 42, 0.98);
    --glass-footer-text: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'League Spartan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--light);
    transition: background-color 0.5s ease, color 0.3s ease;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(32, 22, 249, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(95, 86, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(32, 22, 249, 0.02) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

[data-theme="dark"] body::before {
    background: 
        radial-gradient(circle at 20% 80%, rgba(95, 86, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 133, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(95, 86, 255, 0.03) 0%, transparent 50%);
}

@keyframes backgroundShift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient);
    border-radius: 3px;
    box-shadow: var(--shadow-glow);
}

.section-title p {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid var(--glass-border);
    color: white;
    box-shadow: var(--glass-shadow);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-glass:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    border: 2px solid transparent;
    box-shadow: var(--shadow-lg);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: var(--gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 0 0 rgba(32, 22, 249, 0);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.theme-toggle {
    position: fixed;
    top: 100px;
    right: 50px;
    z-index: 1001;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    width: 65px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-toggle:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-lg);
}

.theme-toggle-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(32, 22, 249, 0.3);
    font-size: 0.85rem;
}

[data-theme="dark"] .theme-toggle-icon {
    transform: translateX(33px);
}

header {
    background: var(--glass-header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: var(--glass-header-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: var(--shadow-lg);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    transition: padding 0.3s ease;
}

header.scrolled .header-container {
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.logo img {
    height: 55px;
    width: auto;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover img {
    transform: translateY(-3px) scale(1.02);
    filter: drop-shadow(0 4px 8px rgba(32, 22, 249, 0.2));
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 12px 22px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: block;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid transparent;
}

.nav-menu a:hover {
    color: var(--primary);
    background: var(--glass-card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow);
}

.mobile-toggle {
    display: none;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.mobile-toggle:hover {
    background: var(--glass-card-bg);
    transform: scale(1.05);
}

.hero {
    background: url('/assets/bekgron.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 200px 0 120px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(32, 22, 249, 0.5), rgba(95, 86, 255, 0.4));
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 45px;
    animation: fadeInUp 1s ease 0.2s both;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    animation: fadeInUp 1s ease 0.4s both;
}

.archive-header {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--light);
}

.about {
    background: var(--light);
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    mix-blend-mode: overlay;
}

.about-image:hover::before {
    opacity: 0.2;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.about-image:hover img {
    transform: scale(1.08);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2.3rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--glass-card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    background: var(--gradient);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    font-size: 1.3rem;
}

.feature-text h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.services {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card {
    background: var(--glass-card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    box-shadow: var(--shadow-glow);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(360deg);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.7;
}

.webinars {
    background: var(--light);
}

.webinar-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    gap: 10px;
}

.tab-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid rgb(169, 169, 169);
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn.active {
    color: white;
    background: var(--gradient);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.tab-btn:hover:not(.active) {
    background: var(--glass-card-bg);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

.webinar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    min-height: 400px;
    padding: 40px 20px;
}

.webinar-container .webinar-card {
    background: var(--glass-card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    height: 100%;
    margin: 0 auto;
}

.webinar-container .webinar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.webinar-container .webinar-image {
    height: 400px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.webinar-container .webinar-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.webinar-container .webinar-card:hover .webinar-image::after {
    opacity: 0.3;
}

.webinar-container .webinar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.webinar-container .webinar-card:hover .webinar-image img {
    transform: scale(1.1);
}

.webinar-container .webinar-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.webinar-container .webinar-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.webinar-container .webinar-desc {
    color: var(--text-medium);
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.7;
}

.webinar-container .webinar-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.webinar-container .webinar-meta i {
    margin-right: 8px;
    color: var(--primary);
}

.no-events-message {
    text-align: center;
    max-width: 500px;
    padding: 40px;
    background: var(--glass-card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

.no-events-message h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.no-events-message p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.archive-prompt {
    text-align: center;
    max-width: 600px;
    padding: 50px 40px;
    background: var(--glass-card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

.archive-prompt h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.archive-prompt p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.6;
}

.webinar-archive {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.webinar-archive .webinar-card {
    background: var(--glass-card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.webinar-archive .webinar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.webinar-archive .webinar-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.webinar-archive .webinar-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.webinar-archive .webinar-card:hover .webinar-image::after {
    opacity: 0.3;
}

.webinar-archive .webinar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.webinar-archive .webinar-card:hover .webinar-image img {
    transform: scale(1.1);
}

.webinar-archive .webinar-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.webinar-archive .webinar-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.webinar-archive .webinar-desc {
    color: var(--text-medium);
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.7;
}

.webinar-archive .webinar-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.webinar-archive .webinar-meta i {
    margin-right: 8px;
    color: var(--primary);
}

.partnership {
    background: var(--light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.partner-logo {
    background: var(--glass-card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s ease;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 20px;
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
    object-fit: contain;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

.discord {
    background: var(--light);
    text-align: center;
}

.discord-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    padding: 50px;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s ease;
}

.discord-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #5865F2;
}

.discord-icon {
    font-size: 5rem;
    color: #5865F2;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(88, 101, 242, 0.4));
}

.discord h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.discord p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: var(--text-medium);
    line-height: 1.8;
}

footer {
    background: var(--glass-footer-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--glass-footer-text);
    padding: 80px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--glass-footer-text);
    font-weight: 700;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.footer-column p {
    margin-bottom: 25px;
    opacity: 0.9;
    color: var(--glass-footer-text);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    color: var(--glass-footer-text);
    transition: all 0.3s ease;
}

.footer-links a {
    color: var(--glass-footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--primary);
    opacity: 1;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--glass-footer-text);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: var(--shadow-glow);
    border-color: transparent;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.95rem;
    opacity: 0.8;
    color: var(--glass-footer-text);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@media (min-width: 1100px) {
    .container {
        max-width: 1200px;
    }
    .theme-toggle {
        top: 30px;
        right: 20px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .theme-toggle {
        top: 100px;
        right: 10px;
    }

    .section-title h2 {
        font-size: 2.4rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .about-image, .about-text {
        flex: none;
        width: 100%;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.25rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .webinar-archive {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .webinar-container .webinar-image {
        height: 250px;
    }
    
    .webinar-container .webinar-card {
        max-width: 90%;
    }
    
    .webinar-container {
        padding: 0 15px;
        min-height: 300px;
    }
    
    .no-events-message,
    .archive-prompt {
        padding: 30px 20px;
    }
    
    .no-events-message h3,
    .archive-prompt h3 {
        font-size: 1.6rem;
    }
    
    .no-events-message p,
    .archive-prompt p {
        font-size: 1rem;
    }
   
    .theme-toggle {
        top: 100px;
        right: 10px;
    }
    
    .container {
        max-width: 720px;
        padding: 0 15px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .hero {
        padding: 160px 0 90px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .hero p {
        font-size: 1.15rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 82px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 82px);
        background: var(--glass-header-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin-bottom: 15px;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        width: 80%;
        margin: 0 auto;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .webinar-tabs {
        margin-bottom: 35px;
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .webinar-archive {
        grid-template-columns: 1fr;
    }
    
    .discord-content {
        padding: 35px 25px;
    }
    
    .discord h2 {
        font-size: 2.2rem;
    }
    
    .discord p {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .webinar-container {
        min-height: 250px;
    }
    
    .no-events-message,
    .archive-prompt {
        padding: 25px 15px;
    }
    
    .container {
        max-width: 540px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 140px 0 70px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .webinar-container .webinar-body,
    .webinar-archive .webinar-body {
        padding: 25px;
    }
    
    .webinar-container .webinar-title,
    .webinar-archive .webinar-title {
        font-size: 1.2rem;
    }
    
    .discord-content {
        padding: 30px 20px;
    }
    
    .discord h2 {
        font-size: 1.9rem;
    }
}