/* Single Bonus Landing Page Styles */

:root {
    /* Colors */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent-gradient: linear-gradient(45deg, #ff6b6b, #ee5a52);
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #ff6b6b;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --text-light: #495057;
    --border-color: #e9ecef;
    --background-light: #f8f9fa;
    --success-color: #28a745;
    --danger-color: #dc3545;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 60px 20px;
    --card-padding: 20px;
    --small-gap: 8px;
    --medium-gap: 15px;
    --large-gap: 30px;
    
    /* Border Radius */
    --border-radius-sm: 6px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 15px;
    --border-radius-pill: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-size-xs: 11px;
    --font-size-sm: 12px;
    --font-size-md: 14px;
    --font-size-lg: 16px;
    --font-size-xl: 18px;
    --font-size-2xl: 20px;
    --font-size-3xl: 24px;
    --font-size-4xl: 32px;
    
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
}

.wpg-single-bonus-landing {
    max-width: 100%;
    margin: 0 auto;
    background: #ffffff;
}

/* Hero Section */
.wpg-bonus-hero {
    background: var(--primary-gradient);
    color: white;
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.wpg-bonus-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.wpg-hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Bonus Header with Logo */
.wpg-bonus-header {
    display: flex;
    align-items: flex-start;
    gap: var(--card-padding);
    margin-bottom: var(--large-gap);
}

.wpg-casino-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: white;
    padding: 10px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.wpg-bonus-info-section {
    flex: 1;
}

.wpg-casino-rating {
    display: flex;
    align-items: center;
    gap: var(--small-gap);
    margin-top: 10px;
}

.wpg-stars {
    display: flex;
    gap: 2px;
}

.wpg-stars .fa-star {
    color: #ffc107;
    font-size: var(--font-size-lg);
}

.wpg-stars .fa-star-o {
    color: #ddd;
    font-size: var(--font-size-lg);
}

.wpg-rating-text {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
    color: var(--text-muted);
}

/* Bonus Hero Card */
.wpg-bonus-hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    color: #333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wpg-bonus-type-badge {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: var(--small-gap) var(--medium-gap);
    border-radius: var(--border-radius-pill);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--card-padding);
}

/* Modern Bonus Code */
.wpg-bonus-code-modern {
    background: var(--primary-gradient);
    border-radius: var(--border-radius-lg);
    padding: var(--card-padding);
    margin-top: var(--card-padding);
    color: white;
    position: relative;
    overflow: hidden;
}

.wpg-bonus-code-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    opacity: 0.5;
}

.wpg-bonus-code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.wpg-bonus-code-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.wpg-bonus-code-icon {
    font-size: 18px;
    opacity: 0.8;
}

.wpg-bonus-code-display {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wpg-bonus-code-display:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.wpg-bonus-code-display.no-code {
    cursor: default;
    justify-content: center;
}

.wpg-bonus-code-display.no-code:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.15);
}

.wpg-bonus-code-text {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

.wpg-bonus-code-copy {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.wpg-bonus-code-copy i {
    font-size: 14px;
}

.wpg-bonus-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 30px 0;
    color: #2c3e50;
    line-height: 1.2;
}

/* Bonus Attributes */
.wpg-bonus-attributes {
    margin-bottom: 30px;
}

.wpg-attributes-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.wpg-attribute-row {
    border-bottom: 1px solid #f1f3f4;
    transition: background-color 0.2s ease;
}

.wpg-attribute-row:last-child {
    border-bottom: none;
}

.wpg-attribute-row:hover {
    background-color: #f8f9fa;
}

.wpg-attribute-label {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    text-align: left;
    vertical-align: middle;
    width: 40%;
    border-right: 1px solid #f1f3f4;
}

.wpg-attribute-value {
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    text-align: right;
    vertical-align: middle;
}

.wpg-bonus-code-section {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.wpg-bonus-code-display {
    background: #2c3e50;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wpg-bonus-code-display:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.wpg-code-label {
    font-size: 14px;
    font-weight: 600;
}

.wpg-code {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    letter-spacing: 1px;
    flex: 1;
    text-align: center;
}

.wpg-bonus-code-display i {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.wpg-bonus-code-display:hover i {
    opacity: 1;
}

/* Bonus Notes Content */
.wpg-bonus-notes-content {
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
}

.wpg-bonus-notes-content p {
    margin-bottom: 15px;
}

.wpg-bonus-notes-content p:last-child {
    margin-bottom: 0;
}

.wpg-bonus-notes-content ul,
.wpg-bonus-notes-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.wpg-bonus-notes-content li {
    margin-bottom: 8px;
}

.wpg-bonus-notes-content h3,
.wpg-bonus-notes-content h4 {
    color: #2c3e50;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

/* Social Proof Row */
.wpg-social-proof-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px 0;
}

.wpg-voting-buttons-inline {
    flex-shrink: 0;
}

.wpg-voting-buttons-inline .voting-buttons {
    display: flex;
    justify-content: center;
}


.wpg-claim-count {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
    flex-shrink: 0;
}

.wpg-claim-count i {
    color: #28a745;
}

/* Primary CTA */
.wpg-hero-cta {
    text-align: center;
}

.wpg-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wpg-cta-button.primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    box-shadow: 0 8px 25px rgba(238, 90, 82, 0.4);
}

.wpg-cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(238, 90, 82, 0.6);
}

.wpg-cta-button.secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.wpg-cta-button.secondary:hover {
    background: #667eea;
    color: white;
}

.wpg-cta-subtext {
    margin-top: 15px;
    font-size: 12px;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wpg-cta-subtext i {
    color: #28a745;
}

/* Content Sections */
.wpg-bonus-guide,
.wpg-bonus-details,
.wpg-bonus-feedback {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.wpg-bonus-guide {
    background: #f8f9fa;
}

.wpg-section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

/* Claim Steps */
.wpg-claim-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.wpg-step {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.wpg-step:hover {
    transform: translateY(-5px);
}

.wpg-step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.wpg-step h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #2c3e50;
}

.wpg-step p {
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
}

/* Secondary CTA */
.wpg-secondary-cta {
    text-align: center;
}



.wpg-bonus-content h3,
.wpg-bonus-content h4 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.wpg-bonus-content ul,
.wpg-bonus-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.wpg-bonus-content li {
    margin-bottom: 8px;
}

/* Related Bonuses Section */
.wpg-related-bonuses {
    padding: var(--section-padding);
    background: var(--background-light);
    max-width: var(--container-max-width);
    margin: 0 auto;
}


.wpg-related-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.wpg-related-bonus-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.wpg-related-bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.wpg-related-bonus-header {
    margin-bottom: 15px;
}

.wpg-related-bonus-type {
    display: inline-block;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.wpg-related-bonus-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
}

.wpg-related-bonus-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f3f4;
}

.wpg-related-detail {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wpg-related-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 600;
}

.wpg-related-value {
    font-size: 13px;
    color: #2c3e50;
    font-weight: 700;
    background: #f8f9fa;
    padding: 2px 8px;
    border-radius: 4px;
}

.wpg-related-bonus-description {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 20px;
}

.wpg-related-bonus-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wpg-related-bonus-link:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .wpg-bonus-hero {
        padding: 40px 20px;
    }
    
    .wpg-bonus-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .wpg-casino-logo {
        width: 80px;
        height: 80px;
        padding: 8px;
    }
    
    .wpg-casino-name {
        font-size: 24px;
    }
    
    .wpg-bonus-hero-card {
        padding: 25px;
    }
    
    .wpg-bonus-title {
        font-size: 24px;
    }
    
    .wpg-attribute-label,
    .wpg-attribute-value {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .wpg-attribute-label {
        width: 50%;
    }
    
    .wpg-attribute-value {
        font-size: 15px;
    }
    
    .wpg-bonus-code-modern {
        padding: 15px;
        margin-top: 15px;
    }
    
    .wpg-bonus-code-display {
        padding: 12px 16px;
        flex-direction: column;
        gap: 8px;
    }
    
    .wpg-bonus-code-text {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .wpg-bonus-code-copy {
        font-size: 11px;
    }
    
    .wpg-social-proof-row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px 0;
    }
    
    .wpg-voting-buttons-inline .voting-buttons {
        justify-content: center;
    }
    
    .wpg-related-bonuses {
        padding: 40px 20px;
    }
    
    .wpg-related-bonuses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .wpg-related-bonus-card {
        padding: 20px;
    }
    
    .wpg-related-bonus-details {
        flex-direction: column;
        gap: 10px;
    }
    
    
    .wpg-cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .wpg-claim-steps {
        grid-template-columns: 1fr;
    }
    
    .wpg-bonus-guide,
    .wpg-bonus-details,
    .wpg-bonus-feedback {
        padding: 40px 20px;
    }
    
    .wpg-section-title {
        font-size: 24px;
    }
    
    .wpg-voting-stats {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .wpg-bonus-hero-card {
        padding: 20px;
        margin: 0 10px;
    }
    
    .wpg-bonus-title {
        font-size: 20px;
    }
    
    .wpg-cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .wpg-step {
        padding: 20px;
    }
}