body {
    background-color: #101010;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    background-color: #1A1A1A;
    padding: 40px 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    border: 1px solid #222222;
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.1);
}

.logo {
    font-size: 48px;
    font-weight: 900;
    color: #FFFF00;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
    letter-spacing: 2px;
}

h1 {
    color: #FFFFFF;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

p {
    color: #AAAAAA;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn {
    background-color: #FFFF00;
    color: #000000;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(255, 255, 0, 0.6);
}

.btn:disabled {
    background-color: #333333;
    color: #888888;
    cursor: not-allowed;
    box-shadow: none;
}

.step-info {
    margin-top: 20px;
    font-size: 15px;
    color: #FFFF00;
    font-weight: bold;
}

.key-box {
    display: none;
    margin-top: 25px;
    background-color: #101010;
    padding: 20px;
    border-radius: 12px;
    border: 2px dashed #FFFF00;
}

#keyValue {
    font-size: 22px;
    font-weight: bold;
    color: #FFFFFF;
    letter-spacing: 3px;
    word-break: break-all;
}

.copy-btn {
    margin-top: 15px;
    background-color: transparent;
    color: #FFFF00;
    border: 1px solid #FFFF00;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.copy-btn:hover {
    background-color: #FFFF00;
    color: #000000;
}

/* ANTI-ADBLOCK OVERLAY */
#dx-adblock-overlay {
    display: none; 
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999999; 
    justify-content: center; 
    align-items: center;
    opacity: 0; 
    transition: opacity 0.4s ease;
}

#dx-adblock-overlay.active { 
    display: flex; 
    opacity: 1; 
}

.dx-adblock-card {
    background: #1A1A1A; 
    border: 2px solid #FF0000;
    padding: 40px 30px; 
    border-radius: 16px; 
    text-align: center;
    width: 85%; 
    max-width: 400px; 
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.dx-adblock-card h2 {
    color: #FF0000;
    margin-top: 0;
}

.dx-adblock-card p {
    color: #DDDDDD;
    margin-bottom: 25px;
}

.dx-no-scroll { 
    overflow: hidden !important; 
}

/* TOAST STYLE */
.toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #ffeb3b;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 30px;
    font-size: 15px;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
    font-weight: bold;
    border: 1px solid #ffeb3b;
    box-shadow: 0 0 10px rgba(255, 235, 59, 0.2);
}

.toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}
