/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(180deg, #1a0000 0%, #000000 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ff6a00;
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-logo:hover {
    color: #ff8533;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6a00;
    background: rgba(255, 106, 0, 0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    color: #ff6a00;
    background: rgba(255, 106, 0, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger:hover span {
    background: #ff6a00;
}

/* Sidebar Styles (now slides in from the left) */
.sidebar {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
}
.sidebar.open {
    left: 0;
}

/* Quick Actions Sidebar */
.quick-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95); /* Match sidebar */
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2050;
    transition: right 0.3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    box-shadow: -2px 0 24px rgba(255, 106, 0, 0.08);

    /* Match sidebar padding and content style */
    border-radius: 0 16px 16px 0;
}

.quick-sidebar.open {
    right: 0;
}

.quick-sidebar .sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.quick-sidebar .sidebar-content {
    padding: 1.5rem;
}

.quick-sidebar .sidebar-widget {
    margin-bottom: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.quick-sidebar .sidebar-widget h4 {
    color: #ff6a00;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.quick-sidebar .quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-sidebar .sidebar-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-sidebar .sidebar-btn:hover {
    background: rgba(255, 106, 0, 0.1);
    border-color: rgba(255, 106, 0, 0.3);
    color: #ff6a00;
    transform: translateX(5px);
}

.quick-sidebar .sidebar-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.quick-sidebar .sidebar-close:hover {
    color: #ff6a00;
    background: rgba(255,106,0,0.1);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6a00;
    font-size: 1.5rem;
    font-weight: 700;
}

.sidebar-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    color: #ff6a00;
    background: rgba(255, 106, 0, 0.1);
}

.sidebar-content {
    padding: 1.5rem;
}

.sidebar-widget {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.sidebar-widget h4 {
    color: #ff6a00;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.server-status-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.status-dot {
    font-size: 0.8rem;
}

.status-dot.online {
    color: #10b981;
    animation: pulse 2s infinite;
}

.status-dot.offline {
    color: #ef4444;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.copy-btn-small {
    background: rgba(255, 106, 0, 0.2);
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 4px;
    color: #ff6a00;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: auto;
}

.copy-btn-small:hover {
    background: rgba(255, 106, 0, 0.3);
    transform: scale(1.05);
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar-btn:hover {
    background: rgba(255, 106, 0, 0.1);
    border-color: rgba(255, 106, 0, 0.3);
    color: #ff6a00;
    transform: translateX(5px);
}

.live-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
}

.stat-value {
    color: #ff6a00;
    font-weight: 700;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 0;
    background: linear-gradient(135deg, #1a0000 0%, #000000 50%, #0a0000 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 64, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 106, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.logo-container {
    margin-bottom: 2rem;
}

.hero-logo {
    font-size: 4rem;
    color: #ff6a00;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px #ff6a00, 0 0 30px #ff6a00, 0 0 40px #ff6a00; }
    to { text-shadow: 0 0 30px #ff6a00, 0 0 40px #ff6a00, 0 0 50px #ff6a00; }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ff8533;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 600;
}

.server-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.server-ip-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.server-ip-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.ip-label {
    color: #cccccc;
    font-weight: 600;
}

.ip-address {
    color: #ff6a00;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.ip-address:hover {
    background: rgba(255, 106, 0, 0.1);
}

.copy-btn {
    background: linear-gradient(145deg, #ff4000, #ff6a00);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 64, 0, 0.4);
}

.server-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.fist-button {
    background: linear-gradient(145deg, #ff4000, #ff6a00);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    padding: 1rem 2rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fist-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 64, 0, 0.4);
}

.fist-button.secondary {
    background: linear-gradient(145deg, #333333, #555555);
}

.fist-button.secondary:hover {
    box-shadow: 0 10px 25px rgba(85, 85, 85, 0.4);
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6a00;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.fist-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(12px);
    margin: 2rem 0;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0000 0%, #1a0000 100%);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #1a0000 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 106, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: #ff6a00;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 0, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    color: #ff6a00;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.stat-label {
    color: #cccccc;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Getting Started Section */
.getting-started-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #0a0000 100%);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 0, 0.3);
}

.tip-icon {
    font-size: 2rem;
    color: #ff6a00;
    margin-bottom: 1rem;
}

.tip-title {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tip-description {
    color: #cccccc;
    line-height: 1.6;
}

.tip-command {
    background: rgba(255, 106, 0, 0.2);
    color: #ff6a00;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

/* Server Rules Section */
.server-rules-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.rule-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.rule-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 0, 0.3);
}

.rule-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rule-icon {
    font-size: 1.5rem;
    color: #ff6a00;
}

.rule-title {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 700;
}

.rule-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.rule-consequence {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    color: #ef4444;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Quick Actions Floating Button */
.quick-actions-fab {
    position: fixed;
    bottom: 2.5rem;
    left: 2.5rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, #ff4000, #ff6a00);
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(255, 106, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 2100;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.quick-actions-fab:hover,
.quick-actions-fab:focus {
    background: linear-gradient(145deg, #ff6a00, #ff8533);
    box-shadow: 0 10px 32px rgba(255, 106, 0, 0.35);
    outline: none;
    transform: translateY(-3px) scale(1.08);
}

/* Quick Actions Sidebar (right) already above */

/* Overlay covers both sidebars */
.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Responsive: Sidebar & Quick Sidebar & FAB */
@media (max-width: 1024px) {
    .sidebar,
    .quick-sidebar {
        width: 90vw;
        min-width: 0;
        max-width: 400px;
    }
    .quick-actions-fab {
        left: 1rem;
        bottom: 1rem;
    }
}
@media (max-width: 600px) {
    .sidebar {
        width: 100vw;
        left: -100vw;
        max-width: none;
        min-width: 0;
    }
    .sidebar.open {
        left: 0;
    }
    .quick-sidebar {
        width: 100vw;
        right: -100vw;
        max-width: none;
        min-width: 0;
    }
    .quick-sidebar.open {
        right: 0;
    }
    .quick-actions-fab {
        left: 0.5rem;
        bottom: 0.5rem;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}

/* Accessibility: Hide FAB when Quick Sidebar is open */
.quick-sidebar.open ~ .quick-actions-fab {
    display: none !important;
}

/* Hide FAB on print */
@media print {
    .quick-actions-fab,
    .quick-sidebar {
        display: none !important;
    }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #1a0000 100%);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(255, 106, 0, 0.04);
}

.faq-item h3 {
    color: #ff6a00;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.faq-item p {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Join Section */
.join-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
}

.join-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 2.5rem 0;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    min-width: 110px;
    box-shadow: 0 2px 12px rgba(255, 106, 0, 0.03);
    transition: transform 0.2s;
}

.step-icon {
    font-size: 2rem;
    color: #ff6a00;
    margin-bottom: 0.5rem;
}

.step span {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.step-arrow {
    font-size: 1.5rem;
    color: #ff6a00;
    margin: 0 0.5rem;
    opacity: 0.7;
}

.server-ip-display-section {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.server-ip-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1rem 2rem;
}

.ip-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.version-info {
    text-align: center;
    color: #cccccc;
    margin-top: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive for Join & FAQ */
@media (max-width: 900px) {
    .join-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
}

@media (max-width: 600px) {
    .faq-item,
    .server-ip-container {
        padding: 1rem;
    }
    .step {
        padding: 0.75rem 1rem;
        min-width: 80px;
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 0, 0.3);
}

.contact-icon {
    font-size: 3rem;
    color: #ff6a00;
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-item p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6a00;
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ff6a00;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6a00;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 106, 0, 0.2);
    border-color: rgba(255, 106, 0, 0.3);
    color: #ff6a00;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #ff6a00;
}

.server-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.server-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ff6a00;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #ff4000, #ff6a00);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 64, 0, 0.4);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-icon {
    font-size: 4rem;
    color: #ff6a00;
    margin-bottom: 1rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

/* Notification System */
.notification-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notification {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    min-width: 300px;
    max-width: 400px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-weight: 600;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success {
    border-left: 4px solid #10b981;
}

.notification.error {
    border-left: 4px solid #ef4444;
}

.notification.warning {
    border-left: 4px solid #f59e0b;
}

.notification.info {
    border-left: 4px solid #3b82f6;
}

.notification i {
    font-size: 1.2rem;
}

.notification.success i {
    color: #10b981;
}

.notification.error i {
    color: #ef4444;
}

.notification.warning i {
    color: #f59e0b;
}

.notification.info i {
    color: #3b82f6;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .sidebar-toggle {
        display: block;
    }
    
    .hamburger {
        display: flex;
    }
    
    .sidebar {
        width: 350px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .sidebar {
        width: 100%;
        right: -100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .fist-section {
        padding: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .fist-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .join-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .notification-container {
        top: 1rem;
        right: 1rem;
        left: 1rem;
    }
    
    .notification {
        min-width: auto;
        max-width: none;
    }
    
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .server-info-card {
        padding: 1.5rem;
    }
    
    .fist-section {
        padding: 1.5rem;
    }
    
    .feature-card,
    .stat-card,
    .contact-item {
        padding: 1.5rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .fist-section,
    .feature-card,
    .stat-card,
    .contact-item,
    .sidebar-widget {
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .navbar {
        background: rgba(0, 0, 0, 0.9);
    }
    
    .sidebar {
        background: rgba(0, 0, 0, 0.98);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .loading-icon {
        animation: none;
    }
    
    .hero-logo {
        animation: none;
    }
    
    .status-dot.online {
        animation: none;
    }
}

/* Print styles */
@media print {
    .navbar,
    .sidebar,
    .sidebar-overlay,
    .scroll-to-top,
    .loading-overlay,
    .notification-container {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .section-title {
        color: black !important;
    }
    
    .fist-section,
    .feature-card,
    .stat-card {
        background: white !important;
        border: 1px solid #ccc !important;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid #ff6a00;
    outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(145deg, #ff4000, #ff6a00);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(145deg, #ff6a00, #ff8533);
}

/* Selection styles */
::selection {
    background: rgba(255, 106, 0, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(255, 106, 0, 0.3);
    color: #ffffff;
}
