/* Color Palette Variables */
:root {
    --core-black: #0b0c10;
    --panel-dark: #12171e;
    --card-surface: #1a222d;
    --neon-blue: #45f3ff;
    --text-white: #ffffff;
    --text-grey: #9aa8b6;
}

body {
    background-color: var(--core-black);
    color: var(--text-white);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
}

.winner-page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header Area styling */
.wp-header {
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.back-home-btn {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--text-grey);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 6px;
}

.back-home-btn:hover {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
}

.wp-badge {
    color: var(--neon-blue);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.wp-header h1 {
    font-size: 46px;
    font-weight: 800;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.wp-header h1 span {
    color: var(--neon-blue);
    text-shadow: 0 0 20px rgba(69, 243, 255, 0.4);
}

.wp-header p {
    color: var(--text-grey);
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Top Winner Layout box */
.latest-winner-section {
    background: var(--panel-dark);
    border: 1px solid rgba(69, 243, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.lw-glow-backdrop {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(69, 243, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.lw-badge-top {
    position: absolute;
    top: 0;
    left: 40px;
    background: var(--neon-blue);
    color: var(--core-black);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 0 0 8px 8px;
    letter-spacing: 1px;
}

.lw-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 15px;
}

.lw-avatar-box {
    position: relative;
    background: rgba(69, 243, 255, 0.03);
    border: 1px solid rgba(69, 243, 255, 0.2);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-ring {
    position: absolute;
    width: 122px;
    height: 122px;
    border: 1px dashed rgba(69, 243, 255, 0.4);
    border-radius: 50%;
    animation: rotateRing 20s linear infinite;
}

@keyframes rotateRing { 100% { transform: rotate(360deg); } }

.lw-avatar-box i {
    font-size: 45px;
    color: var(--neon-blue);
    filter: drop-shadow(0 0 10px rgba(69, 243, 255, 0.5));
}

.lw-details { flex: 1; }

.lw-date {
    font-size: 12px;
    color: var(--text-grey);
    display: block;
    margin-bottom: 5px;
}

.lw-details h2 {
    font-size: 30px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.lw-service {
    color: var(--text-grey);
    font-size: 14px;
    margin: 0 0 25px 0;
}

.lw-service i { color: var(--neon-blue); margin-right: 5px; }

/* Dynamic Highlight block inside featured container */
.lw-prize-won {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--neon-blue);
    padding: 15px 25px;
    border-radius: 0 12px 12px 0;
}

.prize-tag {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-grey);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.lw-prize-won h3 {
    margin: 0;
    font-size: 20px;
    color: var(--neon-blue);
    font-weight: 700;
}

.lw-prize-won h3 i { margin-right: 8px; }

/* Grid Wrapper layout architecture */
.hg-header { margin-bottom: 25px; }
.hg-header h3 { font-size: 20px; margin: 0 0 5px 0; font-weight: 700; }
.hg-header p { color: var(--text-grey); font-size: 12px; margin: 0; text-transform: uppercase; letter-spacing: 1px; }

.hg-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.hg-card {
    background: var(--card-surface);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hg-card:hover {
    border-color: rgba(69, 243, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.hg-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 12px;
}

.hg-month {
    color: var(--text-white);
    font-weight: bold;
    background: rgba(255,255,255,0.05);
    padding: 4px 10px;
    border-radius: 4px;
}

.hg-id { color: var(--text-grey); }

.hg-card h4 { font-size: 18px; margin: 0 0 5px 0; font-weight: 600; }
.hg-card .hg-service { color: var(--text-grey); font-size: 13px; margin: 0 0 20px 0; }

.hg-prize {
    color: var(--neon-blue);
    font-size: 14px;
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
}

.hg-prize i { margin-right: 6px; }

/* Bottom Security block footer */
.wp-footer {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  
}

.wp-footer p {
    color: var(--text-grey);
    font-size: 12px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.wp-footer i { color: var(--neon-blue); margin-right: 4px; }

/* Responsive break settings */
@media (max-width: 768px) {
    .lw-content-wrapper { flex-direction: column; text-align: center; gap: 20px; }
    .lw-prize-won { border-left: none; border-top: 3px solid var(--neon-blue); border-radius: 0 0 12px 12px; }
    .back-home-btn { position: relative; display: inline-block; margin-bottom: 20px; }
    .wp-header h1 { font-size: 34px; }
}






















/* Dynamic Video Container Block Frame */
.draw-video-container-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px auto;
    padding: 0 10px;
    max-width: 100%;
}

.video-sub-wrapper {
    width: 500px; /* Base container layout size default width track rules config */
    max-width: 100%;
    background: #12171e;
    border: 1px solid rgba(69, 243, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
}

.video-panel-header {
    text-align: center;
    margin-bottom: 15px;
}

.video-panel-header h3 {
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.video-panel-header h3 i {
    color: #45f3ff;
    margin-right: 6px;
}

.video-panel-header p {
    color: #9aa8b6;
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

/* Custom Responsive Player Box Logic Wrapper tracking */
.responsive-video-box {
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #000;
    line-height: 0; /* Clear inline whitespace layout parameters track box constraints gap */
    transition: border-color 0.3s ease;
}

.responsive-video-box:hover {
    border-color: #45f3ff;
    box-shadow: 0 0 15px rgba(69, 243, 255, 0.2);
}

.responsive-video-box video {
    width: 100%;
    height: auto; /* Scaled down standard structural resolution display rules configuration setup dynamic tracking */
    aspect-ratio: 16 / 9; /* Perfect wide screen scaling grid matrix configuration track parameter bounds bounds */
    display: block;
    outline: none;
}

/* Ultra responsive micro smartphone device scale rule query configuration tracking profiles */
@media (max-width: 520px) {
    .video-sub-wrapper {
        width: 100%; /* Dynamic elastic full container frame tracking path */
        padding: 15px;
    }
    .video-panel-header h3 {
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    .video-sub-wrapper {
        padding: 10px;
        border-radius: 12px;
    }
    .video-panel-header p {
        font-size: 11px;
    }
}















/* ---- Footer Styling ---- */
.main-footer {
    background-color: #050507; /* Extemely Dark Black */
    color: var(--text-white);
    padding: 70px 20px 25px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand h3, .footer-links h4, .footer-contact h4 {
    margin-bottom: 20px;
    color: var(--text-white);
    font-size: 20px;
    letter-spacing: 0.5px;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

/* ফুটার লিংকে হোভার করলে নিয়ন কালার হবে */
.footer-links ul li a:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 8px var(--neon-blue-glow);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    color: #525866;
    font-size: 14px;
}

/* ---- Responsive Design (Mobile Fix) ---- */
@media (max-width: 768px) {
    .location-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .map-responsive {
        height: 280px;
    }
}
/* ---- Neon Social Icons Styling (Footer-এর জন্য নতুন) ---- */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--primary-cyan);
    border-radius: 50%;
    color: var(--primary-cyan);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* সোশ্যাল আইকনে মাউস নিলে নিয়ন ব্লু গ্লো করবে */
.footer-socials a:hover {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    background-color: transparent;
    box-shadow: 0 0 15px var(--neon-blue-glow);
    transform: translateY(-3px);
}

/* কন্টাক্ট ইনফোর আইকনগুলোর জন্য গ্লো এফেক্ট */
.footer-contact p i {
    color: var(--neon-blue);
    margin-right: 10px;
    width: 20px;
    text-shadow: 0 0 5px var(--neon-blue-glow);
}









