 /* Reset & Base Styles */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        :root {
            --orange-400: #fb923c;
            --orange-500: #f97316;
            --orange-600: #ea580c;
            --red-600: #dc2626;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
            --blue-400: #60a5fa;
            --green-400: #4ade80;
            --yellow-400: #facc15;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(to bottom, var(--gray-900), var(--gray-800), var(--gray-900));
            color: var(--gray-300);
            line-height: 1.6;
            min-height: 100vh;
        }
        
        a {
            color: var(--orange-400);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        a:hover {
            color: var(--orange-500);
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header & Navigation */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(17, 24, 39, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(249, 115, 22, 0.2);
        }
        
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            color: white;
            text-decoration: none;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--orange-500), var(--red-600));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-title {
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .logo-subtitle {
            font-size: 0.75rem;
            color: var(--orange-400);
            margin-top: -4px;
        }
        
        nav {
            display: none;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 8px;
        }
        
        nav a {
            display: block;
            padding: 8px 12px;
            color: var(--gray-300);
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 6px;
            transition: all 0.3s;
        }
        
        nav a:hover {
            color: var(--orange-400);
            background: rgba(249, 115, 22, 0.1);
        }
        
        .mobile-menu-btn {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }
        
        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--gray-300);
            transition: 0.3s;
        }
        
        .mobile-nav {
            display: none;
            padding: 1rem 0;
            border-top: 1px solid var(--gray-700);
        }
        
        .mobile-nav.active {
            display: block;
        }
        
        .mobile-nav a {
            display: block;
            padding: 10px 0;
            color: var(--gray-300);
        }
        
        @media (min-width: 1024px) {
            nav {
                display: block;
            }
            .mobile-menu-btn {
                display: none;
            }
        }
        
        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            font-weight: 600;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            font-size: 1rem;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--orange-500), var(--red-600));
            color: white;
            box-shadow: 0 4px 20px rgba(249, 115, 22, 0.25);
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, var(--orange-600), #b91c1c);
            color: white;
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background: var(--gray-700);
            color: white;
        }
        
        .btn-secondary:hover {
            background: var(--gray-600);
            color: white;
        }
        
        .btn-lg {
            padding: 16px 32px;
            font-size: 1.1rem;
        }
        
        /* Hero Section */
        #hero {
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        #hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0L0 0 0 10' fill='none' stroke='rgba(255,165,0,0.1)' stroke-width='1'/%3E%3C/svg%3E");
            opacity: 0.4;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        h1 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        h1 span {
            color: var(--orange-500);
        }
        
        .hero-desc {
            font-size: 1.25rem;
            color: var(--gray-300);
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }
        
        @media (min-width: 768px) {
            h1 {
                font-size: 3.5rem;
            }
        }
        
        /* Section Styles */
        section {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 2rem;
            color: white;
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .section-desc {
            text-align: center;
            color: var(--gray-400);
            max-width: 600px;
            margin: 0 auto 3rem;
        }
        
        .section-dark {
            background: rgba(31, 41, 55, 0.5);
        }
        
        /* Cards */
        .card {
            background: var(--gray-800);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid var(--gray-700);
            transition: all 0.3s;
        }
        
        .card:hover {
            border-color: rgba(249, 115, 22, 0.5);
        }
        
        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .card-title {
            font-size: 1.25rem;
            color: white;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        .card-desc {
            color: var(--gray-400);
            font-size: 0.95rem;
        }
        
        /* Grid Layouts */
        .grid-2 {
            display: grid;
            gap: 1.5rem;
        }
        
        .grid-3 {
            display: grid;
            gap: 1.5rem;
        }
        
        .grid-4 {
            display: grid;
            gap: 1rem;
        }
        
        @media (min-width: 640px) {
            .grid-2 { grid-template-columns: repeat(2, 1fr); }
            .grid-4 { grid-template-columns: repeat(2, 1fr); }
        }
        
        @media (min-width: 768px) {
            .grid-3 { grid-template-columns: repeat(2, 1fr); }
            .grid-4 { grid-template-columns: repeat(4, 1fr); }
        }
        
        @media (min-width: 1024px) {
            .grid-3 { grid-template-columns: repeat(3, 1fr); }
        }
        
        /* Features Section */
        #features .grid-3 {
            margin-top: 3rem;
        }
        
        /* Download Section */
        .download-main {
            background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid rgba(249, 115, 22, 0.3);
            margin-bottom: 3rem;
        }
        
        .download-main-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            align-items: center;
            text-align: center;
        }
        
        @media (min-width: 768px) {
            .download-main-content {
                flex-direction: row;
                text-align: left;
            }
        }
        
        .download-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--orange-500), var(--red-600));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            color: white;
            flex-shrink: 0;
        }
        
        .download-info {
            flex: 1;
        }
        
        .download-info h3 {
            font-size: 1.5rem;
            color: white;
            margin-bottom: 0.5rem;
        }
        
        .download-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
            font-size: 0.9rem;
            color: var(--gray-400);
        }
        
        .download-options {
            display: grid;
            gap: 1rem;
        }
        
        @media (min-width: 768px) {
            .download-options {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .download-option {
            background: var(--gray-800);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid var(--gray-700);
            transition: all 0.3s;
            display: block;
            text-decoration: none;
        }
        
        .download-option:hover {
            border-color: var(--orange-500);
            transform: translateY(-2px);
        }
        
        .download-option h4 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        
        .download-option p {
            color: var(--gray-400);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .download-option-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--gray-500);
            font-size: 0.85rem;
        }
        
        .download-option-arrow {
            color: var(--orange-400);
            font-size: 1.25rem;
        }
        
        .tag {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }
        
        .tag-orange {
            background: rgba(249, 115, 22, 0.2);
            color: var(--orange-400);
        }
        
        .tag-blue {
            background: rgba(96, 165, 250, 0.2);
            color: var(--blue-400);
        }
        
        .tag-green {
            background: rgba(74, 222, 128, 0.2);
            color: var(--green-400);
        }
        
        /* Maps Section */
        .map-categories {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        @media (min-width: 768px) {
            .map-categories {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .map-category {
            background: var(--gray-800);
            border-radius: 12px;
            padding: 1rem;
            border: 1px solid var(--gray-700);
            text-align: center;
            transition: all 0.3s;
        }
        
        .map-category:hover {
            border-color: var(--orange-500);
        }
        
        .map-category-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        
        .map-category h4 {
            color: white;
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
        }
        
        .map-category p {
            color: var(--gray-500);
            font-size: 0.8rem;
        }
        
        .map-list {
            display: grid;
            gap: 1rem;
        }
        
        @media (min-width: 768px) {
            .map-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .map-item {
            background: var(--gray-800);
            border-radius: 12px;
            padding: 1.25rem;
            border: 1px solid var(--gray-700);
        }
        
        .map-item-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.5rem;
        }
        
        .map-item h4 {
            color: white;
            font-size: 1.1rem;
        }
        
        .map-item p {
            color: var(--gray-400);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .map-item-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .map-downloads {
            color: var(--gray-500);
            font-size: 0.85rem;
        }
        
        /* Tutorials Section */
        .tutorial-cards {
            display: grid;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        
        @media (min-width: 768px) {
            .tutorial-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .tutorial-card {
            background: var(--gray-800);
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid var(--gray-700);
            transition: all 0.3s;
            text-decoration: none;
            display: block;
        }
        
        .tutorial-card:hover {
            border-color: var(--orange-500);
            transform: translateY(-4px);
        }
        
        .tutorial-card-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .tutorial-card h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .tutorial-card p {
            color: var(--gray-400);
        }
        
        /* Quick Tips */
        .tips-grid {
            display: grid;
            gap: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .tips-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .tip-item {
            border-left: 4px solid var(--orange-500);
            padding-left: 1rem;
        }
        
        .tip-item h4 {
            color: white;
            margin-bottom: 0.25rem;
        }
        
        .tip-item p {
            color: var(--gray-400);
            font-size: 0.9rem;
        }
        
        /* Servers Section */
        .server-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        @media (min-width: 768px) {
            .server-stats {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .server-stat {
            background: var(--gray-800);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid var(--gray-700);
            text-align: center;
        }
        
        .server-stat-value {
            font-size: 1.75rem;
            font-weight: bold;
            color: var(--orange-400);
            margin-bottom: 0.25rem;
        }
        
        .server-stat-label {
            color: var(--gray-400);
            font-size: 0.9rem;
        }
        
        .server-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--gray-800);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 3rem;
        }
        
        .server-table th {
            background: var(--gray-900);
            color: var(--gray-400);
            text-align: left;
            padding: 1rem;
            font-weight: 500;
            font-size: 0.9rem;
        }
        
        .server-table td {
            padding: 1rem;
            border-top: 1px solid var(--gray-700);
        }
        
        .server-name {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .server-name span:first-child {
            font-size: 1.25rem;
        }
        
        .server-name span:last-child {
            color: white;
            font-weight: 500;
        }
        
        .ping-good {
            color: var(--green-400);
        }
        
        .ping-medium {
            color: var(--yellow-400);
        }
        
        .btn-sm {
            padding: 6px 12px;
            font-size: 0.85rem;
        }
        
        /* Mods Grid */
        .mods-grid {
            display: grid;
            gap: 1rem;
        }
        
        @media (min-width: 768px) {
            .mods-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .mod-item {
            background: var(--gray-800);
            border-radius: 12px;
            padding: 1.25rem;
            border: 1px solid var(--gray-700);
        }
        
        .mod-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.5rem;
        }
        
        .mod-header h4 {
            color: white;
            font-size: 1.1rem;
        }
        
        .mod-item p {
            color: var(--gray-400);
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .faq-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }
        
        .faq-cat-btn {
            padding: 8px 16px;
            background: var(--gray-800);
            border: 1px solid var(--gray-700);
            border-radius: 8px;
            color: var(--gray-300);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .faq-cat-btn:hover, .faq-cat-btn.active {
            border-color: var(--orange-500);
            color: var(--orange-400);
        }
        
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }
        
        .faq-item {
            background: var(--gray-800);
            border-radius: 12px;
            border: 1px solid var(--gray-700);
            overflow: hidden;
        }
        
        .faq-question {
            width: 100%;
            padding: 1rem 1.5rem;
            background: none;
            border: none;
            text-align: left;
            color: white;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        
        .faq-question:hover {
            color: var(--orange-400);
        }
        
        .faq-arrow {
            color: var(--orange-400);
            transition: transform 0.3s;
            flex-shrink: 0;
        }
        
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            display: none;
            padding: 0 1.5rem 1rem;
            color: var(--gray-400);
        }
        
        .faq-item.open .faq-answer {
            display: block;
        }
        
        /* Articles Section */
        .articles-grid {
            display: grid;
            gap: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .articles-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .article-item {
            background: var(--gray-800);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid var(--gray-700);
            transition: all 0.3s;
        }
        
        .article-item:hover {
            border-color: rgba(249, 115, 22, 0.5);
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }
        
        .article-meta span {
            font-size: 0.8rem;
            color: var(--gray-500);
        }
        
        .article-item h3 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .article-item h3:hover {
            color: var(--orange-400);
            cursor: pointer;
        }
        
        .article-item p {
            color: var(--gray-400);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
        
        .article-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: var(--gray-500);
        }
        
        .article-link {
            font-weight: 500;
        }
        
        /* History Timeline */
        .timeline {
            position: relative;
            padding-left: 2rem;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: rgba(249, 115, 22, 0.3);
        }
        
        .timeline-item {
            position: relative;
            padding-bottom: 2rem;
        }
        
        .timeline-item:last-child {
            padding-bottom: 0;
        }
        
        .timeline-dot {
            position: absolute;
            left: -24px;
            top: 0;
            width: 24px;
            height: 24px;
            background: var(--orange-500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .timeline-dot::after {
            content: '';
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
        }
        
        .timeline-content {
            background: var(--gray-800);
            border-radius: 12px;
            padding: 1.25rem;
            border: 1px solid var(--gray-700);
        }
        
        .timeline-year {
            color: var(--orange-400);
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .timeline-title {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .timeline-desc {
            color: var(--gray-400);
            font-size: 0.95rem;
        }
        
        /* System Requirements */
        .requirements-grid {
            display: grid;
            gap: 2rem;
        }
        
        @media (min-width: 768px) {
            .requirements-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .requirements-card {
            background: var(--gray-800);
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid var(--gray-700);
        }
        
        .requirements-card.recommended {
            border-color: rgba(74, 222, 128, 0.3);
        }
        
        .requirements-card h3 {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
        }
        
        .requirements-card h3 span:first-child {
            font-size: 1.5rem;
        }
        
        .requirements-list {
            list-style: none;
        }
        
        .requirements-list li {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--gray-700);
        }
        
        .requirements-list li:last-child {
            border-bottom: none;
        }
        
        .requirements-list .label {
            color: var(--gray-400);
        }
        
        .requirements-list .value {
            color: white;
            font-weight: 500;
        }
        
        .requirements-card.recommended .requirements-list .value {
            color: var(--green-400);
        }
        
        /* Skins Section */
        .skins-categories {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        @media (min-width: 640px) {
            .skins-categories {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (min-width: 768px) {
            .skins-categories {
                grid-template-columns: repeat(5, 1fr);
            }
        }
        
        .skin-category {
            background: var(--gray-800);
            border-radius: 12px;
            padding: 1rem;
            border: 1px solid var(--gray-700);
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .skin-category:hover {
            border-color: rgba(249, 115, 22, 0.5);
        }
        
        .skin-category-icon {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .skin-category h4 {
            color: white;
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
        }
        
        .skin-category p {
            color: var(--gray-500);
            font-size: 0.8rem;
        }
        
        .skins-grid {
            display: grid;
            gap: 1rem;
        }
        
        @media (min-width: 640px) {
            .skins-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .skins-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .skin-item {
            background: var(--gray-800);
            border-radius: 12px;
            padding: 1.25rem;
            border: 1px solid var(--gray-700);
        }
        
        .skin-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.75rem;
        }
        
        .skin-header h4 {
            color: white;
            font-size: 1rem;
        }
        
        .skin-rating {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            margin-bottom: 1rem;
        }
        
        .skin-rating .stars {
            color: var(--yellow-400);
        }
        
        .skin-rating span:last-child {
            color: var(--gray-400);
            font-size: 0.85rem;
        }
        
        .skin-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .skin-downloads {
            color: var(--gray-500);
            font-size: 0.85rem;
        }
        
        /* About Section */
        .about-content {
            display: grid;
            gap: 2rem;
        }
        
        @media (min-width: 768px) {
            .about-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .about-text p {
            margin-bottom: 1rem;
        }
        
        .game-stats {
            background: var(--gray-900);
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid var(--gray-700);
        }
        
        .game-stats h3 {
            color: white;
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
        }
        
        .stat-row {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--gray-700);
        }
        
        .stat-row:last-child {
            border-bottom: none;
        }
        
        .stat-row .label {
            color: var(--gray-400);
        }
        
        .stat-row .value {
            color: white;
            font-weight: 500;
        }
        
        /* Installation Guide */
        .install-steps {
            background: var(--gray-800);
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid var(--gray-700);
        }
        
        .install-steps h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .step-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .step-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        
        .step-number {
            width: 32px;
            height: 32px;
            background: var(--orange-500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .step-text {
            color: var(--gray-300);
            padding-top: 4px;
        }
        
        /* Console Commands */
        .commands-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--gray-800);
            border-radius: 12px;
            overflow: hidden;
        }
        
        .commands-table th {
            background: var(--gray-900);
            color: var(--gray-400);
            text-align: left;
            padding: 1rem;
            font-weight: 500;
        }
        
        .commands-table td {
            padding: 0.75rem 1rem;
            border-top: 1px solid var(--gray-700);
        }
        
        .commands-table code {
            background: var(--gray-900);
            color: var(--orange-400);
            padding: 4px 8px;
            border-radius: 4px;
            font-family: 'Consolas', 'Monaco', monospace;
            font-size: 0.9rem;
        }
        
        /* Config Section */
        .config-block {
            background: var(--gray-900);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1rem;
        }
        
        .config-block h4 {
            color: var(--orange-400);
            font-size: 0.95rem;
            margin-bottom: 0.75rem;
        }
        
        .config-block pre {
            color: var(--gray-300);
            font-family: 'Consolas', 'Monaco', monospace;
            font-size: 0.85rem;
            overflow-x: auto;
            line-height: 1.6;
        }
        
        /* Contact Section */
        .contact-grid {
            display: grid;
            gap: 2rem;
        }
        
        @media (min-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .contact-form {
            background: var(--gray-800);
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid var(--gray-700);
        }
        
        .contact-form h3 {
            color: white;
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1rem;
        }
        
        .form-group label {
            display: block;
            color: var(--gray-300);
            margin-bottom: 0.5rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background: var(--gray-900);
            border: 1px solid var(--gray-700);
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--orange-500);
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .contact-info-card {
            background: var(--gray-800);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid var(--gray-700);
        }
        
        .contact-info-card h4 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }
        
        .contact-info-card p {
            color: var(--gray-400);
            font-size: 0.95rem;
        }
        
        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 80px 0;
        }
        
        .cta-section h2 {
            color: white;
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .cta-section p {
            color: var(--gray-300);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 2rem;
        }
        
        /* Footer */
        footer {
            background: var(--gray-900);
            border-top: 1px solid var(--gray-800);
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        
        .footer-grid {
            display: grid;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .footer-col h4 {
            color: white;
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        
        .footer-col p {
            color: var(--gray-400);
            font-size: 0.9rem;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col li {
            margin-bottom: 0.5rem;
        }
        
        .footer-col a {
            color: var(--gray-400);
            font-size: 0.9rem;
        }
        
        .footer-col a:hover {
            color: var(--orange-400);
        }
        
        .footer-bottom {
            border-top: 1px solid var(--gray-800);
            padding-top: 2rem;
            text-align: center;
            color: var(--gray-500);
            font-size: 0.85rem;
        }
        
        .footer-bottom p {
            margin-bottom: 0.5rem;
        }
        
        /* Utility Classes */
        .text-center { text-align: center; }
        .text-white { color: white; }
        .text-orange { color: var(--orange-400); }
        .mb-2 { margin-bottom: 0.5rem; }
        .mb-4 { margin-bottom: 1rem; }
        .mb-6 { margin-bottom: 1.5rem; }
        .mb-8 { margin-bottom: 2rem; }
        .mt-4 { margin-top: 1rem; }
        .mt-8 { margin-top: 2rem; }
        
        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 48px;
            height: 48px;
            background: var(--orange-500);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 99;
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            background: var(--orange-600);
            transform: translateY(-3px);
        }
        
        /* Breadcrumb */
        .breadcrumb {
            font-size: 0.9rem;
            margin-bottom: 2rem;
            color: var(--gray-400);
        }
        
        .breadcrumb a {
            color: var(--gray-400);
        }
        
        .breadcrumb a:hover {
            color: var(--orange-400);
        }
        
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        
        /* Warning/Info boxes */
        .info-box {
            padding: 1rem 1.5rem;
            border-radius: 8px;
            margin-top: 1.5rem;
        }
        
        .info-box.warning {
            background: rgba(250, 204, 21, 0.1);
            border: 1px solid rgba(250, 204, 21, 0.3);
            color: var(--yellow-400);
        }
        
        .info-box.info {
            background: rgba(96, 165, 250, 0.1);
            border: 1px solid rgba(96, 165, 250, 0.3);
            color: var(--blue-400);
        }
        
        /* Responsive table wrapper */
        .table-wrapper {
            overflow-x: auto;
            border-radius: 12px;
        }
