
    .GAN89-Slot-card {
            max-width: 750px;
            width: 100%;
            background: #000000;
            border-radius: 32px;
            padding: 40px 35px;
            box-shadow: 0 25px 45px -20px rgba(0, 0, 0, 0.1);
            border: 1px solid rgb(255, 208, 0);
        }
        
        /* judul utama */
        .hero-title {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .hero-title h1 {
            font-size: 34px;
            font-weight: 700;
            line-height: 1.4;
            color: #ffffff;
            margin-bottom: 5px;
        }
        
        .hero-title h1 span {
            color: #ffbb00;
            font-weight: 800;
        }
        
        /* header dalam card */
        .brand-header {
            text-align: center;
            margin-bottom: 25px;
        }
        
        .brand-header h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #1a1a1a;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }
        
        .brand-header .sub {
            font-size: 15px;
            color: #4a4a4a;
            font-weight: 500;
            position: relative;
            display: inline-block;
            padding-bottom: 8px;
        }
        
        .brand-header .sub:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: #000000;
        }
        
        /* info box */
        .info-container {
            background: #fafafa;
            border-radius: 20px;
            border: 1px solid #0051ff;
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .info-head {
            padding: 15px 20px;
            border-bottom: 1px solid #0051ff;
            background: #0051ff;
        }
        
        .info-head h3 {
            margin: 0;
            font-size: 16px;
            color: #ffbb00;
            font-weight: 700;
            text-align: center;
            letter-spacing: 0.5px;
        }
        
        .info-list {
            padding: 5px 0;
        }
        
        .info-row {
            padding: 14px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #0051ff;
        }
        
        .info-row:last-child {
            border-bottom: none;
        }
        
        .info-label {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .info-dot {
            width: 8px;
            height: 8px;
            background: #000000;
            border-radius: 50%;
            display: inline-block;
        }
        
        .info-text {
            color: #2a2a2a;
            font-weight: 600;
            font-size: 15px;
        }
        
        .info-number {
            color: #1a1a1a;
            font-size: 15px;
            font-weight: 600;
            background: #0051ff;
            padding: 4px 14px;
            border-radius: 40px;
            border: 1px solid #000000;
        }
        
        /* bonus section */
        .bonus-wrap {
            background: #0051ff;
            border-radius: 20px;
            padding: 25px 20px;
            margin: 30px 0 35px;
            border: 1px solid #0051ff;
            text-align: center;
        }
        
        .bonus-head {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .bonus-head .gold-icon {
            width: 8px;
            height: 8px;
            background: #000000;
            border-radius: 50%;
        }
        
        .bonus-head h3 {
            margin: 0;
            font-size: 16px;
            color: #000000;
            font-weight: 700;
        }
        
        .bonus-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .bonus-item {
            padding: 12px 15px;
            background: #ffffff;
            border-radius: 14px;
            border-left: 4px solid #000000;
            box-shadow: 0 2px 8px rgba(212, 175, 55, 0.05);
            text-align: left;
        }
        
        .bonus-item p {
            margin: 0;
            font-size: 15px;
            font-weight: 600;
            color: #1a1a1a;
        }
        
        .bonus-item .highlight-gold {
            color: #ffbb00;
            font-weight: 700;
        }
        
        .bonus-item .highlight-black {
            color: #1a1a1a;
        }
        
        /* CTA buttons - gold edition */
        .cta-gold-section {
            margin-top: 25px;
            text-align: center;
        }
        
        .cta-buttons-gold {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-gold {
            display: inline-block;
            padding: 14px 42px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.2s ease;
            border: 1px solid;
            min-width: 140px;
        }
        
        .btn-login-gold {
            background: transparent;
            color: #0051ff;
            border-color: #0051ff;
        }
        
        .btn-login-gold:hover {
            background: #ffffff;
        }
        
        .btn-register-gold {
            background: #0051ff;
            color: #000000;
            border-color: #000000;
        }
        
        .btn-register-gold:hover {
            background: #ffffff;
        }
