/* Fake Banner Widget - Optimized Sidebar Design */

.fake-banner-widget {
    position: relative;
    width: 100%;
/*     max-width: 400px; */
    padding: 30px 24px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 20px auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fake-banner-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
    z-index: 0;
}

.fake-banner-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.fake-banner-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.fake-banner-logo {
    width: 100%;
    max-width: 120px;
    align-self: center;
    margin-bottom: 8px;
}

.fake-banner-logo img {
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: none !important;
}

.fake-banner-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
}

.fake-banner-bonus {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.fake-banner-bonus-line1,
.fake-banner-bonus-line2 {
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    word-wrap: break-word;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
}

.fake-banner-bonus-line1 {
    font-size: 28px;
    margin-bottom: 4px;
}

.fake-banner-bonus-line2 {
    font-size: 22px;
}

.fake-banner-code {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 10px;
    border-radius: 12px;
    border: 2px dashed rgba(255, 255, 255, 0.25);
	display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4px;
    margin: 8px 0;
    text-align: center;
    align-self: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	max-width: 300px;
    width: 100%;
    margin: 0 auto;
}

.fake-banner-code:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.03);
}

.fake-banner-code-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
	margin: 0 !important;
}

.fake-banner-code-value {
    color: #FFD93D;
    font-size: 16px;
    font-weight: 900;
    font-family: 'Courier New', 'Courier', monospace;
    letter-spacing: 4px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.fake-banner-cta {
    margin-top: 6px;
    width: 100%;8px;
    width: 100%;
}

.fake-banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 36px;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 60px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.fake-banner-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.fake-banner-button:hover::before {
    left: 100%;
}

.fake-banner-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3);
    filter: brightness(1.12);
}

.fake-banner-button:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.fake-banner-arrow {
    font-size: 18px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: bold;
    display: inline-block;
}

.fake-banner-button:hover .fake-banner-arrow {
    transform: translateX(500px) */
@media screen and (max-width: 300px) {
    .fake-banner-widget {
        padding: 20px 16px;
    }
    
    .fake-banner-logo {
        max-width: 120px;
    }
    
    .fake-banner-bonus-line1 {
        font-size: 24px;
    }
    
    .fake-banner-bonus-line2 {
        font-size: 20px;
    }
    
    .fake-banner-code {
        padding: 12px 18px;
        min-width: 180px;
    }
    
    .fake-banner-code-value {
        font-size: 16px;
        letter-spacing: 3px;
    }
    
    .fake-banner-button {
        font-size: 12px;
        padding: 15px 28px;
    }
}

/* Standard sidebars (300px - 350px) */
@media screen and (min-width: 300px) and (max-width: 350px) {
    .fake-banner-bonus-line1 {
        font-size: 28px;
    }
    
    .fake-banner-bonus-line2 {
        font-size: 24px;
    }
}

/* Wider sidebars (350px+) */
@media screen and (min-width: 350px) {
    .fake-banner-widget {
        padding: 32px 26px;
    }
    
    .fake-banner-logo {
        max-width: 120px;
    }
    
    .fake-banner-bonus-line1 {
        font-size: 28px;
    }
    
    .fake-banner-bonus-line2 {
        font-size: 32px;
    }
    
    .fake-banner-code {
        padding: 18px 26px;
        min-width: 240px;
    }
    
    .fake-banner-code-value {
        font-size: 16px;
        letter-spacing: 4.5px;
    }
    
    .fake-banner-button {
        font-size: 15px;
        padding: 19px 40{
        font-size: 16px;
        padding: 18px 36px;
    }
}

/* Print styles */
@media print {
    .fake-banner-widget {
        box-shadow: none;
        page-break-inside: avoid;
    }
}
