body {
    background-color: #121212;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.px-1 {
    padding-left: 10px;
    padding-right: 10px;
}
.px-2 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}
.px-3 {
    padding-left: 30px;
    padding-right: 30px;
}
.py-1 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.py-2 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.py-3 {
    padding-top: 30px;
    padding-bottom: 30px;
}
.locker-container {
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.niche-header {
    background-color: #151515;
    margin: 0;
}

@keyframes pulseEffect {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 5px rgba(255, 255, 0, 0.2);
    }
    50% {
        transform: scale(1.07);
        opacity: 0.85;     
        box-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 5px rgba(255, 255, 0, 0.2);
    }
}

.niche-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 2px solid #333;
    animation: pulseEffect 2.5s infinite ease-in-out;
}

.niche-title {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}

.niche-title .highlight {
    color: #FFFF00;
    display: block;
}

.instructions {
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
    background-color: #0f0f0f;
}

.instructions strong {
    text-decoration: underline;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #000000;
}

.offer-item {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    text-align: left;
}

.offer-icon-container {
    margin-right: 15px;
    flex-shrink: 0;
}

.offer-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #333;
}

.offer-details {
    flex-grow: 1;
}

.offer-name {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #eee;
}

.offer-adcopy {
    font-size: 0.9em;
    color: #aaa;
    margin-bottom: 10px;
}

.offer-action-button {
    background-color: #42bf40;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9em;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 10px;
    white-space: nowrap;
}

.offer-action-button:hover {
    background-color: #45a049;
}

.offer-rating-dots {
    margin-top: 2px;
    text-align: center;
}
.offer-rating-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #FFD700;
    border-radius: 50%;
    margin-right: 3px;
}
.offer-rating-dots span.inactive {
    background-color: #555;
}


.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #fff;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.support-text {
    font-size: 0.8em;
    color: #777;
    background-color: #0f0f0f;
}

.offer-item.pending-completion {
    opacity: 0.6;
    pointer-events: none;
}

.offer-item.pending-completion .offer-action-button {
    background-color: #f0ad4e;
    cursor: default;
}

.offer-action-button .spinner-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
}

.offer-action-button .spinner-icon.hidden {
    display: none;
}
.offer-item:last-child {
    border-bottom: none;
}
.custom-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
}

.custom-modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 15px;
    box-sizing: border-box;
}

.custom-modal-content {
    background-color: #fff;
    color: #242424;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.7);
    width: 100%;
    max-width: 420px;
    padding: 25px;
    border: 1px solid #333;
    box-sizing: border-box;
}

.custom-modal-content .text-center { text-align: center; }
.custom-modal-content .title,
.custom-modal-content .main-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #151515;
}
.custom-modal-content .mb-2 { margin-bottom: 0.75rem; }
.custom-modal-content .mt-3 { margin-top: 1.25rem; }

.custom-modal-content .description {
    font-size: 0.95em;
    color: #333;
    line-height: 1.5;
}

.custom-modal-content .app-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 15px;
}
.custom-modal-content .app-list-sm img {
    margin-bottom: 15px;
}


.custom-modal-content .btn {
    display: inline-block;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: #42bf40;
    border: none;
    padding: 10px 20px;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.5;
    border-radius: 20px;
    transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    text-transform: uppercase;
}

.custom-modal-content .btn:hover {
    background-color: #45a049;
    box-shadow: 0 0 10px rgba(66, 191, 64, 0.5);
}
.custom-modal-content .btn-sm {
}
.custom-modal-content .w-100 { width: 100% !important; }
.custom-modal-content .flex-fill { flex: 1 1 auto !important; }


.custom-modal-content .row {
    display: flex;
    flex-wrap: wrap;
}
.custom-modal-content .col-12 {
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
}
.custom-modal-content .d-flex { display: flex !important; }
.custom-modal-content .align-items-center { align-items: center !important; }
.custom-modal-content .my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.custom-modal-content .mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; }


.custom-modal-content .glow-on-hover:hover {
}

.hidden {
    display: none !important;
}
@keyframes slideInFromTop {
    from {
        transform: translateY(-40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.custom-modal-content.animate-slide-in {
    animation: slideInFromTop 0.4s ease-out forwards;
}

.custom-modal-wrapper:not(.hidden) .custom-modal-content {
    opacity: 0;
}
.custom-modal-wrapper:not(.hidden) .custom-modal-content.animate-slide-in {
    opacity: 1;
}


.custom-modal-wrapper.hidden {
    display: none !important;
}
.custom-modal-backdrop.hidden {
    display: none !important;
}
.my-1 { margin-top: 10px; margin-bottom: 10px; }
.my-2 { margin-top: 20px; margin-bottom: 20px; }
.my-3 { margin-top: 30px; margin-bottom: 30px; }

.video-embed-wrapper {
    padding: 0 20px;
}
.responsive-video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    background-color: #000;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.responsive-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}