:root {
    --main-bg: #0a0a0a;
    --nav-bg: rgba(15, 15, 15, 0.95);
    --white: #ffffff;
    --primary: #3498db;
    --hover-color: rgba(52, 152, 219, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow: hidden;
    height: 100%;
    scroll-behavior: smooth;
    background: var(--main-bg);
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.section {
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    padding-top: 70px;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.navbar {
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    color: var(--white) !important;
    margin: 0 1.5rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.login-btn {
    position: relative;
    background: rgba(25, 25, 35, 0.95);
    border: 2px solid var(--primary);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.2);
    cursor: pointer;
}

#logoutBtn {
  display: none;
  margin-top: 20px;
}

.login-text {
    position: relative;
    z-index: 1;
}

.login-btn:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.6);
    transform: translateY(-2px);
}

.login-btn:hover .login-hover {
    transform: rotate(45deg) translate(20%, 100%);
}

.event-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.auth-modal-content {
  background: rgba(15, 15, 15, 1);
  padding: 2rem;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  position: relative;
  border: 1px solid rgba(52, 152, 219, 0.15);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.auth-modal.show .auth-modal-content {
  transform: scale(1);
  opacity: 1;
}

.auth-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.auth-modal-close:hover {
  transform: scale(1.2);
}

.mb-4 {
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

.auth-provider-btn {
  width: 100%;
  margin: 0.5rem 0;
  padding: 1rem;
  border: 2px solid rgba(52, 152, 219, 0.3);
  border-radius: 10px;
  background: rgba(25, 25, 35, 1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: scale(1);
  box-shadow: 0 0 0 rgba(52, 152, 219, 0);
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out, opacity 0.4s ease, filter 0.4s ease;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  border: none;
  opacity: 1;
}

.auth-provider-btn img {
  width: 24px;
  height: 24px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.animate__animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.auth-modal.show .animate__animated {
  animation-name: scaleIn;
}

.auth-provider-btn.discord {
  border-color: rgba(114, 137, 218, 0.3);
}

.auth-provider-btn.discord:hover {
  box-shadow: 0 0 15px rgba(114, 137, 218, 0.5);
}

.auth-provider-btn.google {
  border-color: rgba(219, 68, 55, 0.3);
}

.auth-provider-btn.google:hover {
  box-shadow: 0 0 15px rgba(219, 68, 55, 0.5);
}

.auth-provider-btn.telegram {
  border-color: rgba(0, 136, 204, 0.3);
}

.auth-provider-btn.telegram:hover {
  box-shadow: 0 0 15px rgba(0, 136, 204, 0.5);
}

.auth-provider-btn.twitch {
  border-color: rgba(100, 65, 165, 0.3);
}

.auth-provider-btn.twitch:hover {
  box-shadow: 0 0 15px rgba(100, 65, 165, 0.5);
}

.profile-container {
  margin-top: 100px;
}

.profile-card {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 2rem;
}

.auth-provider-btn {
    width: 100%;
    margin: 0.5rem 0;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s ease, opacity 0.4s ease, filter 0.4s ease;
    opacity: 1;
}

.auth-provider-btn:hover {
    background: rgba(255,255,255,0.2);
}

.auth-provider-btn img {
    width: 24px;
    height: 24px;
}

@media (max-width: 992px) {
    .navbar {
        padding: 1rem;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--nav-bg);
        padding: 2rem;
        text-align: center;
    }
    
    .nav-link {
        margin: 1rem 0;
        font-size: 1.1rem;
    }
    
    .login-btn {
        margin-top: 1.5rem;
        width: 100%;
        padding: 0.8rem 1.5rem;
    }

    .profile-btn {
        padding: 0 1rem;
        width: 100%;
    }
    
    .hamburger {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 3.5rem !important;
    }
    
    .display-3 {
        font-size: 2.5rem !important;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .event-card {
        margin-bottom: 1.5rem;
    }
}

.profile-btn {
    position: relative;
    background: rgba(25, 25, 35, 0.95);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 0 1.2rem;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.2);
    cursor: pointer;
}

.profile-btn:hover {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.6);
    transform: translateY(-2px);
}

.profile-btn span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .login-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .profile-btn {
        padding: 0 0.8rem;
    }

    .profile-btn span {
        max-width: 90px;
        font-size: 0.85rem;
    }
}

.profile-page .navbar-brand .logo {
    width: 120px;
    height: auto;
    transform: translateY(2px);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .profile-page .navbar-brand .logo {
        width: 90px;
    }
}

.profile-container {
    padding-top: 100px;
}

.profile-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(52, 152, 219, 0.5);
    transition: transform 0.3s ease;
}

#section2,
#section4 {
    background: linear-gradient(135deg, 
        rgba(15, 15, 15, 0.98),
        rgba(30, 30, 30, 0.97)) 
        fixed;
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(52, 152, 219, 0.15);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-card:hover {
    background: rgba(52, 152, 219, 0.05);
    transform: translateY(-5px);
    border-color: rgba(52, 152, 219, 0.3);
}

.contact-item {
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ff6b6b;
}

.founder-card {
    animation: border-pulse 6s infinite;
}

.founder-card:hover .founder-img {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(52, 152, 219, 0.3);
}

.founder-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary);
    padding: 3px;
    box-shadow: 0 0 25px rgba(52, 152, 219, 0.2);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.social-links .social-icon {
    width: 60px;
    height: 60px;
    padding: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-links .social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-icon:hover img {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    #section4 .row {
        flex-direction: column-reverse;
    }
    
    .founder-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .founder-img {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .founder-img {
        height: 120px;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@keyframes border-pulse {
    0% { border-color: rgba(52, 152, 219, 0.15); }
    50% { border-color: rgba(52, 152, 219, 0.4); }
    100% { border-color: rgba(52, 152, 219, 0.15); }
}

#section4 {
    background: linear-gradient(135deg, 
        rgba(15, 15, 15, 0.98),
        rgba(30, 30, 30, 0.97)) 
        fixed;
    backdrop-filter: blur(20px);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#section4 .container {
    max-width: 1400px;
    padding: 0 1rem;
}

#section4 h2 {
    font-weight: 700;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 4rem !important;
    position: relative;
    z-index: 2;
    color: #fff;
    opacity: 0;
}

.founder-card {
    background: rgba(25, 25, 35, 0.95);
    border: 1px solid rgba(52, 152, 219, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.5s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    overflow: visible;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.3);
}

.founder-img {
    width: 160px;
    height: 160px;
    border: 4px solid #3498db;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.founder-card:hover .founder-img {
    transform: translateX(-50%) scale(1.05) rotate(3deg);
    box-shadow: 0 0 40px rgba(52, 152, 219, 0.4);
}

.founder-content {
    text-align: center;
    padding-top: 100px;
}

.founder-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.founder-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, transparent);
    margin: 1rem auto;
    border-radius: 2px;
    opacity: 0.8;
    transition: width 0.3s ease;
}

.founder-card:hover .founder-line {
    width: 100px;
}

.position {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.bio {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon:hover {
    background: rgba(52, 152, 219, 0.2);
    transform: translateY(-5px);
}

.social-icon:hover img {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    #section4 {
        padding: 4rem 0;
    }

    .founder-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .founder-img {
        width: 120px;
        height: 120px;
        top: -60px;
    }

    .founder-content {
        padding-top: 70px;
    }

    .bio {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .founder-card {
        padding: 1.5rem;
    }

    .founder-img {
        width: 100px;
        height: 100px;
        top: -50px;
    }

    .founder-content {
        padding-top: 60px;
    }

    .contact-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .icon-box {
        width: 50px;
        height: 50px;
    }

    .founder-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .founder-img {
        width: 80px;
        height: 80px;
        top: -40px;
    }

    .founder-content {
        padding-top: 50px;
    }

    .founder-content h3 {
        font-size: 1.3rem;
    }

    .bio {
        font-size: 0.9rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}

#section3 {
    background: #0a0a0a;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

#section3 h2 {
    font-weight: 700;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 4rem !important;
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    opacity: 0;
}

#section3 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 0 1rem;
    max-width: 1400px;
}

.events-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(25, 25, 35, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(52, 152, 219, 0.15);
    transition: transform 0.3s ease, box-shadow 0.5s ease;
    height: 500px;
    position: relative;
    box-shadow: 0 0 0 rgba(52, 152, 219, 0);
}

.events-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.3);
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.events-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 1rem 0;
    height: calc(100% - 6rem);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.events-track::-webkit-scrollbar {
    display: none;
}

.event-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(52, 152, 219, 0.15);
    border-radius: 20px;
    padding: 2rem;
    min-width: 320px;
    height: 100%;
    transition: transform 0.3s ease;
    opacity: 0;
    position: relative;
}

.event-card.animate__fadeInUp {
    opacity: 1;
}

.event-card:hover {
    transform: scale(1.05);
    z-index: 1;
}

.event-date {
    color: #3498db;
    font-weight: 500;
    margin-bottom: 1rem;
}

.event-card h3 {
    margin-bottom: 1rem;
}

.event-card p {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.event-footer {
    display: flex;
    justify-content: flex-end;
}

.event-link {
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.event-link:hover {
    color: #3498db;
}

.event-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #3498db;
    transition: width 0.3s ease;
}

.event-link:hover::after {
    width: 100%;
}

.calendar-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(25, 25, 35, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(52, 152, 219, 0.15);
    transition: transform 0.3s ease, box-shadow 0.5s ease;
    height: 500px;
    position: relative;
    box-shadow: 0 0 0 rgba(52, 152, 219, 0);
}

.calendar-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.3);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-auto-rows: 55px;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
    min-height: 0;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.calendar-grid::-webkit-scrollbar {
    display: none;
}

.day {
    text-align: center;
    padding: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.date {
    text-align: center;
    padding: 0.5rem;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.date.has-event::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #3498db;
    border-radius: 50%;
}

.date:hover {
    background: rgba(52, 152, 219, 0.1);
}

.scroll-btn, .month-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.scroll-btn:hover, .month-btn:hover {
    color: #3498db;
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.calendar-grid > div {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

@media (max-width: 992px) {
    .events-wrapper, .calendar-wrapper {
        max-width: 100%;
        height: auto;
        padding: 2rem;
    }

    .events-track {
        flex-direction: column;
        height: auto;
        overflow-x: hidden;
        padding: 0.5rem 0;
    }

    .event-card {
        min-width: 100%;
        height: auto;
        margin: 0.5rem 0;
    }

    .calendar-grid {
        grid-auto-rows: 50px;
        height: auto;
        max-height: unset;
    }
}

@media (max-width: 768px) {
    #section3 {
        padding: 4rem 0;
    }

    .events-wrapper, .calendar-wrapper {
        padding: 1.5rem;
    }

    .event-card {
        padding: 1.5rem;
    }

    .calendar-grid {
        grid-auto-rows: 40px;
        font-size: 1rem;
    }

    .date {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .events-wrapper, .calendar-wrapper {
        padding: 1rem;
    }

    .event-card {
        padding: 1rem;
    }

    .calendar-grid {
        grid-auto-rows: 35px;
    }
}

#section5 {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

#section5 .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

#section5 h2 {
    font-weight: 700;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.faq-list {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(52, 152, 219, 0.15);
    border-radius: 15px;
    overflow: hidden;
    background: rgba(25, 25, 35, 0.95);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(52, 152, 219, 0.3);
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(52, 152, 219, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
    display: inline;
}

.faq-toggle {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.5s ease, 
                transform 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    #section5 {
        padding: 4rem 0;
    }

    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-toggle {
        font-size: 1.2rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

.about-section {
    background: linear-gradient(135deg, 
        rgba(15, 15, 15, 0.98),
        rgba(30, 30, 30, 0.97)) 
        fixed;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-section .container {
    max-width: 1200px;
    padding: 0 1rem;
}

.about-section h2 {
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    color: #fff;
    font-size: 3rem;
}

.about-section .intro-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.info-block {
    background: rgba(25, 25, 35, 0.95);
    border: 1px solid rgba(52, 152, 219, 0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.5s ease;
}

.info-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.3);
}

.block-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.info-block h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.info-block p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-section h2 {
    animation: fadeInDown 0.5s ease forwards;
}

.about-section .intro-text {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.2s;
}

.info-block {
    animation: fadeInUp 0.5s ease forwards;
}

@media (max-width: 992px) {
    .info-block {
        height: auto;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section h2 {
        font-size: 2.5rem;
    }

    .about-section .intro-text {
        font-size: 1.1rem;
    }

    .info-block h3 {
        font-size: 1.4rem;
    }

    .info-block p {
        font-size: 0.95rem;
    }

    .block-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .about-section h2 {
        font-size: 2rem;
    }

    .about-section .intro-text {
        font-size: 1rem;
    }

    .info-block h3 {
        font-size: 1.3rem;
    }

    .info-block p {
        font-size: 0.9rem;
    }
}

.video-card {
    background: rgba(25, 25, 35, 0.95);
    border: 1px solid rgba(52, 152, 219, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.5s ease;
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.3);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 15px;
    overflow: hidden;
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    border: 2px solid #3498db;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: #3498db;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.play-button:hover {
    background: #3498db;
    color: #fff;
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.5);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .video-container {
        padding-bottom: 75%;
    }
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

.video-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-fullscreen.show {
    display: flex;
    opacity: 1;
}

.video-fullscreen iframe {
    max-width: 90%;
    max-height: 90%;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid rgba(52, 152, 219, 0.5);
}

.video-fullscreen.show iframe {
    animation: zoomIn 0.5s ease forwards;
}

.video-fullscreen:not(.show) iframe {
    animation: zoomOut 0.5s ease forwards;
}

.video-fullscreen-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-fullscreen-close:hover {
    transform: scale(1.2);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoomOut {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(0.8);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .video-fullscreen iframe {
        max-width: 95%;
        max-height: 80%;
    }
}

.about-section {
    background: linear-gradient(135deg, 
        rgba(15, 15, 15, 0.98),
        rgba(30, 30, 30, 0.97)) 
        fixed;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-section .container {
    max-width: 1200px;
    padding: 0 1rem;
}

.about-section h2 {
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 4rem;
    color: #fff;
    font-size: 3.5rem;
}

.info-block {
    background: rgba(25, 25, 35, 0.95);
    border: 1px solid rgba(52, 152, 219, 0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.5s ease;
}

.info-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.3);
}

.block-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.info-block:hover .block-icon {
    transform: scale(1.1);
}

.info-block h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.info-block p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}