/* ========== HOME PAGE STYLES ========== */
:root {
    --bg-primary: #0a0c12;
    --bg-card: rgba(18, 22, 35, 0.85);
    --bg-card-hover: rgba(26, 31, 48, 0.95);
    --border-color: rgba(59, 130, 246, 0.25);
    --border-hover: #3b82f6;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --accent-yellow: #f59e0b;
    --accent-red: #ef4444;
    --confirmed-bg: rgba(16, 185, 129, 0.15);
    --confirmed-border: rgba(16, 185, 129, 0.4);
    --action-bg: rgba(59, 130, 246, 0.1);
    --action-hover: #3b82f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0f19;
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.5;
}

/* Main wrapper */
.dk-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

/* ========== TOP AD BANNER ========== */
.top-ad-banner {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 0 1.5rem;
    position: relative;
}

.ad-link {
    display: block;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.ad-link:hover {
    transform: scale(1.01);
}

.ad-image {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.ad-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Ad Banner */
.ad-banner {
    background: linear-gradient(90deg, #1e3a8a, #2563eb);
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.top-ad {
    background: #020617;
    border-bottom: 1px solid #1f2937;
}

/* ========== SPONSORSHIP SLIDER ========== */
.sponsorship-slider-container {
    max-width: 1400px;
    margin: 0 auto 2.5rem;
    padding: 0 1.5rem;
    position: relative;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.slider-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
}

.slider-controls {
    display: flex;
    gap: 0.5rem;
}

.slider-prev, .slider-next {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--accent-blue);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.slider-prev:hover, .slider-next:hover {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 1rem;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-slide {
    flex: 0 0 33.333%;
    padding: 0 0.5rem;
}

.slide-link {
    display: block;
    text-decoration: none;
    background: rgba(18, 22, 35, 0.6);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.slide-link:hover {
    transform: translateY(-3px);
    border-color: var(--accent-blue);
    background: rgba(26, 31, 48, 0.8);
}

.slide-image-wrapper {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.slide-link:hover .slide-image {
    transform: scale(1.05);
}

.slide-title {
    padding: 0.75rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.slider-dot.active {
    background: var(--accent-blue);
    width: 24px;
    border-radius: 4px;
}

.slider-dot:hover {
    background: var(--accent-blue);
}

/* Carousel */
.carousel img {
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.slider-box {
    height: 250px;
    background: linear-gradient(120deg, #1e3a8a, #2563eb);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    color: white;
    border-radius: 12px;
}

/* ========== SECTION STYLES ========== */
.dk-section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dk-heading {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-blue);
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Category badges */
.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-hot, .badge-latest, .badge-potential {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

.badge-hot {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-latest {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-potential {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* View all link */
.view-all-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    background: rgba(59, 130, 246, 0.1);
}

.view-all-link:hover {
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

/* Grid layout */
.dk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* ========== POST PAGE STYLES ========== */
.post-card {
    background-color: #111827;
    border-radius: 12px;
    color: white;
    padding: 1.5rem;
}

.sidebar-box {
    background-color: #111827;
    border-radius: 12px;
    padding: 1.5rem;
}

/* Steps Section (for post page) */
.steps-box {
    background-color: #0f172a;
    border-radius: 10px;
    padding: 1rem;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    margin-bottom: 10px;
    color: #d1d5db;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
}

.info-box {
    background: #0f172a;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
}

.info-box span {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 5px;
}

.info-box strong {
    font-size: 16px;
}

.disclaimer {
    background-color: #1f2937;
    color: #f87171;
    border-radius: 8px;
    font-size: 14px;
    padding: 1rem;
}

/* Related Cards */
.related-card {
    background-color: #111827;
    border: none;
    border-radius: 10px;
    color: #fff;
    transition: 0.3s;
    padding: 1rem;
}

.related-card:hover {
    transform: translateY(-4px);
}

.related-card img {
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

/* ========== DASHBOARD STYLES ========== */
.dashboard-box {
    background: #111827;
    border-radius: 12px;
    color: white;
    max-width: 600px;
    margin: auto;
    padding: 2rem;
}

/* ========== MODAL STYLES ========== */
.modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    backdrop-filter: blur(8px);
}

.modal-dialog {
    margin: auto !important;
}

/* ========== LOGO ========== */
.site-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* ========== CRYPTO TICKER STYLES ========== */
.crypto-ticker-wrapper {
    background: linear-gradient(135deg, #0a0c12 0%, #0f1119 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.crypto-ticker {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0.6rem 0;
}

.ticker-track {
    display: inline-flex;
    animation: tickerScroll 60s linear infinite;
    white-space: nowrap;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-item:last-child {
    border-right: none;
}

.ticker-coin {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.ticker-coin img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.ticker-symbol {
    color: #fff;
    font-weight: 600;
}

.ticker-price {
    color: #9ca3af;
    font-weight: 500;
}

.ticker-change {
    font-weight: 600;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.ticker-change.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.ticker-change.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.ticker-change.neutral {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.ticker-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
    color: #9ca3af;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========== EMPTY STATE ========== */
.empty-state {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1.5rem;
    color: var(--text-muted);
    border: 1px dashed rgba(59, 130, 246, 0.3);
    grid-column: 1 / -1;
}

.empty-state i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .dk-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .dk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-logo {
        height: 35px;
    }
    
    .ticker-item {
        padding: 0 1rem;
        font-size: 0.75rem;
    }
    
    .ticker-coin img {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 600px) {
    .dk-wrapper {
        padding: 1rem 1rem 2rem;
    }
    
    .dk-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-slide {
        flex: 0 0 100%;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .dk-heading {
        font-size: 1.25rem;
    }
}

/* ===== LEADERBOARD AD ===== 970x90 (*/
.top-ad-banner {
    width: 970px;
    height: 90px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 8px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== SIDEBAR AD ===== */
.sidebar-ad {
    width: 400px;
    height: 250px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 8px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== IMAGE FIX ===== */
.ad-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-box {
    position: relative;
    width: 100%;
    height: 100%;
}
/* ===== LINK ===== */
.ad-link {
    display: block;
    width: 100%;
    height: 100%;
}
/* ===== LABEL ===== */
.ad-label {
    position: absolute;
    bottom: 8px;
    right: 8px;

    background: rgba(0, 0, 0, 0.6);
    color: #fff;

    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;

    display: inline-block;
    width: auto;
    white-space: nowrap;

    z-index: 2;
}
/* ===== FALLBACK TEXT ===== */
.ad-fallback {
    color: #fff;
    font-size: 16px;
    text-align: center;
    padding: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .top-ad-banner {
        width: 100%;
        height: auto;
    }

    .sidebar-ad {
        width: 100%;
        height: auto;
    }
}
.contact-page {
    margin-top: 40px;
    color: #fff;
}

/* Header */
.contact-header h1 {
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-header p {
    color: #aaa;
}

/* Cards */
.contact-card,
.contact-info-card {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.1);
    margin-bottom: 20px;
}

/* Form */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: #1a1a1a;
    color: #fff;
}

/* Button */
.contact-btn {
    background: #0d6efd;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #0b5ed7;
}

/* Social */
.social-links {
    margin-top: 15px;
}

.social {
    display: block;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    background: #1a1a1a;
    transition: 0.3s;
}

.social:hover {
    background: #0d6efd;
}

.contact-extra {
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}
.form-group select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: #1a1a1a;
    color: #fff;
}
.success-msg {
    background: #198754;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    color: #fff;
}
/* Wrapper */
.password-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

/* Input */
.password-wrapper input {
    width: 100%;
    padding-right: 50px !important;
    position: relative;
    z-index: 1;

}

/* Toggle Button */
.toggle-password {
    position: absolute;
    right: 15px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #bbb;
    z-index: 999; /* force above everything */
    pointer-events: auto;
}

/* Hover */
.toggle-password:hover {
    color: #fff;
}

#strengthBar {
    height: 6px;
    width: 0%;
    background: red;
    border-radius: 5px;
    transition: 0.3s;
}

#passwordStrength small {
    color: #fff;
}
.valid {
    color: #00ff88 !important;
}

.invalid {
    color: #ff4d4d !important;
}
/* Full Screen Overlay */
.promo-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

/* Center Box */
.promo-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    background: #111;
    color: #fff;
    padding: 25px;
    width: 90%;
    max-width: 350px;
    border-radius: 12px;
    text-align: center;
}

/* Button */
.join-btn {
    display: block;
    margin-top: 15px;
    padding: 10px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

/* Mobile Optimization */
@media(max-width: 500px) {
    .promo-content {
        padding: 20px;
    }
}/* Script Ad Container */
.ad-script-wrapper {
    width: 100%;
    max-width: 400px; /* match sidebar */
    margin: 0 auto;

    overflow: hidden;
    border-radius: 8px;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Prevent script breaking layout */
.ad-script-wrapper ins {
    max-width: 100% !important;
    width: 100% !important;
    display: block !important;
}.top-ad-banner .ad-script-wrapper {
    max-width: 100%;
}
.social-sticky {
    position: fixed;
    top: 70%;
    right: 0;
    transform: translateY(-50%);
    z-index: 999;
}

/* Items */
.social-item {
    display: flex;
    align-items: center;

    width: 180px;
    height: 50px;

    margin: 8px 0;
    border-radius: 25px 0 0 25px;

    transform: translateX(130px); /* hidden state */
    transition: 0.4s;

    cursor: pointer;
}

/* Hover Slide */
.social-item:hover {
    transform: translateX(0);
}

/* Icon */
.social-item i {
    width: 50px;
    text-align: center;
    font-size: 20px;
    color: #fff;
}

/* Text */
.social-item span {
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
}

/* Brand Colors */
.whatsapp { background: #25D366; }
.telegram { background: #0088cc; }
.facebook { background: #1877F2; }
.twitter { background: #1DA1F2; }
.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

/* Toggle Button */
.social-toggle {
    background: #111;
    color: #fff;
    width: 40px;
    height: 40px;
    margin: 10px auto;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

/* Hidden State */
.social-sticky.hidden .social-item {
    transform: translateX(180px);
}
.dk-footer {
    background: #0b1220;
    color: #fff;
    margin-top: 40px;
    padding: 30px 20px 10px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    color: #aaa;
    margin-bottom: 5px;
    text-decoration: none;
}

.footer-col a:hover {
    color: #00ffcc;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 140px;
    margin-bottom: 8px;
}

.footer-tagline {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.8;
}
@media (max-width: 768px) {
    .footer-brand {
        align-items: center;
        text-align: center;
    }
}