* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Minecraft', Arial, sans-serif;
        }

        @font-face {
            font-family: 'Minecraft';
            src: url('https://dl.dafont.com/dl/?f=minecraft') format('truetype');
        }

        body {
            background: url('https://github.com/Yash-xoxo/TRASH/raw/main/d.png') no-repeat center center fixed;
            background-size: cover;
            min-height: 100vh;
            color: white;
            overflow-x: hidden;
        }

        /* Overlay for better text readability */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: -1;
        }

        /* Header */
        header {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px;
            background-image: linear-gradient(to right, #333333, #1c1c1c);
            z-index: 100;
            backdrop-filter: blur(10px);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            width: 90%;
            max-width: 800px;
            margin: 20px auto; /* Centers horizontally and adds top/bottom margin */
        }

        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            text-shadow: 3px 3px 0 #000;
            margin-bottom: 15px;
            letter-spacing: 2px;
            color: #fff;
            text-decoration: none;
        }

        /* Navigation */
        nav ul {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            padding: 8px 15px;
            border: 2px solid transparent;
            border-radius: 25px;
            transition: all 0.3s;
        }

        nav a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        /* Main content container */
        .content-container {
            max-width: 1200px;
            margin: 20px auto 0;
            padding: 40px 20px;
        }

        /* Server info box */
        .server-info {
            background-color: rgba(40, 40, 40, 0.8);
            border: 2px solid #555;
            border-radius: 5px;
            padding: 25px;
            margin-bottom: 40px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
        }

        .server-info h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #ddd;
        }

        .server-stats {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }

        .stat-item {
            flex: 1;
            min-width: 200px;
            background-color: rgba(0, 0, 0, 0.3);
            padding: 15px;
            border-radius: 5px;
            text-align: center;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: bold;
            color: #4CAF50;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 1rem;
            color: #aaa;
        }

        .join-button {
            display: block;
            width: 100%;
            max-width: 300px;
            margin: 20px auto 0;
            padding: 15px;
            background-image: linear-gradient(to right, #4CAF50, #2E8B57);
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            text-align: center;
            text-decoration: none;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .join-button:hover {
            background-image: linear-gradient(to right, #2E8B57, #4CAF50);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        /* Content sections */
        .content-section {
            background-image: linear-gradient(to bottom, rgba(40, 40, 40, 0.8), rgba(20, 20, 20, 0.8));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 40px;
            backdrop-filter: blur(5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }

        .content-section h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #ddd;
            border-bottom: 2px solid #555;
            padding-bottom: 10px;
        }

        .content-section p {
            line-height: 1.6;
            margin-bottom: 15px;
            color: #ccc;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .feature-card {
            background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .feature-card i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #4CAF50;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #ddd;
        }

        .feature-card p {
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Footer */
        footer {
            background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(20, 20, 20, 0.7));
            padding: 30px 20px;
            text-align: center;
            backdrop-filter: blur(5px);
            box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s;
        }

        .social-links a:hover {
            color: #4CAF50;
            transform: scale(1.2);
        }

        .copyright {
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .logo {
                font-size: 1.8rem;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }

            .server-stats {
                flex-direction: column;
            }
        }

        /* Website Button Styles */
        .website-button-container {
            text-align: center;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .website-button {
            display: inline-block;
            padding: 12px 25px;
            background-image: linear-gradient(to right, #4CAF50, #8BC34A); /* Green to Light Green */
            color: white;
            font-size: 1.1rem;
            font-weight: bold;
            text-decoration: none;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .website-button:hover {
            background-image: linear-gradient(to right, #8BC34A, #4CAF50); /* Light Green to Green on hover */
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }