/* Custom SHL-Branded Minimal Styling */

.shl-promo-container {
    max-width: 520px;
    margin: 70px auto 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    text-align: center;
}

.shl-premium-card {
    background-color: #1C1C1E;
    border: 1px solid #3A3A3C;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    color: #FFFFFF !important;
    position: relative;
    overflow: visible;
}

.shl-gsr-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
    text-align: left;
    min-height: 160px;
}

.shl-gsr-icon {
    width: 220px;
    height: 220px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -60px;
    left: -40px;
    z-index: 10;
    border-radius: 50%;
    border: 8px solid #dadada;
    overflow: hidden;
    background: #000; /* Solid background for any internal transparency */
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.6));
}

.shl-gsr-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.shl-gsr-info {
    flex-grow: 1;
    margin-left: 190px;
}

.shl-gsr-title {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF !important;
    line-height: 1.2;
}

.shl-gsr-dev {
    display: block;
    font-size: 14px;
    color: #8E8E93;
}

.shl-btn-primary {
    background-color: #1A1A1A;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
}

.shl-btn-primary:hover {
    background-color: #333333;
}

.shl-btn-primary:disabled,
.shl-btn-disabled {
    background-color: #666666;
    cursor: not-allowed;
    opacity: 0.6;
}

.shl-success-box {
    background-color: #2C2C2E;
    border: 1px solid #3A3A3C;
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.shl-exp-text {
    font-size: 13px;
    color: #8E8E93;
    margin-top: 10px;
    opacity: 0.9;
}

.shl-code-display {
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    font-weight: 700;
    background: #000000;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 6px;
    letter-spacing: 2px;
    display: inline-block;
    word-break: break-all;
    margin-top: 5px;
    border: 1px solid #444;
    min-width: 180px;
}

.shl-action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
}

.shl-btn-copy {
    background-color: #3A3A3C;
    color: #ffffff;
    border: none;
    padding: 18px 25px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    flex: 1 1 0;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-align: center;
}

.shl-btn-copy:hover {
    background-color: #4A4A4C;
    transform: translateY(-1px);
}

.shl-btn-redeem {
    background-color: #00875F;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 18px 25px;
    font-size: 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex: 1 1 0;
    text-align: center;
    transition: all 0.2s ease;
    box-sizing: border-box;
    white-space: nowrap;
}

.shl-btn-redeem:hover {
    background-color: #006b4b;
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* Mobile Responsive Stacking */
@media (max-width: 600px) {
    .shl-promo-container {
        margin-top: 100px;
        padding: 0 15px;
    }
    .shl-gsr-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: 0;
        gap: 10px;
        margin-bottom: 25px;
    }
    .shl-gsr-icon {
        position: relative;
        top: 0;
        left: 0;
        margin: -110px auto 15px auto;
        width: 180px;
        height: 180px;
    }
    .shl-gsr-icon img {
        width: 180px !important;
        height: 180px !important;
    }
    .shl-gsr-info {
        margin-left: 0;
    }
    .shl-gsr-title {
        font-size: 20px;
    }
}
