/* Blog Page Specific Styles */

/* Blog Hero Section */
.blog-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0e27 0%, #1e3c72 50%, #2a5298 100%);
    margin-top: 90px;
		padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.winners-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.coin,
.trophy {
    position: absolute;
    font-size: 3rem;
    animation: float 4s ease-in-out infinite;
}

.coin1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    color: var(--secondary-color);
}

.coin2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
    color: var(--secondary-color);
}

.coin3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
    color: var(--secondary-color);
}

.coin4 {
    top: 40%;
    right: 30%;
    animation-delay: 1.5s;
    color: var(--secondary-color);
}

.trophy1 {
    top: 15%;
    right: 20%;
    animation-delay: 0.5s;
    color: var(--accent-color);
}

.trophy2 {
    bottom: 20%;
    right: 10%;
    animation-delay: 2.5s;
    color: var(--accent-color);
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title .title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    animation: glow 3s ease-in-out infinite;
}

.hero-title .title-sub {
    display: block;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.winner-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    animation: pulse 2s infinite;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Winner Section */
.featured-winner {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a1d3a 100%);
}

.featured-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.winner-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color), #ffed4a);
    color: var(--dark-bg);
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.winner-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
}

.winner-photo {
    position: relative;
}

.winner-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--secondary-color);
    object-fit: cover;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.winner-location {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--accent-color);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.winner-details {
    text-align: left;
}

.winner-name {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.win-amount {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color), #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.win-game {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
}

.win-game img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.win-game span {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.win-story {
    margin-bottom: 25px;
}

.win-story p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
    font-style: italic;
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
}

.win-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.detail-item i {
    color: var(--secondary-color);
    width: 16px;
}

/* Winner Categories */
.winner-categories {
    padding: 60px 0;
    background: linear-gradient(180deg, #1a1d3a 0%, var(--dark-bg) 100%);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-tab {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-gray);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.category-tab.active,
.category-tab:hover {
    background: var(--primary-gradient);
    border-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

/* Winner Stories */
.winner-stories {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a1d3a 100%);
}

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

.story-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s ease;
    position: relative;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.story-card.slots {
    border-left: 4px solid #32cd32;
}

.story-card.live {
    border-left: 4px solid var(--accent-color);
}

.story-card.sports {
    border-left: 4px solid #ff6b6b;
}

.story-card.jackpot {
    border-left: 4px solid var(--secondary-color);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.winner-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.winner-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    object-fit: cover;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.winner-meta h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.location {
    color: var(--text-gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.win-badge {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.win-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.win-game {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slots-badge .win-amount {
    color: #32cd32;
}

.live-badge .win-amount {
    color: var(--accent-color);
}

.sports-badge .win-amount {
    color: #ff6b6b;
}

.jackpot-badge .win-amount {
    color: var(--secondary-color);
    animation: pulse 2s infinite;
}

.story-content {
    margin-bottom: 20px;
}

.story-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    padding-left: 15px;
    border-left: 2px solid rgba(255, 215, 0, 0.3);
}

.story-game {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.story-game img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.game-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.game-name {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.multiplier {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.payment-method,
.story-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-method i,
.story-date i {
    color: var(--secondary-color);
    width: 14px;
}

/* Trending Games */
.trending-games {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1d3a 0%, var(--dark-bg) 100%);
}

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

.trending-game {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.trending-game:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.game-image {
    position: relative;
    height: 180px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.trending-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trending-badge:has(.fa-fire) {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white;
    animation: pulse 2s infinite;
}

.trending-badge:has(.fa-star) {
    background: linear-gradient(135deg, var(--secondary-color), #ffed4a);
    color: var(--dark-bg);
}

.trending-badge:has(.fa-crown) {
    background: linear-gradient(135deg, #9d4edd, #c77dff);
    color: white;
}

.trending-badge:has(.fa-users) {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white;
}

.trending-badge:has(.fa-gamepad) {
    background: linear-gradient(135deg, #06ffa5, #32cd32);
    color: var(--dark-bg);
}

.trending-badge:has(.fa-rocket) {
    background: linear-gradient(135deg, #ff6b6b, #ff8c00);
    color: white;
}

.game-info {
    padding: 25px;
}

.game-info h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.players {
    color: #32cd32;
    font-weight: 600;
}

.recent-win {
    color: var(--secondary-color);
    font-weight: 600;
}

.play-trending-btn {
    background: var(--primary-gradient);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-trending-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(30, 60, 114, 0.4);
}

/* Share Story Section */
.share-story {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a5298 100%);
    text-align: center;
}

.share-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: var(--neon-glow) var(--secondary-color);
}

.share-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-gray);
}

.share-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    min-width: 180px;
}

.benefit i {
    font-size: 2rem;
    color: var(--secondary-color);
    animation: pulse 2s infinite;
}

.benefit span {
    color: var(--text-light);
    font-weight: 600;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-share {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-share.primary {
    background: linear-gradient(135deg, var(--secondary-color), #ffed4a);
    color: var(--dark-bg);
}

.btn-share.secondary {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white;
}

.btn-share:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero {
        margin-top: 110px;
        padding: 50px 0;
    }

    .hero-title .title-main {
        font-size: 2.5rem;
    }

    .hero-title .title-sub {
        font-size: 1.4rem;
    }

    .winner-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .featured-card {
        padding: 30px 20px;
    }

    .winner-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .winner-photo {
        display: flex;
        justify-content: center;
    }

    .win-details {
        justify-content: center;
        gap: 20px;
    }

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

    .trending-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .share-benefits {
        gap: 20px;
    }

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

@media (max-width: 480px) {
    .hero-title .title-main {
        font-size: 2rem;
    }

    .hero-title .title-sub {
        font-size: 1.2rem;
    }

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

    .story-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .share-benefits {
        flex-direction: column;
        align-items: center;
    }

    .benefit {
        min-width: 200px;
    }
}

/* Category filtering */
.story-card.hidden {
    display: none;
}

.story-card.show {
    animation: fadeIn 0.5s ease forwards;
}