
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Animated background particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #00d4ff;
            border-radius: 50%;
            animation: float 6s infinite linear;
            opacity: 0.7;
        }

        @keyframes float {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000;
            padding: 1rem 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, #00d4ff, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #00d4ff;
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #00d4ff, #7c3aed);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #00d4ff, #7c3aed, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(0, 212, 255, 0.5); }
            to { text-shadow: 0 0 30px rgba(124, 58, 237, 0.8); }
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(45deg, #00d4ff, #7c3aed);
            color: white;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        /* Servers Section - New styling */
        .servers {
            padding: 5rem 0;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #00d4ff, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .server-list-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem; /* Increased gap between server cards */
            margin-bottom: 4rem;
        }

        .server-card-main {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem; /* Increased padding */
            transition: all 0.3s ease;
            width: calc(50% - 1.5rem); /* Two cards per row with gap */
            max-width: 550px; /* Max width for individual cards */
            display: flex;
            flex-direction: column;
            align-items: center; /* Center content horizontally */
            text-align: center;
        }

        .server-card-main:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
            border-color: rgba(0, 212, 255, 0.3);
        }

        .server-card-main h3 {
            font-size: 2rem; /* Larger heading */
            margin-bottom: 1.5rem;
            color: #00d4ff;
            font-weight: 700;
        }

        .server-card-main p {
            font-size: 1.1rem;
            opacity: 0.8;
            margin-top: 1rem;
            margin-bottom: 1.5rem; /* Added margin for space before specs */
        }

        .server-ip-display {
            background: rgba(0, 0, 0, 0.3);
            padding: 1.5rem; /* Increased padding */
            border-radius: 15px; /* More rounded */
            font-family: 'Courier New', monospace;
            font-size: 1.3rem; /* Larger font size */
            text-align: center;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(0, 212, 255, 0.3);
            width: 100%; /* Take full width of parent card */
            cursor: pointer;
            box-shadow: inset 0 0 10px rgba(0, 212, 255, 0.1);
            position: relative; /* For copy success message positioning */
        }

        .server-status {
            display: flex;
            align-items: center;
            gap: 0.7rem; /* Increased gap */
            margin-bottom: 1rem;
            justify-content: center;
            font-size: 1.1rem; /* Larger status text */
        }

        .status-indicator {
            font-size: 1.4rem; /* Larger indicator */
        }

        .status-text {
            font-weight: 600;
        }

        .server-details {
            display: flex;
            justify-content: space-around; /* Space out details */
            margin: 1rem 0;
            font-size: 1rem;
            opacity: 0.9;
        }

        .status-online {
            color: #00ff88;
        }

        .status-offline {
            color: #ff4444;
        }

        .status-checking {
            color: #ffaa00;
        }
        
        /* Specs Info Section */
        .specs-info {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            padding: 1.5rem;
            margin-top: 1rem;
            margin-bottom: 1.5rem; /* Space before button */
            text-align: left; /* Align text left within the specs box */
            width: 100%;
        }

        /* Styles for the clickable specs toggle */
        .specs-toggle {
            font-size: 1.2rem;
            color: #00d4ff;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(0, 212, 255, 0.2);
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }

        .specs-toggle:hover {
            color: #7c3aed;
        }

        .toggle-icon {
            font-size: 1rem;
            transition: transform 0.3s ease;
        }

        .specs-toggle.active .toggle-icon {
            transform: rotate(180deg);
        }

        /* Styles for the toggled content */
        .client-specs-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
            opacity: 0;
        }

        .client-specs-content.active {
            max-height: 300px; /* Adjust based on content height */
            opacity: 1;
        }


        .specs-info ul {
            list-style: none; /* Remove default bullet points */
            padding-left: 0;
            margin-bottom: 0; /* Remove bottom margin to prevent extra space */
        }


        .specs-info ul li {
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            color: #ccc;
        }

        .specs-info ul li strong {
            color: #fff;
        }


        /* Features Section */
        .features {
            padding: 5rem 0;
            background: rgba(0, 0, 0, 0.2);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted min-width for features */
            gap: 2.5rem; /* Increased gap for features */
            margin-top: 2rem; /* Space after subsection title */
            margin-bottom: 3rem; /* Space before next subsection title */
        }
        .features-grid:last-of-type {
            margin-bottom: 0; /* No margin for the very last grid */
        }

        .subsection-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-top: 3rem;
            margin-bottom: 2rem;
            color: #7c3aed; /* A distinct color for sub-sections */
            text-align: center;
        }

        .feature-card {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: scale(1.03); /* Slightly less aggressive scale */
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 10px 20px rgba(0, 212, 255, 0.15);
        }

        .feature-icon {
            font-size: 3.5rem; /* Larger icons */
            margin-bottom: 1rem;
            display: block;
            background: linear-gradient(45deg, #00d4ff, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Social Links */
        .social-section {
            padding: 5rem 0;
            text-align: center;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-link:hover {
            background: rgba(0, 212, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.5);
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .social-links {
                flex-direction: column;
                align-items: center;
            }

            .server-card-main {
                width: 100%; /* Full width on smaller screens */
                max-width: none;
            }
        }
        
        /* Copy animation */
        .copy-success {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 212, 255, 0.9);
            padding: 1rem 2rem;
            border-radius: 10px;
            font-weight: bold;
            z-index: 2000;
            animation: copyPop 2s ease-in-out;
        }
        @keyframes copyPop {
            0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
            20%, 80% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
        }

        /* Global Chat Section */
        .chat-container-integrated {
            background: rgba(30, 30, 40, 0.9); /* Darker background */
            backdrop-filter: blur(15px); /* Modern blur effect */
            border-radius: 15px; /* Rounded corners */
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            color: #eee;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            box-sizing: border-box;
            max-width: 600px; /* Limit width for chat */
            margin: 3rem auto; /* Center it below server cards */
            box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
            position: relative;
        }

        .chat-container-integrated .chat-header {
            font-size: 1.5rem; /* Larger header */
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #4a00e0, #8e2de2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .chat-container-integrated .chat-messages {
            height: 200px; /* Increased height for more messages */
            max-height: 200px;
            overflow-y: auto;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.3);
            font-size: 0.95rem;
            flex-grow: 1;
            line-height: 1.5;
            scroll-behavior: smooth;
        }
        .chat-container-integrated .chat-message {
            margin-bottom: 0.5rem;
            word-wrap: break-word;
        }
        .chat-container-integrated .chat-message span:first-child {
            color: #00d4ff; /* Username color */
        }
        .chat-container-integrated .chat-message span:last-child {
            font-size: 0.75em;
            color: #aaa;
            float: right;
            margin-left: 10px; /* Space between message and timestamp */
        }

        .chat-container-integrated .chat-input-form {
            display: flex;
            gap: 0.5rem;
            align-items: center;
            margin-top: 1rem;
        }

        .chat-container-integrated .chat-input-form input {
            flex-grow: 1;
            padding: 0.7rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.08);
            color: #eee;
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.3s ease;
        }
        .chat-container-integrated .chat-input-form input:focus {
            border-color: #00d4ff;
        }

        .chat-container-integrated .chat-input-form button {
            padding: 0.7rem 1.2rem;
            border: none;
            border-radius: 8px;
            background: linear-gradient(45deg, #4a00e0, #8e2de2);
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(74, 0, 224, 0.3);
        }
        .chat-container-integrated .chat-input-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(74, 0, 224, 0.4);
        }

        /* Style for the "Login to Chat" button */
        .chat-container-integrated .login-button {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            font-size: 1.05rem;
            font-weight: 600;
            background: linear-gradient(45deg, #00d4ff, #7c3aed);
            color: white;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 212, 255, 0.3);
        }
        .chat-container-integrated .login-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 212, 255, 0.4);
        }

        .chat-container-integrated .scroll-to-bottom-btn {
            position: absolute;
            bottom: 75px; /* Adjust based on input form height + padding */
            right: 25px;
            background: rgba(74, 0, 224, 0.8);
            color: white;
            border: none;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: all 0.2s ease;
            z-index: 10;
            display: none; /* Hidden by default */
        }
        .chat-container-integrated .scroll-to-bottom-btn:hover {
            background: #8e2de2;
            transform: translateY(-2px);
        }

        /* New style for download buttons */
        .btn-tertiary {
            margin-top: 1.5rem; /* Space from the paragraph above */
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            background: linear-gradient(45deg, #FF6B6B, #FFB640); /* A warm, inviting gradient */
            color: white;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }
        
        .btn-tertiary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.6);
        }


        /* SparkedHost Promotion Styling */
        .hosting-promo {
            background: linear-gradient(to right, #1e1e2f, #2c2c3e);
            color: #fff;
            padding: 3rem 2rem;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            margin: 4rem auto;
            max-width: 900px;
            text-align: center;
        }
        
        .hosting-promo h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: #ffcc00;
        }
        
        .hosting-promo p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1rem;
        }
        
        .hosting-promo a {
            color: #00d9ff;
            text-decoration: underline;
            transition: color 0.3s ease;
        }
        
        .hosting-promo a:hover {
            color: #ffffff;
        }