 body {
            font-family: 'Poppins', sans-serif;
            color: #fff;
        }
        .hero-gradient {
            background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
        }
        .hero-background {
            background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
            position: relative;
            overflow: hidden;
        }
        .hero-background::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 10%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 15%),
                radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 12%),
                radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 18%);
            z-index: 1;
        }
        .weather-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        .weather-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .discord-message {
            background-color: #36393f;
            border-radius: 8px;
            max-width: 100%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .command {
            background-color: #2f3136;
            border-radius: 4px;
            padding: 2px 6px;
            font-family: monospace;
        }
        .btn-primary {
            background: linear-gradient(90deg, #5865F2 0%, #7289da 100%);
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
        }
        .weather-icon {
            position: absolute;
            opacity: 0.15;
            z-index: 1;
        }
        .cloud1 {
            top: 10%;
            left: 10%;
            animation: float 20s infinite ease-in-out;
        }
        .cloud2 {
            top: 20%;
            right: 15%;
            animation: float 25s infinite ease-in-out reverse;
        }
        .sun {
            bottom: 15%;
            right: 10%;
            animation: pulse 10s infinite ease-in-out;
        }
        .rain {
            bottom: 20%;
            left: 15%;
            animation: float 15s infinite ease-in-out;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-20px) translateX(15px); }
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.15; }
            50% { transform: scale(1.1); opacity: 0.2; }
        }
        .command-card {
            background: rgba(255, 255, 255, 0.1);
            border-left: 4px solid #5865F2;
            transition: all 0.3s ease;
        }
        .command-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(5px);
        }
        .timeline-item {
            position: relative;
            padding-left: 28px;
        }
        .timeline-item::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #5865F2;
            margin-top: 6px;
        }
        .timeline-item::after {
            content: "";
            position: absolute;
            left: 5px;
            top: 18px;
            width: 2px;
            height: calc(100% - 12px);
            background: rgba(88, 101, 242, 0.5);
        }
        .timeline-item:last-child::after {
            display: none;
        }
        .feature-card {
            border-left: 4px solid #5865F2;
            background: rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }
        .feature-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
    