
    .row {
        color: #ffffff;
        background-color: #011f2000;
    }

    /* Simple wallet connection status styling */
    .wallet-status {
        margin: 10px 0;
        padding: 8px 12px;
        border-radius: 4px;
        font-size: 14px;
    }

    .status-connecting {
        background-color: #d1ecf1;
        color: #0c5460;
        border: 1px solid #bee5eb;
    }

    .status-connected {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }

    .status-error {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }

    #connetBtn {
        padding: 10px 20px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        margin: 10px 0;
    }

    #connetBtn:hover {
        background-color: #0056b3;
    }

    #connetBtn.connected {
        background-color: #28a745;
    }

    #connetBtn.connected:hover {
        background-color: #218838;
    }

    /* Sponsor section styling - initially hidden */
    .sponsor-section {
        display: none;
        transition: all 0.3s ease-in-out;
    }

    .sponsor-section.show {
        display: block;
    }

    /* Form group consistency */
    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        margin-bottom: 0.5rem;
        font-weight: 500;
    }

    /* Wallet input field styling */
    #walletKey {
        background-color: #e9ecef00 !important;
        color: #b8b3b3 !important;
        padding: 0 0px !important;
        border: 0 !important;
    }
    
    
    /* Buttons */
    .btn-warning {
        background: linear-gradient(135deg, #ffb703, #ff7300);
        border: none;
        border-radius: 12px;
        color: #111;
        font-weight: 600;
        padding: 12px;
        transition: all 0.3s ease;
    }

    .btn-warning:hover {
        background: linear-gradient(135deg, #ff7300, #ffb703);
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(255, 183, 3, 0.4);
    }

    /* Checkbox */
    .checkbox label {
        color: #ddd;
        font-size: 13px;
    }

    .checkbox a {
        color: #ffb703;
        text-decoration: none;
    }

    .checkbox a:hover {
        text-decoration: underline;
    }

    /* Sponsor Section */
    .sponsor-section .form-group {
        margin-bottom: 15px;
    }

    .sponsor-section input {
        background: rgba(255, 255, 255, 0.12);
        border: none;
        border-radius: 10px;
        color: #fff;
    }

    /* Footer text */
    label.text-muted {
        color: #aaa !important;
    }

    .wallet-box {
  text-align: center;
  font-weight: 500;
  color: #28a745;  /* green accent */
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.wallet-box:focus {
  border-color: #28a745;
  box-shadow: 0 0 8px #28a74588;
}

.form-control::placeholder {
  color: #aaa;   /* light grey */
  opacity: 1;    /* ensure it’s not faded */
  font-weight: 400;
}