@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&family=Michroma&display=swap');

/* Global Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-light);
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    background: url('../Assets/Images/BgWallPapper.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, rgba(15, 18, 17, 0.904) 0%, rgba(15, 18, 17, 0.9) 100%);
}

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

ul {
    list-style: none;
}

/* Text Selection */
::selection {
    background: var(--accent-primary);
    color: var(--text-primary);
}

/* Enhanced Header Styles */
.site-header {
    background-color: rgba(15, 18, 17, 0.521); /* More transparent */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Subtler border */
    backdrop-filter: blur(15px); /* Increased blur for glass effect */
    -webkit-backdrop-filter: blur(15px);
    height: var(--header-height);
    transition: all 0.3s ease;
}

.header-container {
    height: var(--header-height);
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
}

/* Logo */
.logo {
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
}

.logo a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo img {
    height: 35px;
    max-width: 100%;
    vertical-align: middle;
    transition: transform var(--transition-base);
}

.logo:hover img {
    transform: scale(1.05);
}

/* Main Navigation */
.main-nav ul {
    display: flex;
    gap: var(--space-xl);
}

.main-nav a {
    color: var(--text-secondary);
    font-weight: var(--fw-medium);
    font-size: 0.7rem;
    padding: var(--space-sm);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: all var(--transition-base);
    transform: translateX(-50%);
    border-radius: 4px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text-primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
    box-shadow: var(--shadow-accent);
}

/* Nav Item Hover Effects */
.main-nav a:hover {
    text-shadow: 0 0 8px rgba(247, 35, 35, 0.5);
}

.main-nav a:active {
    transform: translateY(2px);
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

/* Discord Button - Discord Brand Color */
.btn-discord {
    background-color: #5865F2; /* Discord blurple */
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: var(--fw-semibold);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all var(--transition-base);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.btn-discord i {
    font-size: 1.2rem;
}

.btn-discord:hover {
    background-color: #4752C4; /* Discord blurple darken */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

.btn-discord:active {
    transform: translateY(-1px);
}

.btn-discord::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.12), transparent, rgba(255,255,255,0.12));
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: rgba(15, 18, 17, 0.6);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    position: relative;
}

.mobile-menu-toggle:hover {
    border-color: var(--border-medium);
    background: rgba(247, 35, 35, 0.1);
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 20px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 10px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 10px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Header Scroll Effect */
.site-header.scrolled {
    height: 65px;
    background-color: rgba(15, 18, 17, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Main Nav Active Mobile */
.main-nav.active {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    animation: fadeIn var(--transition-base);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    20% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

@keyframes scale-bg {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    width: 100%;
    max-width: var(--container-max);
    padding: 0 var(--space-xl);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xxl);
}

.hero-text {
    max-width: 700px;
    animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: var(--fw-bold);
    line-height: 1.2;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h1 span {
    color: var(--accent-primary);
    position: relative;
}

.hero-text h1 span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-primary);
    border-radius: 2px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: white;
    padding: 0.8rem 2rem;
    font-weight: var(--fw-bold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-accent);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent-hover);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-45deg) translateX(-150%);
    transition: 0.5s;
}

.btn-primary:hover::after {
    transform: skewX(-45deg) translateX(150%);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    padding: 0.8rem 2rem;
    font-weight: var(--fw-medium);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    background-color: rgba(247, 35, 35, 0.1);
    transform: translateY(-3px);
}

/* Nav item badge for new items */
.new-badge {
    position: relative;
}

.new-badge::before {
    content: 'NEW';
    position: absolute;
    top: -8px;
    right: -15px;
    font-size: 0.6rem;
    background: var(--accent-primary);
    color: var(--text-primary);
    padding: 2px 5px;
    border-radius: 2px;
    font-weight: var(--fw-bold);
    animation: pulse-light 2s infinite;
}

@keyframes pulse-light {
    0% { box-shadow: 0 0 0 0 rgba(247, 35, 35, 0.6); }
    70% { box-shadow: 0 0 0 6px rgba(247, 35, 35, 0); }
    100% { box-shadow: 0 0 0 0 rgba(247, 35, 35, 0); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 18, 17, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 100;
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        padding: 2rem;
    }
    
    .main-nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 1rem 0;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 101;
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .header-right {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 var(--space-md);
    }
    
    .logo img {
        height: 30px;
    }

    .logo-text {
        font-size: 1.2rem;
    }
    
    .btn-discord {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}

/* Add styles for the Join Section */
.join-section {
    padding: var(--space-xxl) 0;
    /* background-color: var(--bg-secondary); */
    position: relative;
}

.join-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
    position: relative;
    padding-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-primary);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.join-cards {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.join-card {
    background: rgba(25, 28, 27, 0.7);
    border-radius: 12px;
    padding: var(--space-xl);
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex: 1;
    z-index: 1;
}

.join-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}

.join-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.join-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: rgba(247, 35, 35, 0.3);
}

.join-card:hover::after {
    opacity: 1;
}

.card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
    color: var(--text-on-accent);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(247, 35, 35, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-lg);
    color: var(--accent-primary);
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.join-card:hover .card-icon {
    transform: scale(1.1);
    color: var(--accent-light);
}

.card-icon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.join-card:hover .card-icon::after {
    width: 60px;
}

.join-card h3 {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    position: relative;
    font-weight: var(--fw-bold);
    transition: all 0.3s ease;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.join-card:hover h3 {
    color: var(--accent-primary);
}

.join-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.join-card:hover p {
    color: var(--text-primary);
}

.card-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
    color: var(--text-on-accent);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(247, 35, 35, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 35, 35, 0.4);
    background: linear-gradient(135deg, var(--accent-light), var(--accent-primary));
}

.card-btn:hover::before {
    transform: translateX(100%);
}

.card-btn:active {
    transform: translateY(-1px);
}

/* Card animations on scroll */
.join-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.join-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.join-card:nth-child(1) {
    transition-delay: 0.1s;
}

.join-card:nth-child(2) {
    transition-delay: 0.3s;
}

.join-card:nth-child(3) {
    transition-delay: 0.5s;
}

/* Responsive styles for Join Section */
@media (max-width: 992px) {
    .join-cards {
        gap: var(--space-lg);
    }
    
    .join-card {
        min-width: 250px;
        padding: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .join-card {
        width: 100%;
        max-width: 400px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card-icon {
        font-size: 3rem;
    }
    
    .join-card h3 {
        font-size: 1.5rem;
    }
}

/* Server Story Section */
.story-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.story-content {
    display: flex;
    gap: var(--space-xxl);
    align-items: center;
    position: relative;
}

.story-image {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    max-width: 500px;
}

.story-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

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

.story-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 18, 17, 0.2) 0%, rgba(15, 18, 17, 0.6) 100%);
    z-index: 1;
}

.story-text {
    flex: 1.5;
    padding-right: var(--space-lg);
    animation: fadeIn 1s ease-out forwards;
}

.story-text h3 {
    font-size: 2.2rem;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    line-height: 1.3;
    font-weight: var(--fw-bold);
    position: relative;
    display: inline-block;
}

.story-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-primary);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(247, 35, 35, 0.5);
}

.story-text h3 span {
    color: var(--accent-primary);
    position: relative;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.story-text p:last-of-type {
    margin-bottom: var(--space-xl);
}

.story-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-primary);
    font-weight: var(--fw-medium);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
    color: var(--accent-primary);
}

.feature i {
    color: var(--accent-primary);
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 35, 35, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature:hover i {
    background: var(--accent-primary);
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(247, 35, 35, 0.5);
}

/* Responsive styles for Story Section */
@media (max-width: 992px) {
    .story-content {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .story-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .story-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .story-text h3 {
        font-size: 1.8rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .story-features {
        grid-template-columns: 1fr;
    }
}

/* Server Features Section */
.features-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.feature-item {
    background: rgba(25, 28, 27, 0.7);
    border-radius: 12px;
    padding: var(--space-xl);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(247, 35, 35, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(247, 35, 35, 0.15) 0%, rgba(247, 35, 35, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    transition: all 0.3s ease;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--accent-primary), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(247, 35, 35, 0.25) 0%, rgba(247, 35, 35, 0.1) 100%);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--accent-primary);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon i {
    transform: scale(1.1);
    color: var(--accent-light);
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-weight: var(--fw-bold);
    transition: all 0.3s ease;
}

.feature-item:hover h3 {
    color: var(--accent-primary);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-cta {
    margin-top: var(--space-xxl);
    text-align: center;
    padding: var(--space-xl);
    background: rgba(25, 28, 27, 0.7);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.features-cta p {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    font-weight: var(--fw-medium);
}

.features-cta .btn-primary {
    display: inline-flex;
    margin: 0 auto;
}

/* Responsive styles for Features Section */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .feature-item {
        padding: var(--space-lg);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .features-cta {
        padding: var(--space-lg);
    }
    
    .features-cta p {
        font-size: 1.1rem;
    }
}

/* Feature item animations */
.feature-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.feature-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(247, 35, 35, 0.2);
}

/* Gallery Section */
.gallery-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    height: 800px;
    margin-top: var(--space-xl);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0) 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
    transition-delay: 0.1s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-caption h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    font-weight: var(--fw-bold);
}

.gallery-caption p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Grid layout as specified */
.div1 {
    grid-row: span 3 / span 3;
}

.div2 {
    grid-row: span 2 / span 2;
}

.div3 {
    grid-row: span 3 / span 3;
    grid-column-start: 2;
    grid-row-start: 3;
}

.div4 {
    grid-row: span 2 / span 2;
    grid-row-start: 4;
}

.gallery-cta {
    margin-top: var(--space-xl);
    text-align: center;
}

/* Responsive styles for Gallery Section */
@media (max-width: 992px) {
    .gallery-grid {
        height: 600px;
    }
    
    .gallery-caption h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 250px);
        height: auto;
    }
    
    .div1, .div2, .div3, .div4 {
        grid-column: 1;
        grid-row: auto;
    }
    
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0) 70%);
    }
    
    .gallery-caption {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Gallery item animations */
.gallery-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.5s ease;
}

.gallery-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.div1.animated {
    transition-delay: 0.1s;
}

.div2.animated {
    transition-delay: 0.3s;
}

.div3.animated {
    transition-delay: 0.5s;
}

.div4.animated {
    transition-delay: 0.7s;
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: var(--space-lg);
    backdrop-filter: blur(8px);
}

.gallery-modal.active {
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    background-color: rgba(25, 28, 27, 0.8);
}

.gallery-modal.active .modal-content {
    transform: scale(1);
}

.modal-content img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    color: var(--text-primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: var(--accent-primary);
    transform: rotate(90deg);
}

.modal-caption {
    padding: var(--space-md) var(--space-lg);
    background-color: rgba(15, 18, 17, 0.9);
    color: var(--text-primary);
}

.modal-caption h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.modal-caption p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xxl);
    width: 100%;
    margin-top: var(--space-xxl);
}

.team-card {
    background: rgba(25, 28, 27, 0.7);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 500px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.team-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(247, 35, 35, 0.3);
}

.card-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle at center, rgba(247, 35, 35, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.team-card:hover .card-glow {
    opacity: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.6; }
    50% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(0.95); opacity: 0.6; }
}

.profile-img {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.team-card:hover .profile-img img {
    transform: scale(1.05);
}

.status {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    z-index: 2;
}

.status.online {
    background-color: #2ecc71;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.8);
}

.team-info {
    padding: var(--space-lg);
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.role {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--accent-primary);
    font-weight: var(--fw-bold);
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.team-info h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.team-card:hover .team-info h3::after {
    width: 100%;
}

.team-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(247, 35, 35, 0.4);
}

.card-footer {
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 18, 17, 0.5);
}

.stats {
    display: flex;
    justify-content: space-around;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat .value {
    font-size: 1.2rem;
    font-weight: var(--fw-bold);
    color: var(--accent-primary);
}

.stat .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* Special styling for each role */
.team-card.owner {
    border-top: 3px solid var(--accent-primary);
}

.team-card.co-owner {
    border-top: 3px solid #3498db;
}

.team-card.co-owner .role {
    color: #3498db;
}

.team-card.co-owner .stat .value {
    color: #3498db;
}

.team-card.co-owner .team-info h3::after {
    background: #3498db;
}

.team-card.co-owner:hover .card-glow {
    background: radial-gradient(circle at center, rgba(52, 152, 219, 0.15), transparent 70%);
}

.team-card.developer {
    border-top: 3px solid #9b59b6;
}

.team-card.developer .role {
    color: #9b59b6;
}

.team-card.developer .stat .value {
    color: #9b59b6;
}

.team-card.developer .team-info h3::after {
    background: #9b59b6;
}

.team-card.developer:hover .card-glow {
    background: radial-gradient(circle at center, rgba(155, 89, 182, 0.15), transparent 70%);
}

/* Team card animations */
.team-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.5s ease, border-color 0.4s ease;
}

.team-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.team-card:nth-child(1).animated {
    transition-delay: 0.1s;
}

.team-card:nth-child(2).animated {
    transition-delay: 0.3s;
}

.team-card:nth-child(3).animated {
    transition-delay: 0.5s;
}

/* Responsive styles for Team Section */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
    
    .team-card {
        height: 480px;
    }
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: var(--space-xl) auto 0;
    }
    
    .team-card {
        height: auto;
    }
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xxl);
    width: 100%;
    margin-top: var(--space-xl);
}

.contact-info {
    background: rgba(25, 28, 27, 0.7);
    border-radius: 16px;
    padding: var(--space-xl);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-primary);
    border-radius: 2px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    transition: transform var(--transition-base);
}

.contact-method:hover {
    transform: translateX(5px);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(247, 35, 35, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    transition: all var(--transition-base);
    border: 1px solid rgba(247, 35, 35, 0.2);
}

.contact-method:hover .method-icon {
    background: var(--accent-primary);
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(247, 35, 35, 0.4);
    transform: scale(1.05);
}

.method-details h4 {
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.method-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
}

.method-link {
    color: var(--accent-primary);
    font-weight: var(--fw-medium);
    transition: all var(--transition-fast);
    display: inline-block;
}

.method-link:hover {
    color: var(--accent-light);
    text-decoration: underline;
    transform: translateX(3px);
}

.server-status {
    margin-top: var(--space-xl);
    background: rgba(15, 18, 17, 0.5);
    border-radius: 12px;
    padding: var(--space-md) var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.server-status h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.online .status-dot {
    background-color: #2ecc71;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.8);
    animation: pulse 2s infinite;
}

.status-indicator.offline .status-dot {
    background-color: #e74c3c;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.8);
}

.status-text {
    font-weight: var(--fw-medium);
    color: var(--text-primary);
}

.player-count {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form {
    background: rgba(25, 28, 27, 0.7);
    border-radius: 16px;
    padding: var(--space-xl);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-primary);
    border-radius: 2px;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
    font-weight: var(--fw-medium);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(15, 18, 17, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(247, 35, 35, 0.2);
    background: rgba(15, 18, 17, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-md);
    padding: 14px;
}

/* Footer Styles */
.site-footer {
    background: rgba(15, 18, 17, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.footer-top {
    padding: var(--space-xxl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-xl);
}

.footer-column h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
    display: inline-block;
}

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

.footer-logo {
    margin-bottom: var(--space-md);
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.about-column p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.social-icons {
    display: flex;
    gap: var(--space-sm);
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(247, 35, 35, 0.4);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
}

.footer-links li a::before {
    content: '›';
    margin-right: 5px;
    color: var(--accent-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
}

.footer-links li a:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.footer-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.newsletter-column p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.newsletter-form {
    display: flex;
    height: 45px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(15, 18, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 0 15px;
    color: var(--text-primary);
    font-family: var(--font-family);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.newsletter-form button {
    width: 45px;
    background: var(--accent-primary);
    color: var(--text-primary);
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: var(--accent-light);
}

.footer-bottom {
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

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

/* Responsive styles for Contact and Footer */
@media (max-width: 1200px) {
    .contact-container {
        gap: var(--space-lg);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xxl) var(--space-xl);
    }
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-column {
        text-align: left;
    }
    
    .footer-column h3::after {
        left: 0;
        transform: none;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .footer-links li a:hover {
        transform: translateX(5px);
    }
    
    .newsletter-form {
        max-width: 100%;
        margin: 0;
    }
    
    .footer-bottom {
        text-align: left;
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }
}

/* Header Scroll Effects */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
}

.header-scrolled {
    background: rgba(15, 18, 17, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header-hidden {
    transform: translateY(-100%);
}

/* Body when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Additional mobile styles */
@media (max-width: 992px) {
    .site-header {
        padding: 0.5rem 0;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .mobile-menu-toggle {
        margin-left: auto;
    }
}