:root {
    --primary: #CC9BD9;
    --primary-dark: #b07cc0;
    --primary-light: #e0bfe8;
    --primary-glow: rgba(204, 155, 217, 0.3);
    --bg-dark: #0d0d1a;
    --bg-card: #151528;
    --bg-card-hover: #1c1c38;
    --bg-surface: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0c0;
    --text-muted: #6b6b8a;
    --border-color: rgba(204, 155, 217, 0.15);
    --border-hover: rgba(204, 155, 217, 0.35);
    --success: #4ade80;
    --error: #f87171;
    --warning: #fbbf24;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

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

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

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

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

/* LOADING SCREEN */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.loader-block {
    width: 16px;
    height: 16px;
    background: var(--primary);
    animation: loaderBounce 0.6s ease-in-out infinite alternate;
}

.loader-block:nth-child(2) { animation-delay: 0.2s; }
.loader-block:nth-child(3) { animation-delay: 0.4s; }

@keyframes loaderBounce {
    from { transform: scaleY(1); opacity: 0.5; }
    to { transform: scaleY(2); opacity: 1; }
}

.loading-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 13, 26, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 700;
    transition: var(--transition);
}

.nav-logo i {
    color: var(--primary);
    font-size: 1.5rem;
    transition: var(--transition);
}

.nav-logo:hover {
    color: var(--primary);
}

.nav-logo:hover i {
    transform: rotate(90deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link i {
    font-size: 0.85rem;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(204, 155, 217, 0.1);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(204, 155, 217, 0.15);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* MAIN CONTENT */
.main-content {
    padding-top: 70px;
    min-height: 100vh;
}

.section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.section.active {
    display: block;
}

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

/* HERO SECTION */
.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(204, 155, 217, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: slideDown 0.8s ease;
}

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

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    animation: slideUp 0.8s ease 0.2s both;
}

.title-highlight {
    color: var(--primary);
    text-shadow: 0 0 40px var(--primary-glow);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: slideUp 0.8s ease 0.4s both;
}

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

/* INFO CARDS */
.server-info-cards {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: slideUp 0.8s ease 0.6s both;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(204, 155, 217, 0.15);
    border-radius: 10px;
    color: var(--primary);
    font-size: 1rem;
}

.info-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.info-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 8px;
}

.status-dot.online { background: var(--success); box-shadow: 0 0 10px var(--success); }
.status-dot.offline { background: var(--error); box-shadow: 0 0 10px var(--error); }
.status-dot.checking { background: var(--warning); animation: pulse 1s infinite; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.status-checking { color: var(--warning); }

/* BUTTONS */
.copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.copy-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.copy-btn.copied {
    background: var(--success);
}

.copy-btn.small {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.copy-btn.large {
    padding: 12px 24px;
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease 0.8s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-secondary {
    background: rgba(204, 155, 217, 0.1);
    color: var(--primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(204, 155, 217, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* HERO VISUAL */
.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.minecraft-block {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary);
    opacity: 0.08;
    animation: floatBlock 20s infinite linear;
}

.block-1 { top: 10%; left: 5%; animation-delay: 0s; }
.block-2 { top: 70%; left: 85%; animation-delay: -5s; width: 40px; height: 40px; }
.block-3 { top: 20%; left: 90%; animation-delay: -10s; width: 80px; height: 80px; }
.block-4 { top: 80%; left: 10%; animation-delay: -15s; width: 50px; height: 50px; }
.block-5 { top: 50%; left: 50%; animation-delay: -7s; width: 30px; height: 30px; }

@keyframes floatBlock {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* FEATURES */
.features-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(204, 155, 217, 0.15);
    border-radius: 16px;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* PAGE HEADERS */
.section-header {
    text-align: center;
    padding: 60px 24px 40px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.page-title i {
    color: var(--primary);
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* TEAM SECTION */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

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

.team-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    image-rendering: pixelated;
    transition: var(--transition);
}

.avatar-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-avatar img {
    transform: scale(1.1);
}

.team-card:hover .avatar-ring {
    opacity: 1;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'JetBrains Mono', monospace;
}

.team-role {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.team-role.owner {
    background: rgba(204, 155, 217, 0.2);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.team-role.manager {
    background: rgba(251, 191, 36, 0.2);
    color: var(--warning);
    border: 1px solid var(--warning);
}

.team-role.developer {
    background: rgba(74, 222, 128, 0.2);
    color: var(--success);
    border: 1px solid var(--success);
}

.team-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ABOUT SECTION */
.about-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--border-hover);
}

.about-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(204, 155, 217, 0.15);
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.about-card h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--text-secondary);
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(204, 155, 217, 0.08);
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list i {
    color: var(--success);
    font-size: 0.85rem;
}

.about-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.about-stat-card:hover {
    border-color: var(--border-hover);
    transform: translateX(-4px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(204, 155, 217, 0.15);
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.1rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RULES SECTION */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.rule-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.rule-card:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.rule-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.rule-content h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.rule-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* NEWS SECTION */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.news-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.news-card.featured {
    grid-column: 1 / -1;
}

.news-card.featured .news-image {
    height: 200px;
}

.news-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.news-banner {
    width: 100%;
    overflow: hidden;
}

.news-banner-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.news-card:hover .news-banner-img {
    transform: scale(1.03);
}

.news-image {
    height: 160px;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-card));
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image-placeholder {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(204, 155, 217, 0.15);
    border-radius: 16px;
    font-size: 1.5rem;
    color: var(--primary);
}

.news-content {
    padding: 24px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.news-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.news-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* HOW TO JOIN */
.join-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.step-card {
    position: relative;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.step-number {
    position: absolute;
    top: -10px;
    left: 20px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
}

.step-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(204, 155, 217, 0.15);
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.ip-display {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 14px;
    background: var(--bg-dark);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.ip-display code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--primary);
    flex: 1;
}

.join-cta {
    margin-top: 40px;
}

.cta-card {
    padding: 40px;
    background: linear-gradient(135deg, rgba(204, 155, 217, 0.1), rgba(204, 155, 217, 0.05));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
}

.cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.cta-card > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.big-ip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.big-ip code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    padding: 12px 20px;
    background: var(--bg-dark);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    color: var(--primary);
}

.version-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(204, 155, 217, 0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
}

/* SERVER STATUS */
.status-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.status-main-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    transition: var(--transition);
}

.status-main-card.online {
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.1);
}

.status-main-card.offline {
    border-color: rgba(248, 113, 113, 0.3);
    box-shadow: 0 0 30px rgba(248, 113, 113, 0.1);
}

.status-indicator {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.pulse-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
}

.status-main-card.online .pulse-ring,
.status-main-card.online .pulse-dot {
    background: var(--success);
    border-color: var(--success);
}

.status-main-card.offline .pulse-ring,
.status-main-card.offline .pulse-dot {
    background: var(--error);
    border-color: var(--error);
}

.status-info h2 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.status-info .status-ip {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.status-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.status-detail-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.status-detail-card:hover {
    border-color: var(--border-hover);
}

.detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(204, 155, 217, 0.15);
    border-radius: 10px;
    color: var(--primary);
    margin-bottom: 12px;
}

.detail-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.status-banner-wrapper {
    margin-bottom: 24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.status-banner-wrapper:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 40px rgba(204, 155, 217, 0.15);
}

.status-page-banner {
    width: 100%;
    height: auto;
    display: block;
}

.status-refresh {
    text-align: center;
}

.last-checked {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FOOTER */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    padding: 48px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.footer-brand h3 i {
    color: var(--primary);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(204, 155, 217, 0.1);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(13, 13, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .server-info-cards {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .big-ip {
        flex-direction: column;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero {
        padding: 40px 16px;
    }

    .section-header {
        padding: 40px 16px 24px;
    }

    .features-section {
        padding: 40px 16px;
    }
}

/* PARTICLES */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}