/* main settings (behaviour) */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
}

.animated-gradient-background {
    background: linear-gradient(315deg, #170524, #12121e, #350740);
    background-size: 400% 400%;
    animation: gradient-animation 20s ease infinite;
}

/* AI made me gradient cuz im lazy af */

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

h1,
h2,
h3,
p {
    color: #ffffff;
}

/* navigation zal00pa */
.transparent-nav {
    background-color: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    transition: background-color 0.4s ease;
}

.transparent-nav.scrolled {
    background-color: rgba(18, 18, 30, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #2a2a4a !important;
}

/* main styles */
.hero-fullscreen {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
}

.hero-fullscreen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(315deg, rgba(45, 11, 70, 0.7), rgba(18, 18, 30, 0.9));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
}

/* main screen styles (index.html) */
.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 2.5rem;
}

.btn-hero {
    background-image: linear-gradient(45deg, #a862ea, #9b59b6);
    border: none;
    color: #fff;
    padding: 1rem 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(155, 89, 182, 0.4);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.6);
    color: #fff;
}

/* extra styles for contact.html */
.page-contact .hero-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-contact .hero-content {
    background: rgba(18, 18, 30, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem 4rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-contact .hero-wrapper .btn-hero {
    margin-top: 2.5rem;
}

/* live section (index.html) */
.streams-section {
    padding: 120px 0;
    background-color: #121212;
}

.container-large {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.stream-card {
    background-color: #1e1e1e;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
}

.stream-wrapper {
    position: relative;
    padding-top: 56.25%;
    height: 0;
    border-radius: 8px;
    overflow: hidden;
}

.stream-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stream-channel {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

/* dlya contact.html */

.contact-info-section {
    background-color: #121212;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
}

.contact-card {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #c0c0c0;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background-color: #2a2a2a;
    border-radius: 8px;
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.contact-link:hover {
    background-color: #9b59b6;
    color: #fff;
}

.contact-link i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.highlight-card {
    border-color: #9b59b6;
    box-shadow: 0 0 20px rgba(155, 89, 182, 0.2);
}

.highlight-card h3 {
    color: #9b59b6;
}

.small-text {
    font-size: 0.9rem;
    color: #a0a0a0 !important;
}

/* footer huyuter */
.page-footer {
    text-align: center;
    padding: 2rem 0;
    background-color: #121212;
    border-top: 1px solid #2a2a2a;
}

.copyright {
    color: #777;
    font-size: 1rem;
}


.team-page-section {
    padding: 120px 0;
    background-color: #121212;
}

.page-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* filters */

.filter-bar {
    text-align: center;
    margin-bottom: 4rem;
}

.filter-btn {
    background: none;
    border: 1px solid #444;
    color: #a0a0a0;
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #2a2a2a;
    color: #fff;
}

.filter-btn.active {
    background-color: #9b59b6;
    border-color: #9b59b6;
    color: #fff;
    box-shadow: 0 0 15px rgba(155, 89, 182, 0.5);
}

/* team member card */
.team-member-col {
    transition: transform 0.3s, opacity 0.3s;
}
.team-member-col.hidden {
    transform: scale(0.9);
    opacity: 0;
    display: none;
}

.team-card {
    display: block;
    background-color: #1e1e1e;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    height: 100%;
    border: 1px solid #2a2a2a;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #444;
    transition: border-color 0.3s;
}

.team-card:hover img {
    border-color: #9b59b6;
}

.team-card h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.team-card .role {
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* --- ЗАЛ СЛАВЫ --- */
.honorable-mention {
    margin-top: 6rem;
}

.team-card.honorable {
    background-color: #181818;
}

.team-card.honorable h4 {
    color: #aaa;
}

/* dlya mobilok */

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    .team-page-section, .streams-section, .contact-info-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .page-contact .hero-content {
        padding: 2rem;
        width: 95%;
    }
    .filter-btn {
        margin: 0.3rem 0.3rem;
    }
}

@media (max-width: 576px) {
    .container-large {
        padding: 0 1rem;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .btn-hero {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    .stream-card {
        padding: 1rem;
    }
    .contact-card {
        padding: 1.5rem;
    }
    .filter-bar {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .filter-btn {
        margin-bottom: 0.5rem;
        width: 90%;
    }
}