body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #fafafa;
            color: #111111;
            overflow-x: hidden;
        }
        .bg-dark-custom {
            background-color: #060913;
        }
        .text-purple {
            color: #8b5cf6;
        }
        .btn-custom-light {
            background-color: #ffffff;
            color: #000000;
            font-weight: 600;
            border-radius: 30px;
            padding: 10px 24px;
        }
        .btn-custom-outline {
            border: 1px solid #ffffff33;
            color: #ffffff;
            font-weight: 600;
            border-radius: 30px;
            padding: 10px 24px;
        }
        .btn-custom-dark {
            background-color: #000000;
            color: #ffffff;
            font-weight: 500;
            border-radius: 30px;
            padding: 8px 20px;
            width: 100%;
            transition: all 0.3s;
        }
        .btn-custom-dark:hover {
            background-color: #222222;
            color: #ffffff;
        }
        .product-card {
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            transition: transform 0.3s, box-shadow 0.3s;
            background: #ffffff;
        }
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }
        .feature-card {
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            background: #ffffff;
            height: 100%;
        }
        
        /* Fix ukuran box icon agar sejajar sempurna */
        .icon-box {
            width: 48px;
            height: 48px;
            background-color: #060913;
            color: #ffffff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .btn-join-discord {
            background-color: #18191c;
            color: #ffffff;
            font-weight: 600;
            border-radius: 50px;
            padding: 12px 28px;
            transition: all 0.2s ease;
            border: none;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .btn-join-discord:hover {
            background-color: #2f3136;
            color: #ffffff;
        }

        .footer-link-custom {
            color: rgba(255, 255, 255, 0.45);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.2s ease;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .footer-link-custom:hover {
            color: #a855f7 !important;
        }

        .footer-heading {
            font-size: 0.85rem;
            letter-spacing: 1px;
            color: #ffffff;
        }

        .text-purple {
            color: #a855f7;
        }

        .footer-watermark-container {
            width: 100%;
            text-align: center;
            z-index: 1;
            pointer-events: none;
        }

        .footer-watermark-text {
            font-size: clamp(4rem, 16vw, 15rem);
            font-weight: 900;
            color: #282b35;
            line-height: 0.75;
            user-select: none;
            letter-spacing: -4px;
        }

        .social-links a {
            color: rgba(255, 255, 255, 0.4);
            transition: color 0.2s;
        }
        
        .social-links a:hover {
            color: #ffffff;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: #0b1120;
                padding: 20px;
                border-radius: 12px;
                margin-top: 15px;
                border: 1px solid #ffffff1a;
            }
            .hero-title {
                font-size: 2.25rem !important;
            }
            .footer-watermark-container {
                display: none;
            }
        }