* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #1a3a3a 100%);
    min-height: 100vh;
    color: #fff;
}

/* Header */
.header {
    background: #0d1117;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(90deg, #f97316, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.nav-link.active {
    background: linear-gradient(90deg, #ec4899, #f97316);
    color: #fff;
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, #ec4899, #f97316);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, #f472b6, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.stat-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px 32px;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #22d3ee;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

/* Telegram Banner */
.telegram-banner {
    max-width: 800px;
    margin: 30px auto;
    background: linear-gradient(90deg, #7c3aed, #ec4899);
    border-radius: 12px;
    padding: 16px 24px;
}

.telegram-banner.bottom {
    max-width: 800px;
    margin: 40px auto;
}

.telegram-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.telegram-content span {
    font-size: 14px;
    font-weight: 600;
}

.telegram-btn {
    background: #fff;
    color: #7c3aed;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s;
}

.telegram-btn:hover {
    transform: scale(1.05);
}

/* Blog Section */
.blog-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Blog Card */
.blog-card {
    background: #1c2333;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.card-image {
    position: relative;
    height: 160px;
    background: linear-gradient(135deg, #1a1a2e, #2d1f4e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.card-badge.popular {
    background: linear-gradient(90deg, #ec4899, #f97316);
}

.card-logo {
    position: absolute;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.card-logo.nimabet {
    color: #22d3ee;
}

.card-logo.betkanyon {
    background: linear-gradient(90deg, #f97316, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-logo.casitap {
    color: #10b981;
}

.card-logo.stake {
    color: #3b82f6;
}

.card-logo.misty {
    color: #a855f7;
}

.card-content {
    padding: 20px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tag {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.tag.blue {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.tag.pink {
    background: rgba(236, 72, 153, 0.2);
    color: #f472b6;
}

.tag.cyan {
    background: rgba(34, 211, 238, 0.2);
    color: #22d3ee;
}

.tag.green {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.card-btn {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, #ec4899, #f97316);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.3s;
}

.card-btn:hover {
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #0d1117;
    margin-top: 60px;
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: #22d3ee;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 8px;
}

.footer-links-list a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links-list a:hover {
    color: #22d3ee;
}

.footer-categories h4 {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-categories ul {
    list-style: none;
}

.footer-categories li {
    margin-bottom: 10px;
}

.footer-categories a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

.footer-categories a:hover {
    color: #22d3ee;
}

.footer-cta {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.footer-cta h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-cta p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(90deg, #22d3ee, #10b981);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 11px !important;
    color: rgba(255,255,255,0.4) !important;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
}
