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

/* Colors */
:root {
    --bg-dark: rgb(10, 24, 16);
    --bg-card: rgb(14, 30, 20);
    --text-white: rgb(224, 230, 224);
    --text-gray: rgb(115, 134, 121);
    --primary-green: rgb(74, 222, 128);
    --primary-dark: rgb(10, 24, 16);
    --border-color: rgb(26, 46, 30);
    --secondary-bg: rgb(20, 36, 25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.text-primary {
    color: var(--primary-green);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 672px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background-color: rgba(10, 24, 16, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 222, 128, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    transition: transform 0.2s;
}

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

.nav-logo img {
    border-radius: 0.5rem;
}

.nav-brand {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-white);
    display: none;
}

@media (min-width: 640px) {
    .nav-brand {
        display: inline;
    }
}

.nav-divider {
    display: none;
    height: 1.25rem;
    width: 1px;
    background-color: var(--border-color);
}

@media (min-width: 640px) {
    .nav-divider {
        display: block;
    }
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
    font-weight: 500;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0.125rem;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 1rem;
    background-color: var(--primary-green);
    border-radius: 9999px;
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .nav-actions {
        display: flex;
    }
}

.btn-copy-ip,
.btn-copy-ip-mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: rgb(199, 209, 199);
    background-color: rgba(26, 46, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-copy-ip:hover {
    border-color: rgba(74, 222, 128, 0.4);
    background-color: rgba(74, 222, 128, 0.1);
}

.icon-copy {
    color: var(--text-gray);
    transition: color 0.2s;
}

button:hover .icon-copy {
    color: var(--primary-green);
}

.btn-play-now,
.btn-play-now-mobile {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-dark);
    background-color: var(--primary-green);
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
}

.btn-play-now:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

.hamburger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: var(--text-white);
    transition: all 0.3s;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.open {
    max-height: 500px;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none;
    }
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.5rem 0;
    background-color: rgba(10, 24, 16, 0.98);
}

.mobile-nav-link {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-green);
    background-color: rgba(74, 222, 128, 0.1);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background-color: rgba(10, 24, 16, 0.98);
    border-top: 1px solid var(--border-color);
}

.btn-copy-ip-mobile,
.btn-play-now-mobile {
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* Server Status */
.server-status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.server-status-badge .status-text {
    font-weight: 500;
    color: var(--primary-green);
}

.status-dot {
    position: relative;
    display: flex;
    width: 10px;
    height: 10px;
}

.status-ping {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary-green);
    opacity: 0.75;
    animation: ping 2s ease infinite;
}

.status-dot-inner {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-green);
    animation: pulse-glow-status 2s ease infinite;
}

/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 24, 16, 0.75);
}

.hero-overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 24, 16, 1), rgba(10, 24, 16, 0.4), rgba(10, 24, 16, 0.3));
}

.hero-overlay-3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 24, 16, 0.6), transparent, rgba(10, 24, 16, 1));
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    bottom: 0;
    border-radius: 50%;
    background-color: var(--primary-green);
    animation: float-up 12s ease-in infinite;
}

.ambient-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.glow-1 {
    left: 25%;
    top: 33%;
    width: 400px;
    height: 400px;
    background-color: rgba(74, 222, 128, 0.08);
    animation: pulse-glow 4s ease infinite;
}

.glow-2 {
    right: 25%;
    bottom: 33%;
    width: 300px;
    height: 300px;
    background-color: rgba(74, 222, 128, 0.05);
    animation: pulse-glow 4s ease infinite 1.5s;
}

.glow-3 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-color: rgba(74, 222, 128, 0.03);
    animation: pulse-glow 4s ease infinite 3s;
}

.hero-content {
    position: relative;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 7rem 1.5rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
}

.hero-logo-container {
    position: relative;
    margin-bottom: 2rem;
}

.logo-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    background-color: rgba(74, 222, 128, 0.2);
    filter: blur(30px);
    animation: pulse-glow 3s ease infinite;
}

.hero-logo {
    position: relative;
    border-radius: 1rem;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
}

.season-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-green);
    background-color: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 9999px;
    backdrop-filter: blur(4px);
}

.hero-title {
    margin-bottom: 0.5rem;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--text-white);
}

.hero-subtitle {
    margin-bottom: 1.5rem;
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.3em;
}

.gradient-text {
    background: linear-gradient(135deg, rgb(74, 222, 128), rgb(52, 211, 153), rgb(74, 222, 128));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(74, 222, 128, 0.5));
}

.typing-container {
    height: 2rem;
    margin-bottom: 2.5rem;
}

.typing-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-gray);
}

.typing-cursor {
    border-right: 2px solid var(--primary-green);
    animation: blink 1s step-end infinite;
}

.hero-description {
    max-width: 512px;
    margin-bottom: 3rem;
    font-size: 1rem;
    line-height: 1.625;
    color: var(--text-gray);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.btn-start-playing {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    background-color: var(--primary-green);
    border: none;
    border-radius: 0.75rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-start-playing:hover {
    filter: brightness(1.1);
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
}

.btn-copy-ip-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: rgb(199, 209, 199);
    background-color: rgba(26, 46, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    animation: border-pulse 3s ease infinite;
}

.btn-copy-ip-hero:hover {
    border-color: rgba(74, 222, 128, 0.4);
    background-color: rgba(74, 222, 128, 0.1);
}

.btn-copy-ip-hero .divider {
    height: 1rem;
    width: 1px;
    background-color: var(--border-color);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 0.75rem;
    color: var(--primary-green);
}

.stat-value-container {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.stat-value {
    font-family: 'Courier New', monospace;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--text-white);
}

.stat-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-green);
    animation: pulse-glow-status 2s ease infinite;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gray);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease infinite;
}

.scroll-text {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(150, 150, 150, 0.6);
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(150, 150, 150, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-dot {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--primary-green);
    border-radius: 2px;
    animation: scroll-down 2s ease infinite;
}

/* Sections */
.section {
    position: relative;
    padding: 7rem 0;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.section-line-top {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 66%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(74, 222, 128, 0.3), transparent);
}

.section-glow {
    position: absolute;
    border-radius: 50%;
    width: 500px;
    height: 500px;
    background-color: rgba(74, 222, 128, 0.03);
    filter: blur(100px);
}

.section-header {
    margin-bottom: 5rem;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-green);
}

.label-line {
    height: 1px;
    width: 2rem;
    background-color: rgba(74, 222, 128, 0.5);
}

.section-label-simple {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-green);
}

.section-title {
    margin-bottom: 1.25rem;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-white);
}

.section-title-small {
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--text-white);
}

.section-description {
    max-width: 672px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.625;
    color: var(--text-gray);
}

/* Features */
.features-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

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

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    position: relative;
    overflow: hidden;
    padding: 1.75rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: rgba(74, 222, 128, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.05);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.25rem;
    background-color: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 1rem;
    color: var(--primary-green);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background-color: rgba(74, 222, 128, 0.2);
    transform: scale(1.1);
}

.feature-title {
    margin-bottom: 0.625rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-white);
}

.feature-description {
    font-size: 0.875rem;
    line-height: 1.625;
    color: var(--text-gray);
}

/* Rules */
.rules-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.rule-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.rule-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.rule-card:hover {
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.05);
}

.rule-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    font-family: 'Courier New', monospace;
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--primary-green);
    background-color: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.rule-card:hover .rule-number {
    transform: scale(1.05);
}

.rule-content {
    flex: 1;
}

.rule-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.375rem;
}

.rule-title {
    font-weight: 700;
    color: var(--text-white);
}

.severity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.125rem 0.5rem;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid;
    border-radius: 9999px;
}

.severity-high {
    background-color: rgba(239, 68, 68, 0.15);
    color: rgb(248, 113, 113);
    border-color: rgba(239, 68, 68, 0.25);
}

.severity-medium {
    background-color: rgba(245, 158, 11, 0.15);
    color: rgb(251, 191, 36);
    border-color: rgba(245, 158, 11, 0.25);
}

.severity-low {
    background-color: rgba(74, 222, 128, 0.15);
    color: var(--primary-green);
    border-color: rgba(74, 222, 128, 0.25);
}

.rule-description {
    font-size: 0.875rem;
    line-height: 1.625;
    color: var(--text-gray);
}

/* Staff */
.staff-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .staff-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.staff-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding: 2rem;
    text-align: center;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.staff-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.staff-card:hover {
    border-color: rgba(74, 222, 128, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.05);
}

.staff-avatar {
    width: 6rem;
    height: 6rem;
    margin-bottom: 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.staff-card:hover .staff-avatar {
    border-color: rgba(74, 222, 128, 0.4);
    transform: scale(1.05);
}

.staff-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-name {
    margin-bottom: 0.375rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-white);
}

.staff-role {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.875rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid;
    border-radius: 9999px;
}

.role-owner {
    background-color: rgba(239, 68, 68, 0.15);
    color: rgb(248, 113, 113);
    border-color: rgba(239, 68, 68, 0.3);
}

.role-manager {
    background-color: rgba(245, 158, 11, 0.15);
    color: rgb(251, 191, 36);
    border-color: rgba(245, 158, 11, 0.3);
}

.role-mod {
    background-color: rgba(74, 222, 128, 0.15);
    color: var(--primary-green);
    border-color: rgba(74, 222, 128, 0.3);
}

.staff-description {
    font-size: 0.875rem;
    line-height: 1.625;
    color: var(--text-gray);
}

/* Join */
.steps-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    text-align: center;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: rgba(74, 222, 128, 0.3);
    background-color: var(--secondary-bg);
    transform: translateY(-4px);
}

.step-connector {
    display: none;
    position: absolute;
    right: 0;
    top: 50%;
    width: 1.5rem;
    height: 1px;
    background-color: var(--border-color);
    transform: translateX(100%);
}

@media (min-width: 640px) {
    .step-card:not(:last-child) .step-connector {
        display: block;
    }
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    background-color: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 1rem;
    transition: all 0.3s;
}

.step-card:hover .step-number {
    background-color: rgba(74, 222, 128, 0.25);
}

.step-title {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
}

.step-description {
    font-size: 0.875rem;
    line-height: 1.625;
    color: var(--text-gray);
}

.join-box {
    padding: 2rem;
    text-align: center;
    background-color: rgba(74, 222, 128, 0.05);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 1rem;
}

.join-box-label {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-green);
}

.btn-copy-ip-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem 2rem;
    font-family: 'Courier New', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-copy-ip-large:hover {
    border-color: rgba(74, 222, 128, 0.4);
    background-color: rgba(74, 222, 128, 0.1);
    transform: scale(1.02);
}

.copy-feedback {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    transition: color 0.3s;
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-dark);
    background-color: var(--primary-green);
    border: none;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-discord:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-container {
        flex-direction: row;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.footer-brand img {
    border-radius: 0.375rem;
}

.footer-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-green);
}

/* Animations */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-fade-up {
    animation: fade-up 0.7s ease forwards;
    opacity: 0;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes pulse-glow-status {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
    }
}

@keyframes float-up {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes blink {
    0%, 100% {
        border-right-color: var(--primary-green);
    }
    50% {
        border-right-color: transparent;
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes border-pulse {
    0%, 100% {
        border-color: rgba(74, 222, 128, 0.2);
    }
    50% {
        border-color: rgba(74, 222, 128, 0.5);
    }
}

@keyframes scroll-down {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}
