/* Blog Page Styles for Oklv Casino */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #4ecdc4;
    --accent-color: #45b7d1;
    --gold-color: #ffd700;
    --purple-color: #8a2be2;
    --green-color: #28a745;
    --red-color: #dc3545;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #b0b3b8;
    --gradient-primary: linear-gradient(135deg, #ff6b35, #f7931e);
    --gradient-secondary: linear-gradient(135deg, #4ecdc4, #45b7d1);
    --gradient-purple: linear-gradient(135deg, #8a2be2, #9932cc);
    --gradient-gold: linear-gradient(135deg, #ffd700, #ffed4e);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero-content {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px !important;
	flex-direction: column !important;
	padding: 30px 0 !important;
}

/* Ticker */
.ticker-wrap {
    background: var(--gradient-primary);
    padding: 10px 0;
    overflow: hidden;
    position: sticky;
		top: 0;
    z-index: 100;
}

.ticker {
    display: flex;
    animation: scroll 60s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    padding: 0 50px;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Header */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
    margin-top: 42px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 24px;
    color: var(--primary-color);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.nav a:hover,
.nav a.active {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}


/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 95px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 95px);
    background: var(--card-bg);
    z-index: 999;
    transition: left 0.3s ease;
    padding: 20px;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.mobile-nav ul li a:hover {
    background: rgba(255, 107, 53, 0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
}

.btn-tertiary {
    background: var(--gradient-purple);
    color: white;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-login:hover {
    background: var(--accent-color);
    color: white;
}

.btn-register {
    background: var(--gradient-primary);
    color: white;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.fab-btn span {
    position: absolute;
    right: 70px;
    background: var(--card-bg);
    padding: 10px 15px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
    font-size: 14px;
    font-weight: 600;
}

.fab-btn:hover span {
    opacity: 1;
    transform: translateX(0);
}

.fab-register {
    background: var(--gradient-primary);
    color: white;
}

.fab-play {
    background: var(--gradient-secondary);
    color: white;
}

.fab-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Pulse animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

/* Footer */
.footer {
    background: var(--card-bg);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 800;
    font-size: 24px;
    color: var(--primary-color);
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Page-specific hero styles */
.page-hero {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(78, 205, 196, 0.1)),
                radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.page-title .subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

/* Featured Story */
.featured-story {
    padding: 80px 0;
    background: var(--card-bg);
}

.story-card.mega {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.winner-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.winner-details {
    display: flex;
    gap: 20px;
    align-items: center;
}

.winner-details span {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.win-amount {
    margin-left: auto;
    text-align: right;
}

.win-amount .amount {
    font-size: 3rem;
    font-weight: 800;
    display: block;
}

.win-amount .label {
    font-size: 1rem;
    opacity: 0.8;
}

.story-meta {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.story-meta span {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Winner Stories Grid */
.winner-stories {
    padding: 80px 0;
    background: var(--dark-bg);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--green-color);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.story-card .story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.story-card .winner-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.winner-info h4 {
    margin-bottom: 5px;
    color: var(--text-primary);
}

.location {
    color: var(--text-secondary);
    font-size: 14px;
}

.win-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    color: white;
    font-size: 18px;
}

.win-badge.sweet-bonanza {
    background: var(--gradient-secondary);
}

.win-badge.crazy-time {
    background: var(--gradient-purple);
}

.win-badge.teen-patti {
    background: var(--gradient-gold);
}

.win-badge.wolf-gold {
    background: linear-gradient(135deg, #8B4513, #CD853F);
}

.win-amount-small {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.story-content p {
    color: white;
    line-height: 1.6;
    margin-bottom: 15px;
}

.story-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.story-meta span {
    background: var(--green-color);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Popular Games Ranking */
.popular-games {
    padding: 80px 0;
    background: var(--card-bg);
}

.games-ranking {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.game-rank-card {
    background: var(--dark-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition);
}

.game-rank-card.rank-1 {
    border-color: var(--gold-color);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.game-rank-card.rank-2 {
    border-color: #C0C0C0;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.05));
}

.game-rank-card.rank-3 {
    border-color: #CD7F32;
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(205, 127, 50, 0.05));
}

.rank-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: white;
}

.game-rank-card.rank-1 .rank-number {
    background: var(--gradient-gold);
    color: var(--dark-bg);
}

.game-image {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    margin: 20px auto;
    background: var(--gradient-primary);
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popularity-stats {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 15px 0;
}

.popularity-stats span {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Win Statistics */
.win-statistics {
    padding: 80px 0;
    background: var(--dark-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stat-change {
    font-size: 14px;
    color: var(--text-secondary);
}

.stat-change.positive {
    color: var(--green-color);
}

/* Share Story */
.share-story {
    padding: 80px 0;
    background: var(--card-bg);
}

.share-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.share-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit {
    text-align: center;
}

.benefit i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit h4 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.share-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-tertiary {
    background: var(--gradient-purple);
    color: white;
}

/* Winners Wall */
.winners-wall {
    padding: 80px 0;
    background: var(--dark-bg);
}

.wall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.wall-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.wall-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.wall-item.mega {
    border-left-color: var(--gold-color);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.winner-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.win-game {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

.win-amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold-color);
    margin-bottom: 5px;
}

.win-time {
    color: var(--text-secondary);
    font-size: 12px;
}

.wall-footer {
    text-align: center;
    padding: 40px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.btn-play-now {
    background: var(--gradient-primary);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    transition: var(--transition);
}

.btn-play-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .games-ranking {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .story-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .win-amount {
        margin-left: 0;
    }
    
    .story-meta {
        justify-content: center;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .wall-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-title .subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .story-card.mega {
        padding: 20px;
    }
    
    .win-amount .amount {
        font-size: 2rem;
    }
}