/* Dead Space Themed CSS */
@font-face {
    font-family: 'DeadSpace';
    src: url('../resources/resource/fonts/ds-digib.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Unitology';
    src: url('../resources/resource/fonts/deadspace_unitology.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* CSS Variables for Dead Space Theme */
:root {
    --ds-dark-bg: #0a0a0a;
    --ds-panel-bg: #1a1a1a;
    --ds-panel-border: #2a2a2a;
    --ds-accent-cyan: #00ffff;
    --ds-accent-orange: #ff6600;
    --ds-accent-red: #ff0000;
    --ds-accent-green: #00ff00;
    --ds-text-primary: #ffffff;
    --ds-text-secondary: #cccccc;
    --ds-text-muted: #888888;
    --ds-glow-cyan: rgba(0, 255, 255, 0.3);
    --ds-glow-orange: rgba(255, 102, 0, 0.3);
    --ds-glow-red: rgba(255, 0, 0, 0.3);
}

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

/* Hide scrollbars for webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Hide scrollbars for Firefox */
html {
    scrollbar-width: none;
}

/* Hide scrollbars for IE and Edge */
body {
    -ms-overflow-style: none;
}

body {
    font-family: 'Orbitron', 'DeadSpace', monospace;
    background: var(--ds-dark-bg);
    color: var(--ds-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background Image Layer */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('../resources/materials/dayshower/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Apply Dead Space color filters */
    filter: 
        hue-rotate(180deg) 
        saturate(1.2) 
        contrast(1.1) 
        brightness(0.7)
        sepia(0.3);
    /* Add cyan tint */
    background-blend-mode: overlay;
    z-index: -3;
    opacity: 0.8;
    /* Subtle animation for atmospheric effect */
    animation: backgroundShift 20s ease-in-out infinite;
}

/* Background animation */
@keyframes backgroundShift {
    0%, 100% {
        transform: scale(1) translateX(0);
        filter: 
            hue-rotate(180deg) 
            saturate(1.2) 
            contrast(1.1) 
            brightness(0.7)
            sepia(0.3);
    }
    50% {
        transform: scale(1.02) translateX(2px);
        filter: 
            hue-rotate(185deg) 
            saturate(1.3) 
            contrast(1.15) 
            brightness(0.75)
            sepia(0.35);
    }
}

/* Background Effects */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 102, 0, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.08) 50%, transparent 70%),
        /* Add cyan tint to the background image */
        linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: -2;
}

/* Navigation Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 2px solid var(--ds-accent-cyan);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
    padding: 0 2rem;
}

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

.logo-img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 10px var(--ds-glow-cyan));
    object-fit: contain;
}

.logo-text {
    font-family: 'DeadSpace', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--ds-accent-cyan);
    text-shadow: 0 0 10px var(--ds-glow-cyan);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--ds-text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ds-accent-cyan);
    border-color: var(--ds-accent-cyan);
    box-shadow: 0 0 15px var(--ds-glow-cyan);
    text-shadow: 0 0 10px var(--ds-glow-cyan);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

/* Main Content */
.main-content {
    margin-top: 100px;
    padding: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    filter: drop-shadow(0 0 20px var(--ds-glow-cyan));
    margin-bottom: 2rem;
}

/* .main-title styles removed - element replaced with hero logo */

.subtitle {
    font-size: 1.2rem;
    color: var(--ds-text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--ds-text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: 'Orbitron', 'DeadSpace', monospace;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    border: 2px solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    text-align: center;
}

.btn-primary {
    color: var(--ds-accent-cyan);
    border-color: var(--ds-accent-cyan);
    background: transparent;
}

.btn-primary:hover {
    background: var(--ds-accent-cyan);
    color: var(--ds-dark-bg);
    box-shadow: 0 0 20px var(--ds-glow-cyan);
    text-shadow: none;
}

.btn-secondary {
    color: var(--ds-accent-orange);
    border-color: var(--ds-accent-orange);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--ds-accent-orange);
    color: var(--ds-dark-bg);
    box-shadow: 0 0 20px var(--ds-glow-orange);
    text-shadow: none;
}

.btn-blue {
    color: var(--ds-accent-cyan);
    border-color: var(--ds-accent-cyan);
    background: transparent;
}

.btn-blue:hover {
    background: var(--ds-accent-cyan);
    color: var(--ds-dark-bg);
    box-shadow: 0 0 20px var(--ds-glow-cyan);
    text-shadow: none;
}

/* Panel Styles */
.panel-container {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--ds-panel-border);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    backdrop-filter: blur(5px);
}

.panel-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.05) 50%, transparent 70%);
    border-radius: 8px;
    pointer-events: none;
}

.panel-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.panel-header h3 {
    font-family: 'DeadSpace', monospace;
    font-size: 1.5rem;
    color: var(--ds-accent-cyan);
    text-shadow: 0 0 10px var(--ds-glow-cyan);
    letter-spacing: 2px;
}

.panel-triangle {
    width: 0;
    height: 0;
    border-left: 10px solid var(--ds-accent-cyan);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 1rem;
    filter: drop-shadow(0 0 5px var(--ds-glow-cyan));
}

/* Quick Access Grid */
.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.access-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid var(--ds-panel-border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--ds-text-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.access-item:hover {
    border-color: var(--ds-accent-cyan);
    box-shadow: 0 0 20px var(--ds-glow-cyan);
    transform: translateY(-5px);
}

.access-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.access-item:hover::before {
    left: 100%;
}

.access-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--ds-glow-cyan));
}

.access-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.access-item span {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-align: center;
}

/* Status Grid */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.status-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid var(--ds-panel-border);
    border-radius: 8px;
}

.status-label {
    font-size: 0.9rem;
    color: var(--ds-text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.status-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ds-text-primary);
}

.status-value.online {
    color: var(--ds-accent-green);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* Updates List */
.updates-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.update-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid var(--ds-panel-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.update-item:hover {
    border-color: var(--ds-accent-cyan);
    box-shadow: 0 0 20px var(--ds-glow-cyan);
    transform: translateY(-5px);
}

.update-date {
    font-family: 'DeadSpace', monospace;
    font-size: 0.9rem;
    color: var(--ds-accent-cyan);
    min-width: 100px;
    text-shadow: 0 0 5px var(--ds-glow-cyan);
    text-align: center;
}

.update-content h4 {
    color: var(--ds-text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.update-content p {
    color: var(--ds-text-secondary);
    line-height: 1.6;
}

.no-updates {
    text-align: center;
    padding: 2rem;
    color: var(--ds-text-secondary);
    font-style: italic;
    background: rgba(42, 42, 42, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
}

/* Footer */
.main-footer {
    background: rgba(26, 26, 26, 0.95);
    border-top: 2px solid var(--ds-accent-cyan);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.footer-section h4 {
    color: var(--ds-accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--ds-text-secondary);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--ds-panel-border);
    margin-top: 2rem;
    color: var(--ds-text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    /* .main-title responsive styles removed - element replaced with hero logo */
    
    .hero-logo {
        max-height: 150px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .access-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .update-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Additional responsive styles for other pages */
    .page-title h1 {
        font-size: 2rem;
    }
    
    .overview-content,
    .content-pack-info,
    .connect-content,
    .status-detailed,
    .branch-details,
    .choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-stats,
    .pack-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expectations-grid,
    .features-content,
    .requirements-content,
    .rules-content {
        grid-template-columns: 1fr;
    }
    
    
    .steps-grid,
    .choose-steps {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .crew-grid {
        grid-template-columns: 1fr;
    }
    
    .crew-member {
        flex-direction: column;
        text-align: center;
    }
    
    .member-avatar {
        align-self: center;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1rem;
    }
    
    .panel-container {
        padding: 1rem;
    }
    
    /* .main-title responsive styles removed - element replaced with hero logo */
    
    .hero-logo {
        max-height: 120px;
    }
    
    .access-grid {
        grid-template-columns: 1fr;
    }
    
    /* Additional responsive styles for other pages */
    .page-title {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .page-title h1 {
        font-size: 1.5rem;
    }
    
    .overview-stats,
    .pack-stats {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .join-actions,
    .getting-started-actions,
    .connect-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Animation Keyframes */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 10px var(--ds-glow-cyan);
    }
    50% {
        box-shadow: 0 0 20px var(--ds-glow-cyan), 0 0 30px var(--ds-glow-cyan);
    }
}

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

/* Panel animations removed - panels now appear immediately */

.nav-link.active {
    animation: glow-pulse 2s infinite;
}

/* Page Header Styles */
.page-header {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.page-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.page-title h1 {
    font-family: 'DeadSpace', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ds-accent-cyan);
    text-shadow: 0 0 20px var(--ds-glow-cyan);
    letter-spacing: 3px;
}

.page-triangle {
    width: 0;
    height: 0;
    border-left: 15px solid var(--ds-accent-cyan);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    filter: drop-shadow(0 0 10px var(--ds-glow-cyan));
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--ds-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Server Bio Page Styles */
.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.overview-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--ds-text-secondary);
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid var(--ds-panel-border);
    border-radius: 8px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--ds-accent-cyan);
    text-shadow: 0 0 10px var(--ds-glow-cyan);
    margin-bottom: 0.5rem;
}

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

/* Expectations Grid */
.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.expectation-item {
    text-align: center;
    padding: 2rem;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid var(--ds-panel-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.expectation-item:hover {
    border-color: var(--ds-accent-cyan);
    box-shadow: 0 0 20px var(--ds-glow-cyan);
    transform: translateY(-5px);
}

.expectation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 15px var(--ds-glow-cyan));
}

.expectation-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.expectation-item h4 {
    color: var(--ds-accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.expectation-item p {
    color: var(--ds-text-secondary);
    line-height: 1.6;
}

/* Features Content */
.features-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-category h4 {
    color: var(--ds-accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.feature-category ul {
    list-style: none;
    padding: 0;
}

.feature-category li {
    padding: 0.5rem 0;
    color: var(--ds-text-secondary);
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
}

.feature-category li:before {
    content: '▶';
    color: var(--ds-accent-cyan);
    margin-right: 0.5rem;
}


/* Ship Progression Map Styles */
.ship-progression-map {
    position: relative;
    min-height: 600px;
    margin: 3rem 0;
    padding: 2rem;
}

.progression-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 95%;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--ds-panel-border);
    border-radius: 8px;
    z-index: 0;
    pointer-events: none;
    transition: all 0.5s ease;
    backdrop-filter: blur(2px);
}

.progression-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 8px;
    z-index: 1;
    pointer-events: none;
}

.progression-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.line-image {
    width: 70%;
    height: 70%;
    object-fit: contain;
    opacity: 0.8;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.location-nodes {
    position: relative;
    z-index: 3;
    height: 100%;
    min-height: 500px;
}

.location-node {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-node:nth-child(1) { 
    bottom: 9.5%; 
    left: 13%; 
}
.location-node:nth-child(2) { 
    bottom: 21.5%; 
    left: 27%; 
}
.location-node:nth-child(3) { 
    bottom: 33.5%; 
    left: 41%; 
}
.location-node:nth-child(4) { 
    bottom: 46.5%; 
    left: 56%; 
}
.location-node:nth-child(5) { 
    bottom: 58.5%; 
    left: 70%; 
}
.location-node:nth-child(6) { 
    top: 17.5%; 
    left: 85%; 
}

.location-node:hover {
    transform: translateX(-50%) scale(1.1);
}

.location-node.active {
    transform: translateX(-50%) scale(1.2);
}

.location-node.active .location-icon {
    box-shadow: 0 0 25px rgba(0, 150, 255, 0.5);
}

.location-icon {
    width: 55px;
    height: 55px;
    background: #1a1a2e;
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.2);
    transition: all 0.3s ease;
}

.location-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: brightness(1.5);
}

.location-text {
    text-align: center;
    max-width: 200px;
}

.location-text h4 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.location-info-panel {
    position: absolute;
    bottom: 36px;
    right: 50px;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid var(--ds-panel-border);
    border-radius: 8px;
    padding: 1rem;
    min-width: 250px;
    max-width: 300px;
    box-shadow: none;
    opacity: 0;
    transition: all 0.3s ease;
    display: none;
    z-index: 10;
    pointer-events: auto;
}

.location-info-panel:hover {
    border-color: var(--ds-accent-cyan) !important;
    box-shadow: 0 0 20px var(--ds-glow-cyan) !important;
    transform: translateY(-5px) !important;
}

.info-content h4 {
    color: var(--ds-accent-cyan);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.info-content p {
    color: var(--ds-text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}


/* Getting Started */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid var(--ds-panel-border);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--ds-accent-cyan);
    box-shadow: 0 0 20px var(--ds-glow-cyan);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--ds-accent-cyan);
    color: var(--ds-dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
}

.step-item h4 {
    color: var(--ds-accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.step-item p {
    color: var(--ds-text-secondary);
    line-height: 1.6;
}

.getting-started-actions {
    text-align: center;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Server Info Page Styles */
.connection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.connection-item {
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid var(--ds-panel-border);
    border-radius: 8px;
}

.connection-label {
    font-size: 0.9rem;
    color: var(--ds-text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.connection-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ds-text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ip-address {
    font-family: 'DeadSpace', monospace;
    color: var(--ds-accent-cyan);
    text-shadow: 0 0 5px var(--ds-glow-cyan);
}

.copy-btn {
    background: var(--ds-accent-cyan);
    color: var(--ds-dark-bg);
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-family: 'Orbitron', 'DeadSpace', monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--ds-accent-orange);
    transform: scale(1.05);
}

/* Content Pack Styles */
.content-pack-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.pack-details h4 {
    color: var(--ds-accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.pack-details p {
    color: var(--ds-text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.pack-features {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px var(--ds-glow-cyan));
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-text h5 {
    color: var(--ds-accent-cyan);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.feature-text p {
    color: var(--ds-text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

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

/* Requirements Styles */
.requirements-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.requirements-section h4 {
    color: var(--ds-accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.requirements-section ul {
    list-style: none;
    padding: 0;
}

.requirements-section li {
    padding: 0.5rem 0;
    color: var(--ds-text-secondary);
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
}

.requirements-section li:before {
    content: '✓';
    color: var(--ds-accent-green);
    margin-right: 0.5rem;
    font-weight: 900;
}

/* Rules Content */
.rules-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.rule-category h4 {
    color: var(--ds-accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.rule-category ul {
    list-style: none;
    padding: 0;
}

.rule-category li {
    padding: 0.5rem 0;
    color: var(--ds-text-secondary);
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
}

.rule-category li:before {
    content: '⚠';
    color: var(--ds-accent-orange);
    margin-right: 0.5rem;
}

/* Connect Content */
.connect-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.connect-instructions h4 {
    color: var(--ds-accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.connect-instructions ol {
    color: var(--ds-text-secondary);
    line-height: 1.8;
}

.connect-instructions li {
    margin-bottom: 0.5rem;
}

.ip-highlight {
    color: var(--ds-accent-cyan);
    font-family: 'DeadSpace', monospace;
    font-weight: 700;
    text-shadow: 0 0 5px var(--ds-glow-cyan);
}

.connect-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Server Status Detailed */
.status-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.status-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ds-accent-green);
    box-shadow: 0 0 10px var(--ds-accent-green);
    animation: pulse 2s infinite;
}

.status-indicator.online span {
    color: var(--ds-accent-green);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.status-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
}

.status-label {
    color: var(--ds-text-muted);
}

.status-value {
    color: var(--ds-text-primary);
    font-weight: 700;
}

.status-players h4 {
    color: var(--ds-accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.players-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.player-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background: rgba(42, 42, 42, 0.3);
    border-radius: 4px;
}

.player-name {
    color: var(--ds-text-primary);
    font-weight: 700;
}

.player-role {
    color: var(--ds-text-muted);
    font-size: 0.9rem;
}

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

/* Branches Page Styles */
.branch-section {
    margin-bottom: 3rem;
}

.branch-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.3);
    border: 1px solid var(--ds-panel-border);
    border-radius: 8px;
}

.branch-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 15px var(--ds-glow-cyan));
}

.branch-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.branch-info h4 {
    color: var(--ds-accent-cyan);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.branch-info p {
    color: var(--ds-text-secondary);
    line-height: 1.6;
}

.branch-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.roles-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.role-item {
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid var(--ds-panel-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.role-item:hover {
    border-color: var(--ds-accent-cyan);
    box-shadow: 0 0 20px var(--ds-glow-cyan);
    transform: translateY(-5px);
}

.branch-roles h5 {
    margin-top: -1rem !important;
}

.role-item h5 {
    color: var(--ds-accent-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.role-item p {
    color: var(--ds-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.role-requirements {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.requirement {
    background: var(--ds-accent-orange);
    color: var(--ds-dark-bg);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.branch-equipment h5 {
    color: var(--ds-accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.branch-equipment ul {
    list-style: none;
    padding: 0;
}

.branch-equipment li {
    padding: 0.5rem 0;
    color: var(--ds-text-secondary);
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
}

.branch-equipment li:before {
    content: '▶';
    color: var(--ds-accent-cyan);
    margin-right: 0.5rem;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--ds-panel-border);
}

.comparison-table th {
    background: var(--ds-accent-cyan);
    color: var(--ds-dark-bg);
    font-weight: 700;
    letter-spacing: 1px;
}

.comparison-table td {
    color: var(--ds-text-primary);
}

.comparison-table tr:hover {
    background: rgba(0, 255, 255, 0.1);
}

/* How to Choose */
.choose-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.choose-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.choose-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Guides Page Styles */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid var(--ds-panel-border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--ds-text-primary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-item:hover,
.category-item.active {
    border-color: var(--ds-accent-cyan);
    box-shadow: 0 0 20px var(--ds-glow-cyan);
    transform: translateY(-5px);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--ds-glow-cyan));
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-item h4 {
    color: var(--ds-accent-cyan);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    letter-spacing: 1px;
    text-align: center;
}

.category-item p {
    color: var(--ds-text-secondary);
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.4;
}

/* Guide Articles */
.guide-articles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guide-article {
    background: rgba(42, 42, 42, 0.3);
    border: 1px solid var(--ds-panel-border);
    border-radius: 8px;
    padding: 2rem;
}

.guide-article h4 {
    color: var(--ds-accent-cyan);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.article-content h5 {
    color: var(--ds-accent-orange);
    margin: 1.5rem 0 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.article-content p {
    color: var(--ds-text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
    color: var(--ds-text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content strong {
    color: var(--ds-accent-cyan);
}

/* Crew Page Styles */
.crew-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.crew-member {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid var(--ds-panel-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.crew-member:hover {
    border-color: var(--ds-accent-cyan);
    box-shadow: 0 0 15px var(--ds-glow-cyan);
    transform: translateY(-2px);
}

.member-avatar {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--ds-accent-cyan);
    filter: drop-shadow(0 0 10px var(--ds-glow-cyan));
}

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

.member-info {
    flex: 1;
}

.member-info h4 {
    color: var(--ds-accent-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.member-role {
    color: var(--ds-accent-orange);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.member-status {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-status.online {
    color: var(--ds-accent-green);
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.member-status.offline {
    color: var(--ds-text-muted);
}

.member-description {
    color: var(--ds-text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Join Crew */
.join-content {
    text-align: center;
}

.join-description {
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-description p {
    color: var(--ds-text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.join-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Link Styles */
.footer-section a {
    color: var(--ds-accent-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--ds-accent-orange);
    text-shadow: 0 0 8px var(--ds-glow-orange);
}

/* Duplicate media queries removed - styles merged into main responsive sections above */
