/* Blog Page Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8e44ad 0%, #3498db 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--neutral-100);
}

.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.hero p {
    font-size: 18px;
    color: var(--neutral-300);
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Win */
.featured-win {
    padding: 80px 0;
    background: var(--neutral-900);
    color: var(--neutral-100);
}

.win-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--border-radius-xl);
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.win-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    animation: rotate 4s linear infinite;
    z-index: -2;
}

.win-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--border-radius-xl);
    z-index: -1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.win-card.mega {
    border: 3px solid var(--secondary-color);
    animation: glow-mega 2s ease-in-out infinite alternate;
}

@keyframes glow-mega {
    from { box-shadow: 0 0 10px var(--secondary-color); }
    to { box-shadow: 0 0 40px var(--secondary-color); }
}

.win-header {
    text-align: center;
    margin-bottom: 32px;
}

.win-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 16px;
    text-shadow: 0 0 20px var(--secondary-color);
    animation: pulse 2s infinite;
}

.win-amount {
    font-family: 'Orbitron', monospace;
    font-size: 64px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--primary-color);
}

.win-details {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.player-info img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
}

.player-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--neutral-100);
    margin-bottom: 4px;
}

.player-info p {
    color: var(--neutral-400);
    font-size: 14px;
}

.win-date {
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 600;
}

.game-info h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.game-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--neutral-300);
    margin-bottom: 24px;
}

.win-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.win-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    color: var(--neutral-300);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.win-stats i {
    color: var(--secondary-color);
}

/* Player Stories */
.player-stories {
    padding: 80px 0;
    background: var(--neutral-200);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.story-card {
    background: var(--neutral-100);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.story-header {
    padding: 24px 24px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.story-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.player-details h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 4px;
}

.player-details p {
    color: var(--neutral-600);
    font-size: 14px;
    margin-bottom: 8px;
}

.player-details .win-amount {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    font-weight: 700;
    color: var(--success-color);
}

.story-content {
    padding: 16px 24px 24px;
}

.story-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.story-content p {
    color: var(--neutral-700);
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.story-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.story-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--neutral-200);
    padding: 4px 8px;
    border-radius: var(--border-radius);
    color: var(--neutral-700);
    font-size: 12px;
    font-weight: 600;
}

.story-stats i {
    color: var(--primary-color);
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: var(--neutral-100);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.review-card {
    background: var(--neutral-100);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--warning-color);
}

.review-card p {
    font-size: 16px;
    font-style: italic;
    color: var(--neutral-700);
    margin-bottom: 16px;
    line-height: 1.6;
}

.reviewer {
    font-weight: 700;
    color: var(--primary-color);
}

/* Submit Story */
.submit-story {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--neutral-100);
}

.submit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 48px;
    border-radius: var(--border-radius-xl);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.submit-card h2 {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.submit-card p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.submit-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: var(--border-radius);
}

.benefit i {
    font-size: 24px;
}

.benefit span {
    font-weight: 600;
}

.btn-submit {
    background: var(--neutral-100);
    color: var(--primary-color);
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Winning Tips */
.winning-tips {
    padding: 80px 0;
    background: var(--neutral-900);
    color: var(--neutral-100);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.tip-card {
    background: var(--neutral-800);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tip-card:hover::before {
    opacity: 1;
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.tip-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.tip-card:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.tip-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.tip-card p {
    color: var(--neutral-400);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-secondary);
    text-align: center;
    color: var(--neutral-100);
}

.cta-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* Floating Buttons - Blog Page Specific */
.story-float {
    background: var(--accent-color) !important;
}

.story-float:hover {
    background: var(--primary-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero h2 {
        font-size: 18px;
    }

    .win-card {
        padding: 32px 24px;
    }

    .win-amount {
        font-size: 48px;
    }

    .win-details {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .player-info {
        justify-content: center;
        text-align: center;
    }

    .win-stats {
        justify-content: center;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .submit-card {
        padding: 32px 24px;
    }

    .submit-card h2 {
        font-size: 24px;
    }

    .submit-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero h2 {
        font-size: 16px;
    }

    .win-card {
        padding: 24px 16px;
    }

    .win-amount {
        font-size: 36px;
    }

    .win-header h2 {
        font-size: 24px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .story-header {
        padding: 16px 16px 0;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .story-content {
        padding: 16px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .tip-card {
        padding: 24px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 16px;
    }
}