/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #121212;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background Gradient */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #1a1a2e 0%, 
        #16213e 25%, 
        #0f3460 50%, 
        #1a1a2e 75%, 
        #16213e 100%);
    z-index: -2;
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Particles Canvas */
.particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spinner-ring {
    width: 80px;
    height: 80px;
    border: 5px solid transparent;
    border-top: 5px solid #5865F2;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    margin-bottom: 20px;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    border-top-color: #7289DA;
    animation-duration: 2s;
    margin-top: -70px;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    border-top-color: #c9a13f;
    animation-duration: 1s;
    margin-top: -50px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: #d0a24a;
    font-size: 1.2rem;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    background: rgba(18, 18, 18, 0.8);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.8rem;
    background: linear-gradient(90deg, #c9a13f, #f8f290);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    font-size: 1.1rem;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c9a13f, #d0a24a);
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: #d0a24a;
}

.nav-links li a:hover::after {
    width: 100%;
}

.discord-btn {
    background: linear-gradient(90deg, #5865F2, #7289DA);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.4);
}

.discord-btn i {
    font-size: 1.2rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0;
    position: relative;
    z-index: 2;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.hero-content {
    flex: 1;
    padding-right: 50px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content h1 .highlight {
    background: linear-gradient(90deg, #c9a13f, #f8f290);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: text-glow 2s ease-in-out infinite alternate;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #c9a13f, #d0a24a);
    border-radius: 2px;
    animation: underline-grow 1s ease-in-out;
    transform-origin: left;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 20px 0 30px;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 400;
}

/* Typing cursor animation */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1.2em;
    background-color: #d0a24a;
    margin-left: 5px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    position: relative;
    z-index: 3;
}

.server-stats {
    background: rgba(31, 31, 31, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    position: relative;
    z-index: 4;
    transform: translateZ(0);
}

.stat {
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat:hover {
    background: rgba(208, 162, 74, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat h3 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #c9a13f, #f8f290);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.stat p {
    color: #b0b0b0;
    margin: 0;
    font-size: 1.1rem;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.primary-btn, .secondary-btn, .discord-btn, .join-btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.primary-btn, .discord-btn, .join-btn {
    background: linear-gradient(90deg, #5865F2, #7289DA);
    color: white;
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.3);
}

.primary-btn:hover, .discord-btn:hover, .join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
}

.secondary-btn {
    background: transparent;
    color: #d0a24a;
    border: 2px solid #d0a24a;
    box-shadow: 0 10px 25px rgba(208, 162, 74, 0.2);
}

.secondary-btn:hover {
    background: rgba(208, 162, 74, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(208, 162, 74, 0.4);
}

.join-btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.4);
    background: linear-gradient(90deg, #5865F2, #7289DA);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.join-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(88, 101, 242, 0.7);
    animation: pulse 1.5s infinite;
}

.join-btn:active {
    transform: translateY(-3px);
}

.join-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.6s;
    z-index: -1;
}

.join-btn:hover::before {
    left: 100%;
}

.join-btn i {
    margin-right: 18px;
    font-size: 1.6rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes text-glow {
    from {
        text-shadow: 0 0 5px rgba(201, 161, 63, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(201, 161, 63, 0.8), 0 0 30px rgba(208, 162, 74, 0.6);
    }
}

@keyframes underline-grow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 5px rgba(201, 161, 63, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(201, 161, 63, 0.8), 0 0 30px rgba(208, 162, 74, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(201, 161, 63, 0.5);
    }
}

@keyframes card-float {
    0% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes image-float {
    0% {
        transform: translateY(0px) rotateY(-5deg) rotateX(5deg);
    }
    50% {
        transform: translateY(-10px) rotateY(-5deg) rotateX(5deg);
    }
    100% {
        transform: translateY(0px) rotateY(-5deg) rotateX(5deg);
    }
}

@keyframes text-slide-in {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes content-fade-in {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 6;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    cursor: default;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
}

.section-title:hover {
    transform: translateY(30px) scale(1.02);
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    animation: text-glow 2s ease-in-out infinite alternate;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #c9a13f, #d0a24a);
    border-radius: 2px;
    animation: underline-grow 1s ease-in-out;
}

.section-title h2 .highlight {
    background: linear-gradient(90deg, #c9a13f, #f8f290);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: text-glow 2s ease-in-out infinite alternate;
}

.section-title h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #c9a13f, #d0a24a);
    border-radius: 1px;
    animation: underline-grow 1s ease-in-out;
}

.section-title p {
    color: #b0b0b0;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 25px auto 0;
    line-height: 1.7;
    position: relative;
    padding: 0 20px;
}

.section-title p::before,
.section-title p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #c9a13f, #d0a24a);
    transform: translateY(-50%);
}

.section-title p::before {
    left: 0;
}

.section-title p::after {
    right: 0;
}

/* Join Section */
.join-section {
    background: rgba(31, 31, 31, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 70px 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    margin: 50px 0;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    z-index: 8;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.9) 0%, 
        rgba(22, 33, 62, 0.8) 25%, 
        rgba(15, 52, 96, 0.7) 50%, 
        rgba(26, 26, 46, 0.8) 75%, 
        rgba(22, 33, 62, 0.9) 100%);
}

.join-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(208, 162, 74, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: rotate 20s linear infinite;
    transform: translateZ(0);
}

.join-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(208, 162, 74, 0.05)" stroke-width="0.5"/></svg>');
    background-size: 30px 30px;
    z-index: -1;
    opacity: 0.5;
}

.join-content {
    position: relative;
    z-index: 10;
    transform: translateZ(0);
    animation: float 6s ease-in-out infinite;
}

.join-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.join-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #c9a13f, #d0a24a);
    border-radius: 2px;
}

.join-content h2 .highlight {
    background: linear-gradient(90deg, #c9a13f, #f8f290);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: text-glow 2s ease-in-out infinite alternate;
}

.join-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 30px auto 40px;
    color: #b0b0b0;
    line-height: 1.7;
}

/* About Section */
.about {
    position: relative;
    z-index: 6;
    overflow: hidden;
    background: rgba(31, 31, 31, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    margin: 50px 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.7) 0%, 
        rgba(22, 33, 62, 0.6) 25%, 
        rgba(15, 52, 96, 0.5) 50%, 
        rgba(26, 26, 46, 0.6) 75%, 
        rgba(22, 33, 62, 0.7) 100%);
    transform: translateY(30px);
    transition: transform 0.8s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out forwards;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(208, 162, 74, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: rotate 25s linear infinite;
    border-radius: 50%;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 26, 46, 0.2) 0%, transparent 70%);
    z-index: -1;
    animation: rotate 35s linear infinite reverse;
    border-radius: 50%;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(208, 162, 74, 0.05) 0%, transparent 70%);
    z-index: -1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(45deg, 
        rgba(201, 161, 63, 0.2) 0%, 
        rgba(208, 162, 74, 0.1) 25%, 
        transparent 50%, 
        rgba(208, 162, 74, 0.1) 75%, 
        rgba(201, 161, 63, 0.2) 100%);
    z-index: -1;
    animation: borderAnimation 3s linear infinite;
    background-size: 300% 300%;
    opacity: 0.5;
}

@keyframes borderAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.about .section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 6;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    cursor: default;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.about .section-title:hover {
    transform: translateY(30px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.about .section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.about .section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    animation: text-glow 2s ease-in-out infinite alternate;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.about .section-title h2:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(201, 161, 63, 0.8), 0 0 30px rgba(208, 162, 74, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

.about .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #c9a13f, #d0a24a);
    border-radius: 2px;
    animation: underline-grow 1s ease-in-out;
}

.about .section-title h2 .highlight {
    background: linear-gradient(90deg, #c9a13f, #f8f290);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: text-glow 2s ease-in-out infinite alternate;
}

.about .section-title h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #c9a13f, #d0a24a);
    border-radius: 1px;
    animation: underline-grow 1s ease-in-out;
}

.about .section-title p {
    color: #b0b0b0;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 25px auto 0;
    line-height: 1.7;
    position: relative;
    padding: 0 20px;
}

.about .section-title p::before,
.about .section-title p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #c9a13f, #d0a24a);
    transform: translateY(-50%);
}

.about .section-title p::before {
    left: 0;
}

.about .section-title p::after {
    right: 0;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    animation: content-fade-in 0.8s ease-out forwards;
    z-index: 7;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-text {
    flex: 1;
    position: relative;
    z-index: 7;
    animation: text-slide-in 0.8s ease-out forwards;
    opacity: 0;
    padding: 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-20px);
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-text:hover {
    transform: translateX(0);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.about-text.visible {
    opacity: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    padding-left: 20px;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.6s ease;
}

.about-text p.visible {
    transform: translateX(0);
    opacity: 1;
}

.about-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 8px;
    height: 8px;
    background: linear-gradient(90deg, #c9a13f, #d0a24a);
    border-radius: 50%;
    transform: translateY(50%);
    transition: all 0.3s ease;
}

.about-text p:hover::before {
    transform: translateY(50%) scale(1.5);
    box-shadow: 0 0 10px rgba(201, 161, 63, 0.8);
}

.about-text ul {
    list-style: none;
    margin: 25px 0;
    animation: text-slide-in 0.8s ease-out 0.4s forwards;
    opacity: 0;
    padding: 15px;
    border-radius: 10px;
    background: rgba(26, 26, 46, 0.3);
    border: 1px solid rgba(208, 162, 74, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text ul li {
    margin-bottom: 15px;
    padding: 15px 15px 15px 50px;
    position: relative;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: default;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    transform: translateX(-10px);
    opacity: 0;
    animation: slideInRight 0.5s ease-out forwards;
}

.about-text ul li:nth-child(1) {
    animation-delay: 0.1s;
}

.about-text ul li:nth-child(2) {
    animation-delay: 0.2s;
}

.about-text ul li:nth-child(3) {
    animation-delay: 0.3s;
}

.about-text ul li:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInRight {
    from {
        transform: translateX(-10px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.about-text ul li:hover {
    transform: translateX(10px);
    color: #f8f290;
    background: rgba(208, 162, 74, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-text ul li i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #d0a24a;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.about-text ul li:hover i {
    transform: translateY(-50%) scale(1.2) rotate(10deg);
    color: #f8f290;
    text-shadow: 0 0 10px rgba(248, 242, 144, 0.5);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 7;
    perspective: 1000px;
    transform: translateX(20px);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: translateX(0);
}

.image-placeholder {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
    animation: image-float 6s ease-in-out infinite;
    border: 2px solid rgba(208, 162, 74, 0.3);
    background: rgba(31, 31, 31, 0.7);
    z-index: 8;
}

.image-placeholder:hover {
    transform: rotateY(0) rotateX(0) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(208, 162, 74, 0.7);
}

.image-placeholder img {
    transition: all 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.1);
}

.image-placeholder:hover img {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2) saturate(1.2);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 161, 63, 0.2) 0%, transparent 50%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.image-placeholder:hover::before {
    opacity: 1;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border: 2px solid rgba(208, 162, 74, 0.5);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: pulse 2s infinite;
}

.image-placeholder:hover::after {
    opacity: 1;
}

/* Features Section */
.features {
    position: relative;
    z-index: 6;
}

.features .section-title h2 {
    animation: text-glow 2s ease-in-out infinite alternate;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.features .section-title:hover h2 {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(201, 161, 63, 0.8), 0 0 30px rgba(208, 162, 74, 0.6);
}

.features .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #c9a13f, #d0a24a);
    border-radius: 2px;
    animation: underline-grow 1s ease-in-out;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
    position: relative;
}

.features-grid::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(208, 162, 74, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: rotate 30s linear infinite;
    border-radius: 50%;
}

.feature-card {
    background: rgba(31, 31, 31, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    transform: translateY(20px);
    opacity: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 7;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.9) 0%, 
        rgba(22, 33, 62, 0.8) 25%, 
        rgba(15, 52, 96, 0.7) 50%, 
        rgba(26, 26, 46, 0.8) 75%, 
        rgba(22, 33, 62, 0.9) 100%);
    overflow: hidden;
    animation: card-float 0.6s ease forwards;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c9a13f, #d0a24a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(208, 162, 74, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #c9a13f, #d0a24a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(201, 161, 63, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}

.feature-card:hover .feature-icon::after {
    transform: translate(-50%, -50%) scale(1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #c9a13f, #d0a24a);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.feature-card:hover h3 {
    color: #f8f290;
}

.feature-card:hover h3::after {
    width: 100px;
}

.feature-card p {
    color: #b0b0b0;
    line-height: 1.7;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover p {
    color: #ffffff;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 161, 63, 0.05) 0%, transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

/* Testimonials Section */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(31, 31, 31, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    transform: translateY(20px);
    opacity: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 7;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.9) 0%, 
        rgba(22, 33, 62, 0.8) 25%, 
        rgba(15, 52, 96, 0.7) 50%, 
        rgba(26, 26, 46, 0.8) 75%, 
        rgba(22, 33, 62, 0.9) 100%);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(208, 162, 74, 0.5);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #b0b0b0;
    line-height: 1.7;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 3rem;
    color: #d0a24a;
    opacity: 0.3;
    position: absolute;
}

.testimonial-content p::before {
    top: -20px;
    left: -10px;
}

.testimonial-content p::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a13f, #d0a24a);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, 
        #1a1a2e 0%, 
        #16213e 25%, 
        #0f3460 50%, 
        #1a1a2e 75%, 
        #16213e 100%);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    margin-top: auto;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
    width: 100vw;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    left: 50%;
    transform: translateX(-50%) translateZ(0);
    position: relative;
    margin-left: 0;
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 11;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 20px;
    transform: translateZ(0);
    animation: fadeInUp 1s ease-out;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #c9a13f, #f8f290);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    font-weight: 700;
    animation: text-glow 2s ease-in-out infinite alternate;
    cursor: default;
}

.footer-logo h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #c9a13f, #d0a24a);
    border-radius: 1px;
}

.footer-logo p {
    color: #b0b0b0;
    max-width: 100%;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-links h4, .social-links h4, .contact-info h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #d0a24a;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-links h4::after, .social-links h4::after, .contact-info h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #c9a13f, #d0a24a);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    position: relative;
    padding-left: 15px;
    font-size: 1rem;
    font-weight: 500;
}

.footer-links ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c9a13f, #d0a24a);
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: #d0a24a;
    transform: translateX(5px);
}

.footer-links ul li a:hover::after {
    width: 100%;
}

.footer-links i {
    margin-right: 10px;
    color: #d0a24a;
    width: 20px;
}

.social-links ul {
    list-style: none;
}

.social-links ul li {
    margin-bottom: 10px;
}

.social-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    position: relative;
    padding-left: 15px;
    font-size: 1rem;
    font-weight: 500;
}

.social-links ul li a::before {
    content: '»';
    position: absolute;
    left: 0;
    color: #d0a24a;
    transition: all 0.3s ease;
}

.social-links ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c9a13f, #d0a24a);
    transition: width 0.3s ease;
}

.social-links ul li a:hover {
    color: #d0a24a;
    transform: translateX(5px);
}

.social-links ul li a:hover::before {
    left: 5px;
}

.social-links ul li a:hover::after {
    width: 100%;
}

.social-links i {
    margin-right: 10px;
    color: #d0a24a;
    width: 20px;
}

.contact-info p {
    color: #b0b0b0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 400;
}

.contact-info p:hover {
    color: #d0a24a;
    transform: translateX(5px);
}

.contact-info p a {
    color: #d0a24a;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.contact-info p a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #c9a13f, #d0a24a);
    transition: width 0.3s ease;
}

.contact-info p a:hover {
    color: #f8f290;
}

.contact-info p a:hover::after {
    width: 100%;
}

.contact-info ul {
    list-style: none;
}

.contact-info ul li {
    margin-bottom: 10px;
}

.contact-info ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    position: relative;
    padding-left: 15px;
    font-size: 1rem;
    font-weight: 500;
}

.contact-info ul li a::before {
    content: '»';
    position: absolute;
    left: 0;
    color: #d0a24a;
    transition: all 0.3s ease;
}

.contact-info ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c9a13f, #d0a24a);
    transition: width 0.3s ease;
}

.contact-info ul li a:hover {
    color: #d0a24a;
    transform: translateX(5px);
}

.contact-info ul li a:hover::before {
    left: 5px;
}

.contact-info ul li a:hover::after {
    width: 100%;
}

.contact-info i {
    margin-right: 10px;
    color: #d0a24a;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    position: relative;
    z-index: 3;
    font-size: 0.9rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive Design */
/* Extra small devices (phones, 600px and down) */
@media (max-width: 600px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 0 50px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content p {
        margin: 0 auto 30px;
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .server-stats {
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
        padding: 20px;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    main {
        margin-top: 120px;
        min-height: calc(100vh - 240px);
    }
    
    nav {
        flex-direction: row;
        gap: 20px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(31, 31, 31, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-text ul li {
        text-align: left;
    }
    
    .join-section {
        margin: 50px 10px;
        width: calc(100% - 20px);
        padding: 50px 20px;
    }
    
    .join-content h2 {
        font-size: 2rem;
    }
    
    .feature-card, .testimonial-card {
        padding: 30px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
        max-width: 100%;
        margin: 0 auto;
        animation: fadeInUp 1s ease-out;
    }
    
    .footer-logo p {
        max-width: 100%;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media (min-width: 600px) and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .image-placeholder {
        width: 280px;
        height: 280px;
    }
    
    header {
        padding: 15px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .join-section {
        margin: 50px 15px;
        width: calc(100% - 30px);
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 992px) {
    .hero {
        min-height: 70vh;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        max-width: 100%;
        margin: 0 auto 30px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .server-stats {
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
        padding: 25px;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
    
    main {
        margin-top: 120px;
        min-height: calc(100vh - 240px);
    }
    
    nav {
        flex-direction: row;
        gap: 20px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(31, 31, 31, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .about-text ul li {
        text-align: left;
    }
    
    .join-section {
        margin: 50px 10px;
        width: calc(100% - 20px);
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .join-content h2 {
        font-size: 2.5rem;
    }
    
    .join-content p {
        font-size: 1.1rem;
    }
}

/* Medium-Large devices (tablets and small laptops, 992px to 1200px) */
@media (min-width: 992px) and (max-width: 1200px) {
    .container {
        max-width: 1100px;
    }
    
    .hero-content h1 {
        font-size: 3.8rem;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-content p {
        font-size: 1.3rem;
        max-width: 650px;
    }
}

/* Large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .section-title h2 {
        font-size: 3rem;
    }
    
    .stat h3 {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 40px;
    }
    
    .testimonial-card {
        padding: 40px;
    }
    
    .join-content h2 {
        font-size: 3rem;
    }
    
    .footer-content {
        gap: 60px;
        max-width: 100%;
        margin: 0 auto;
        animation: fadeInUp 1s ease-out;
    }
}

/* Full HD Desktop (1920x1080) */
@media (min-width: 1920px) and (min-height: 1080px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-content h1 {
        font-size: 4.5rem;
    }
    
    .hero-content p {
        font-size: 1.4rem;
        max-width: 700px;
    }
    
    .server-stats {
        max-width: 600px;
        padding: 40px;
    }
    
    .stat h3 {
        font-size: 3rem;
    }
    
    .feature-card {
        padding: 50px;
    }
    
    .testimonial-card {
        padding: 50px;
    }
    
    .join-content h2 {
        font-size: 3.5rem;
    }
    
    .join-content p {
        font-size: 1.4rem;
        max-width: 700px;
    }
    
    .footer-content {
        gap: 80px;
        max-width: 100%;
        margin: 0 auto;
        animation: fadeInUp 1s ease-out;
    }
}