*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #005e7c;
    --dark-bg: #1a1a1a;
    --light-text: #f5f5f5;
    --accent-color: #ffd700;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --overlay-light: rgba(255, 255, 255, 0.05);
    --section-padding: 6rem 2rem;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes gradientBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

html {
    font-size: 16px;
}

.dot-navigation {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background-color: rgba(0, 0, 0, 0);
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none; 
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

a {
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
}

a:hover {
    color: var(--primary-color);
}

section {
    position: relative;
    min-height: 100vh;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    z-index: 1;
}

.section-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(100deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(1px);
    z-index: 0;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 2.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 4px;
    background: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--light-text);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    color: var(--dark-bg);
}

header {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.header-spacer {
    height: 80px; 
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: opacity 1.5s ease-in-out;
    z-index: -1;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    z-index: 1;
    pointer-events: none;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

img {
    max-width: 100%;
    height: auto;
}

.logo img {
    width: 10%;
    height: auto;
    transition: var(--transition-smooth);
}

.logo:hover img {
    transform: rotate(10deg);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--light-text);
    transition: var(--transition-smooth);
}

.hero-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 3;
}

.hero-content {
    position: relative;
    max-width: 50%;
    animation: fadeIn 1.5s ease forwards;
    z-index: 3;
}

.hero-logo {
    position: relative;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
    animation: pulse 4s infinite ease-in-out;
    height: auto;
    z-index: 3;
    opacity: 1;
    visibility: visible;
    display: block;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    display: inline-block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

#about {
    position: relative;
    overflow: hidden;
}

.about-container {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.about-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 200%;
    animation: gradientBg 15s ease infinite;
    z-index: 1;
}

.about-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    margin-bottom: 0;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.security-clearance {
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Mono', monospace;
}

.security-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.security-level {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1rem;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.about-intro-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.facility-schematic {
    position: relative;
    width: 100%;
    padding-bottom: 70%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.schematic-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJncmlkIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxwYXRoIGQ9Ik0gNDAgMCBMIDAgMCAwIDQwIiBmaWxsPSJub25lIiBzdHJva2U9IiMyMDRlNTgiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmlkKSIvPjwvc3ZnPg==');
    background-size: 40px 40px;
    opacity: 0.5;
}

.schematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 94, 124, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    animation: pulse 4s infinite ease-in-out;
}

.schematic-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0, 255, 255, 0.4) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.schematic-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.schematic-label {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: #00ffff;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.schematic-label::before {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(0, 255, 255, 0.7);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.schematic-label:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(1.1);
}

.about-features {
    margin-bottom: 3rem;
}

.feature-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-tab {
    cursor: pointer;
    user-select: none;
    position: relative;
    z-index: 10;
    overflow: visible;
    outline: none;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--light-text);
    text-align: center;
}

.feature-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-tab.active {
    background: rgba(0, 94, 124, 0.5);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-tab.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.feature-panel {
    display: none;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

.feature-panel.active {
    display: block;
    opacity: 1;
    height: auto;
    overflow: visible;
    animation: fadeIn 0.5s ease forwards;
}

.feature-tabs {
    position: relative;
    z-index: 100;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

button.feature-tab {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
}
.feature-panel-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.feature-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 94, 124, 0.2);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: pulse 2s infinite;
}

.feature-details h3 {
    margin-bottom: 1rem;
    font-size: 1.7rem;
    color: var(--primary-color);
}

.feature-details p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Space Mono', monospace;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.about-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 94, 124, 0.2);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content h3 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.cta-content p {
    margin-bottom: 0;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 1px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.security-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Space Mono', monospace;
}

.security-stamp {
    background: rgba(255, 0, 0, 0.2);
    color: #ff6666;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.security-warning {
    font-size: 0.7rem;
    opacity: 0.7;
}

@media screen and (max-width: 992px) {
    .about-intro {
        grid-template-columns: 1fr;
    }
    
    .feature-panel-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
    
    .about-cta {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .security-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .feature-stats {
        grid-template-columns: 1fr;
    }
    
    .about-container {
        padding: 2rem;
    }
    
    .about-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-title::after {
        left: 25%;
        width: 50%;
    }
}

#team {
    position: relative;
    overflow: hidden;
}

.team-container {
    max-width: 1200px;
    z-index: 2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    position: relative;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.team-member-image {
    position: relative;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
}

.team-member img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-member:hover img {
    transform: scale(1.1);
}

.team-member-info {
    padding: 1.5rem;
    text-align: left;
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    border-top: 2px solid var(--primary-color);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team-member h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.team-member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.team-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.discord-container {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.discord-content {
    text-align: left;
}

.discord-logo {
    width: 50%;
    height: auto;
    margin-bottom: 1rem;
}

.discord-phone {
    position: relative;
    width: 280px;
    height: 560px;
    margin: 0 auto;
    background: #36393f;
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center bottom;
    border: 8px solid #202225;
}

.discord-phone:hover {
    transform: translateY(-15px) rotate(-5deg);
    box-shadow: 15px 30px 60px -12px rgba(0, 0, 0, 0.7);
}

.discord-phone-header {
    height: 60px;
    background: #202225;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: white;
    font-weight: 700;
}

.discord-phone-header img {
    width: 30px;
    margin-right: 10px;
}

.discord-phone-content {
    height: calc(100% - 60px);
    overflow-y: auto;
    padding: 15px;
    background: url('home.jpg') center/cover;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.discord-message {
    background: rgba(64, 68, 75, 0.9);
    border-radius: 8px;
    padding: 10px;
    color: white;
    font-size: 12px;
    max-width: 90%;
    align-self: flex-start;
    animation: fadeInLeft 0.5s ease forwards;
    opacity: 0;
    animation-delay: calc(var(--i) * 0.1s);
}

.discord-message.sent {
    background: rgba(88, 101, 242, 0.9);
    align-self: flex-end;
    animation: fadeInRight 0.5s ease forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.discord-feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.discord-features {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media screen and (max-width: 992px) {
    .discord-container {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .discord-phone {
        margin-top: 2rem;
        width: 240px;
        height: 480px;
    }
}

footer {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-links a {
    margin: 0 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.7rem;
    opacity: 0.5;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .nav-menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        text-align: center;
        transition: var(--transition-smooth);
        z-index: 100;
        justify-content: center;
    }

    .nav-menu.active {
        top: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .hamburger {
        display: block;
        z-index: 101;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .section-title::after {
        width: 80%;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 2rem auto 0;
    }
}

@media screen and (max-width: 992px) {
    .about-grid, .discord-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .about-grid, .discord-features {
        grid-template-columns: 1fr;
    }
    
    .about-container, .discord-container {
        padding: 2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    section {
        height: auto;
        min-height: 100vh;
    }
}

@media screen and (max-width: 480px) {
    .about-feature, .discord-feature {
        padding: 1.2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 2rem auto 0;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}