:root {
    --primary-color: #ff6666;
    --primary-dark: #ff6666;
    --primary-light: #ff6666;
    --secondary-color: #121212;
    --text-color: #ffffff;
    --text-secondary: #aaaaaa;
    --bg-color: #0a0a0a;
    --accent-color: #1a1a1a;
    --accent-light: #2a2a2a;
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-red: linear-gradient(135deg, #ff6666 0%, #ff6666 100%);
    --gradient-accent: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --card-bg: rgba(26, 26, 26, 0.7);
    --card-border: 1px solid rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.3);
    --blur: blur(10px);
    --border-radius: 15px;
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --spacing-xl: 80px;
}

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

body {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.glowing-border {
    position: relative;
}

.glowing-border::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: var(--gradient-red);
    border-radius: calc(var(--border-radius) + 1px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glowing-border:hover::before {
    opacity: 1;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iLjA1IiBkPSJNMCAwaDMwMHYzMDBIMHoiLz48L3N2Zz4=');
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: var(--spacing-lg) 0;
}

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

.badge {
    display: inline-block;
    padding: 5px 12px;
    background: var(--primary-color);
    color: var(--text-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.logo {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo img {
    height: 40px;
    transition: var(--transition);
    vertical-align: middle;
    margin-bottom: 0;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 15px;
    letter-spacing: 1px;
    color: var(--text-color);
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

.navbar.scrolled .logo img {
    height: 35px;
}

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

.nav-links ul li {
    margin-left: 35px;
    position: relative;
}

.nav-links ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
    display: inline-block;
}

.nav-links ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links ul li a:hover {
    color: var(--primary-color);
}

.nav-links ul li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 2;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: var(--spacing-md);
    max-width: 900px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 50px;
    background: var(--primary-color);
    animation: pulseVertical 2s infinite;
}

@keyframes pulseVertical {

    0%,
    100% {
        height: 50px;
    }

    50% {
        height: 70px;
    }
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1::before {
    display: none;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .cta-container {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.scroll-indicator .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-secondary);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.servers-section {
    position: relative;
    padding: 0;
    margin: 0;
}

.servers-header {
    display: none;
}

.server-block {
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.server-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    gap: var(--spacing-xl);
}

.server-block:nth-child(even) .server-container {
    flex-direction: row-reverse;
}

.server-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.server-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.9) 100%);
    z-index: -1;
}

.server-image {
    flex: 0 0 50%;
    position: relative;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.server-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.server-image:hover img {
    transform: scale(1.05);
}

.server-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0) 50%);
    z-index: 1;
}

.server-content {
    flex: 0 0 45%;
    z-index: 1;
    padding: var(--spacing-lg);
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: var(--card-border);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    box-shadow: var(--shadow);
    transform: translateY(0);
    transition: var(--transition);
    position: relative;
}

.server-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #0a0a0a;
    border-radius: calc(var(--border-radius) + 2px);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.server-content:hover {
    transform: translateY(-10px);
}

.server-content:hover::before {
    opacity: 1;
}

.server-content h2 {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    position: relative;
    padding-bottom: 15px;
}

.server-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.server-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.server-features {
    margin-bottom: var(--spacing-md);
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.feature-icon {
    color: var(--primary-color);
    margin-right: var(--spacing-sm);
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gradient-red);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 51, 51, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid var(--text-secondary);
    margin-left: var(--spacing-md);
}

.cta-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.team-section {
    min-height: 100vh;
    position: relative;
    padding: 100px 0 50px;
    background: var(--gradient-dark);
    margin: 0;
}

.team-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.team-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    z-index: 1;
    position: relative;
}

.team-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.team-content h2 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.team-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-red);
}

.team-list-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.team-list-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.team-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.team-member-row {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 15px;
    transition: var(--transition);
    border: var(--card-border);
    margin-bottom: 10px;
}

.team-column .team-member-row:last-child {
    margin-bottom: 0;
}

.team-list-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.team-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-member-row {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 15px;
    transition: var(--transition);
    border: var(--card-border);
}

.team-member-row:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: rgba(40, 40, 40, 0.7);
}

.member-avatar-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
}

.member-info-row {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.member-name-container {
    display: flex;
    flex-direction: column;
}

.member-name-row {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.member-role-row {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-badge {
    background: var(--accent-color);
    color: var(--text-secondary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.member-badge.developer {
    background: rgba(0, 119, 255, 0.2);
    color: #0077ff;
}

.member-badge.admin {
    background: rgba(255, 51, 51, 0.2);
    color: var(--primary-color);
}

.member-badge.mod {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.member-badge.support {
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
}

.community-member {
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.community-member .member-avatar-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.community-member .member-name-row {
    font-weight: 700;
}

.community-member .member-role-row {
    color: var(--text-secondary);
    font-size: 0.8rem;
    max-width: 200px;
}

.member-badge.community {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

@media screen and (max-width: 992px) {
    .team-column {
        flex: 0 0 100%;
    }
}

@media screen and (max-width: 576px) {
    .team-member-row {
        padding: 10px;
    }

    .member-avatar-small {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .member-name-row {
        font-size: 1rem;
    }

    .member-role-row {
        font-size: 0.75rem;
    }

    .member-badge {
        padding: 3px 8px;
        font-size: 0.7rem;
    }
}

.team-filter {
    display: none;
}

.filter-button {
    display: none;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-top: var(--spacing-lg);
}

.team-member {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: var(--card-border);
    transition: var(--transition);
    transform: translateY(0);
    position: relative;
}

.team-member::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-red);
    border-radius: calc(var(--border-radius) + 2px);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member:hover::before {
    opacity: 1;
}

.member-avatar-container {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.member-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-avatar {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0) 70%);
}

.member-status {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.7);
}

.member-status.offline {
    background: #9e9e9e;
    box-shadow: 0 0 10px rgba(158, 158, 158, 0.7);
}

.member-info {
    padding: var(--spacing-md);
    position: relative;
}

.member-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.member-name {
    font-size: 1.4rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.member-name i {
    color: var(--primary-color);
    margin-left: var(--spacing-sm);
    font-size: 1rem;
}

.member-role {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.member-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
}

.member-social {
    display: flex;
    gap: var(--spacing-sm);
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.loading {
    text-align: center;
    padding: var(--spacing-xl);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 51, 51, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
    margin: 0 auto var(--spacing-md);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.error {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--primary-color);
    background: rgba(255, 51, 51, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 51, 51, 0.3);
}

footer {
    background-color: var(--secondary-color);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    position: relative;
    margin: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    flex: 0 0 300px;
    margin-bottom: var(--spacing-lg);
}

.footer-logo img {
    height: 60px;
    margin-bottom: var(--spacing-md);
}

.footer-logo p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links {
    flex: 0 0 200px;
    margin-bottom: var(--spacing-lg);
}

.footer-links h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: 15px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links ul li a i {
    margin-right: var(--spacing-sm);
    color: var(--primary-color);
}

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

.footer-newsletter {
    flex: 0 0 350px;
    margin-bottom: var(--spacing-lg);
}

.footer-newsletter h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: 15px;
}

.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-newsletter p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

.newsletter-form {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 20px;
    background: var(--accent-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--text-color);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 20px;
    background: var(--gradient-red);
    border: none;
    border-radius: 25px;
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateX(3px);
}

.footer-social {
    flex: 0 0 200px;
    margin-bottom: var(--spacing-lg);
}

.footer-social h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: 15px;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--text-color);
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    transform: none !important;
}

.hero-bg {
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bg-color);
}

.hla-bg {
    background-image: url('../images/halflife_alyx.jpg');
    background-size: cover;
    background-position: center;
}

.scp-bg {
    background-image: url('../images/scp.png');
    background-size: cover;
    background-position: center;
}

.swtor-bg {
    background-image: url('../images/swtor.jpg');
    background-size: cover;
    background-position: center;
}

.team-bg {
    background-color: var(--bg-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.floating-element {
    display: none;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 1;
}

.badge-new {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--text-color);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(255, 51, 51, 0.4);
    z-index: 2;
}

.btn-group {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.hover-glow {
    position: relative;
    overflow: hidden;
}

.hover-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 51, 51, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.hover-glow:hover::after {
    opacity: 1;
}

.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iLjA1IiBkPSJNMCAwaDMwMHYzMDBIMHoiLz48L3N2Zz4=');
    pointer-events: none;
    z-index: 9997;
    opacity: 0.08;
}

section {
    padding: 0;
    margin: 0;
}

.hero-section {
    height: 100vh;
    margin: 0;
    padding: 0;
}

footer {
    margin: 0;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.badge-coming-soon {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--text-color);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(255, 51, 51, 0.4);
    z-index: 2;
}

.team-section {
    min-height: 80vh;
    position: relative;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    background: var(--gradient-dark);
    margin-top: 0;
}

.team-section::before {
    display: none;
}