body {
    margin: 50px 100px 100px 100px;
    font-family: 'Inter', sans-serif;
}

h1,
h2,
p,
label,
input,
textarea,
select,
button {
    font-family: 'Inter', sans-serif;
}

.header-fomo {
    color: #52525B;
    background-color: #FFFFFF;
    width: 90%;
    height: 60px;
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    font-weight: 500;
}

.container {
    width: 90%;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    font-weight: 100;
}

.form-section {
    background: white;
    padding: 24px;
    border-radius: 0px 0px 12px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #52525B;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 18px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    background: #fafafa;
    transition: all 0.2s ease;
}

.form-group-simple {
    margin-right: 26px;

}

.form-control:focus {
    outline: none;
    border-color: #4285f4;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    pointer-events: none;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #9CA3AF transparent transparent transparent;
    /* triangle arrow */
}

select.form-control {
    appearance: none;
    width: 100%;
    padding: 14px 2.5rem 14px 1rem;
    background-color: #fafafa;
    border: 1px solid #e5e7eb;
    /* gray-200 */
    border-radius: 0.5rem;
    /* rounded-lg */
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    /* gray-700 */
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.select-wrapper select.form-control,
.select-wrapper select.form-control option {
    font-size: 16px;
    line-height: 1.5em;
}

.number-input-wrapper {
    position: relative;
}

.number-controls {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.number-btn {
    width: 20px;
    height: 15px;
    border: none;
    background: #f0f0f0;
    cursor: pointer;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.number-btn:hover {
    background: #e0e0e0;
}

.number-btn:first-child {
    border-radius: 3px 3px 0 0;
}

.number-btn:last-child {
    border-radius: 0 0 3px 3px;
}

.slider-container {
    margin: 20px 0;
}

.slider-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.slider-wrapper {
    position: relative;
    margin: 15px 0;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
    outline: none;
    appearance: none;

}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4285f4;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4285f4;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}



.slider-label {
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    color: #666;
}

.prediction-text {
    /* margin: 15px 0; */
    font-size: 14px;
    color: #666;
}

.generate-btn {
    width: 100%;
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 16px 20px;
    border-radius: 0.5rem;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.generate-btn:hover {
    background-color: #2563eb;
    /* blue-600 */
}

.generate-btn:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.5);
    /* focus ring */
}

.modal-overlay {
    display: none;
    /* ✅ This hides it initially */
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal {
    /* background: white; */
    /* border-radius: 20px; */
    padding: 24px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.close-button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fee2e2;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #dc2626;
    font-size: 18px;
    font-weight: bold;
}

.close-button:hover {
    background-color: #fecaca;
}

.content-wrapper {
    display: flex;
    gap: 24px;
}

.settings-list {
    flex: 1;
}

.setting-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.setting-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.setting-info {
  display: grid;
  grid-template-columns: 130px 1fr; /* 🔥 label fixed, value flexible */
  column-gap: 8px;
}

.setting-label {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 2px;
}

.setting-value {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4; /* improve vertical readability */
}

.game-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prediction-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.whatsapp-message {
    background-color: #f0fdf4;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin: 1.25rem 0;

}

.whatsapp-text {
    color: #16a34a;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.screenshot-button {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.screenshot-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.screenshot-button:active {
    transform: translateY(0);
}
.icon-website::before {
    content: "🌐"; 
}

.icon-withdraw::before {
    content: "💸"; 
}
/* Icons using CSS */
.icon-player::before {
    content: "🟠";
}

.icon-game::before {
    content: "🎮";
}

.icon-provider::before {
    content: "👑";
}

.icon-volatility::before {
    content: "📊";
}

.icon-rtp::before {
    content: "🎯";
}

.icon-deposit::before {
    content: "💰";
}

.icon-bet::before {
    content: "🎲";
}

.icon-prediction::before {
    content: "🔮";
}

.icon-camera::before {
    content: "📷";
}

/* Alert */
.custom-alert {
    padding: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    border-radius: 8px;
    border-left: 4px solid;
}

.custom-alert.green {
    background-color: #f0fdf4;
    color: #166534;
    border-color: #22c55e;
}

.custom-alert.red {
    background-color: #fef2f2;
    color: #991b1b;
    border-color: #ef4444;
}

.custom-alert.yellow {
    background-color: #fefce8;
    color: #92400e;
    border-color: #eab308;
}

.custom-alert.blue {
    background-color: #eff6ff;
    color: #1e3a8a;
    border-color: #3b82f6;
}


@media only screen and (max-width: 768px) {
    body {
        margin: 20px;

    }
    .header-fomo {
        width: auto;
        height: auto;
        padding: 20px;
        font-size: 18px;
        border-radius: 12px 12px 0px 0px;
        font-weight: 500;
    }

    .container {
        width: 100%;
        margin: 16px auto;
    }

    .form-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-section {
        padding: 16px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

    .form-secction-1 {
        border-radius: 0px 0px 0px 0px;
    }

    .form-control,
    .textarea-control {
        font-size: 16px;
        padding: 14px 10px;
    }

    .generate-btn {
        padding: 12px;
        font-size: 16px;
    }

    .slider-label {
        font-size: 10px;
        padding: 3px 8px;
    }

    .sip-btn {
        font-size: 11px;
        padding: 5px 10px;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .game-image {
        width: 100px;
        height: 100px;
        align-self: center;
    }

    .modal {
        margin: 10px;
        padding: 20px;
    }

}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    body {
        margin: 20px;

    }

    .header-fomo {
        width: auto;
        height: auto;
        padding: 20px;
        font-size: 18px;
        border-radius: 12px 12px 0px 0px;
        font-weight: 500;
    }

}