/**
 * REAL HERO - Full Width, High Impact Design
 */

/* ===========================================
   HERO SECTION - FULL WIDTH
   =========================================== */
.hero-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 80px 0;
    margin-bottom: 40px;
    overflow: hidden;
}

/* Gradient Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a1628 0%, #0d2847 30%, #0a1628 70%, #061222 100%);
    z-index: 0;
}

/* Glow Effects */
.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 102, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* Inner Container */
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 900px) {
    .hero-section {
        padding: 50px 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }
}

/* ===========================================
   LOGO SIDE
   =========================================== */
.hero-logo-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-container {
    position: relative;
    width: 280px;
    height: 280px;
}

@media (max-width: 900px) {
    .hero-logo-container {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
}

.hero-logo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    background: #ffffff;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-logo-btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow:
        0 30px 80px rgba(0, 102, 255, 0.3),
        0 0 0 1px rgba(0, 102, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Rating Badge */
.hero-rating-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.5);
    border: 3px solid #0a1628;
}

.hero-rating-star {
    font-size: 20px;
    color: #ffd700;
}

.hero-rating-num {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
}

/* ===========================================
   CONTENT SIDE
   =========================================== */
.hero-content-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 900px) {
    .hero-content-side {
        align-items: center;
    }
}

/* Title */
.hero-title {
    margin: 0;
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1px;
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 38px;
    }
}

/* Subtitle */
.hero-subtitle {
    margin: 0;
    font-size: 20px;
    color: #8b949e;
    font-weight: 500;
}

/* Bonus Display - Big & Bold */
.hero-bonus-display {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    margin: 10px 0;
}

.hero-bonus-label {
    font-size: 14px;
    font-weight: 700;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-bonus-value {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
}

@media (max-width: 900px) {
    .hero-bonus-value {
        font-size: 28px;
    }
}

/* Bonus Code Box */
.hero-code-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
}

.hero-code-label {
    font-size: 14px;
    color: #8b949e;
}

.hero-code-value {
    font-size: 18px;
    font-weight: 800;
    color: #10b981;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 8px;
}

/* CTA Button - Large & Prominent */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 48px;
    margin-top: 10px;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.4);
}

.hero-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 102, 255, 0.5);
    background: linear-gradient(135deg, #0077ff 0%, #0066ff 100%);
}

.hero-cta-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover .hero-cta-arrow {
    transform: translateX(6px);
}

@media (max-width: 900px) {
    .hero-cta-btn {
        width: 100%;
        max-width: 400px;
        padding: 18px 32px;
        font-size: 16px;
    }
}

/* ===========================================
   HIDE STUFF IN SPORTSBOOK REVIEWS
   =========================================== */
/* Featured Image */
.single-sportsbook .post-thumbnail,
.single-sportsbook .wp-post-image,
.single-sportsbook .entry-thumbnail,
.single-sportsbook article > .featured-image,
.single-sportsbook .post-image,
.single-sportsbook .entry-header + .post-thumbnail,
.single-sportsbook article img.wp-post-image,
body.single-sportsbook article .post-thumbnail,
body.single-sportsbook .featured-image,
body.single-sportsbook figure.post-thumbnail {
    display: none !important;
}

/* Date/Author Meta */
.single-sportsbook .entry-meta,
.single-sportsbook .post-meta,
.single-sportsbook .byline,
.single-sportsbook .posted-on,
body.single-sportsbook .entry-meta {
    display: none !important;
}
