:root {
    --bg-color: #050505;
    --primary-color: #ffcc00;
    /* Rich Gold */
    --secondary-color: #00d4ff;
    /* Electric Blue */
    --accent-color: #ff0055;
    /* Hot Pink */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --card-bg: #0f0f1a;
    --text-color: #f0f0f0;
    --muted-text: #a0a0a0;
    --success: #00ff88;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Outfit', system-ui, sans-serif;
}

body {
    background: radial-gradient(circle at top, #1a1a2e 0%, #050505 100%);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(15, 15, 26, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(to right, var(--primary-color), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

nav ul li a:hover {
    color: var(--secondary-color);
    opacity: 1;
    text-shadow: 0 0 10px var(--secondary-color);
}

/* Sections */
section {
    padding: 60px 0;
}

/* Live Result Section */
.live-section {
    padding-top: 40px;
    text-align: center;
}

.live-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.live-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, var(--secondary-color));
    animation: rotate 6s linear infinite;
    z-index: -1;
    opacity: 0.1;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.live-card h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.live-card h2::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.7);
    }

    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(255, 0, 85, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0);
    }
}

.live-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.live-numbers span {
    text-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
}

.refresh-btn {
    background: linear-gradient(90deg, var(--secondary-color), #00aaff);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.5);
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.result-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.result-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary-color);
    transform: translateY(-10px);
}

.market-name {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.market-nums span {
    padding: 5px 10px;
}

.market-nums .jodi {
    color: var(--primary-color);
    border-left: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
    margin: 0 5px;
}

/* SEO Content */
.seo-content {
    background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a15 100%);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    margin: 40px 0;
}

.seo-content h1,
.seo-content h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 36px;
    font-weight: 900;
}

.seo-content p {
    margin-bottom: 20px;
    color: var(--muted-text);
    font-size: 16px;
    line-height: 1.8;
}

.seo-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.seo-content li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    color: var(--muted-text);
}

.seo-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Footer */
footer {
    background: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--muted-text);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    color: var(--muted-text);
    font-size: 13px;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
}

@keyframes shuffleglow {
    0% {
        color: var(--secondary-color);
        text-shadow: 0 0 5px var(--secondary-color);
    }

    50% {
        color: #fff;
        text-shadow: 0 0 15px var(--secondary-color);
    }

    100% {
        color: var(--secondary-color);
        text-shadow: 0 0 5px var(--secondary-color);
    }
}

.shuffling {
    animation: shuffleglow 0.5s ease-in-out infinite;
}

@media (max-width: 768px) {
    .live-numbers {
        font-size: 40px;
    }

    .live-card {
        padding: 25px;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    nav ul li {
        margin: 0 10px;
    }
}

/* Related Keywords Styling */
.related-keywords {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.related-keywords p {
    font-size: 13px !important;
    color: var(--muted-text) !important;
    opacity: 0.6;
    font-style: italic;
    margin-bottom: 0 !important;
}

.related-keywords strong {
    color: var(--secondary-color);
    margin-right: 5px;
    font-style: normal;
}