/*==================================================
  SATTA KHEL V2
  components.css
  PART 1/10
==================================================*/

/*==================================================
  MARKET CARD
==================================================*/

.market-card{

    position:relative;

    width:100%;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:24px;

    overflow:hidden;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.market-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

    border-color:rgba(37,99,235,.25);

}

/*==================================================
 TOP BAR
==================================================*/

.market-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 24px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

}

.market-name{

    color:#FFFFFF;

    font-size:22px;

    font-weight:700;

}

.market-status{

    display:flex;

    align-items:center;

    gap:8px;

    padding:8px 14px;

    border-radius:999px;

    background:rgba(255,255,255,.18);

    color:#FFFFFF;

    font-size:13px;

    font-weight:600;

}

.market-status::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:#22C55E;

}

/*==================================================
 BODY
==================================================*/

.market-body{

    padding:30px;

}

/*==================================================
 TODAY RESULT
==================================================*/

.market-result{

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.market-number{

    font-size:64px;

    font-weight:800;

    line-height:1;

    color:var(--secondary);

}

/*==================================================
 RESULT INFO
==================================================*/

.market-info{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:30px;

}

.market-box{

    padding:18px;

    border-radius:18px;

    background:#F8FAFC;

    text-align:center;

}

.market-box span{

    display:block;

    font-size:13px;

    color:var(--text-muted);

    margin-bottom:8px;

}

.market-box strong{

    display:block;

    font-size:22px;

    color:var(--primary);

}

/*==================================================
 FOOTER
==================================================*/

.market-footer{

    display:flex;

    gap:15px;

}

.market-footer .btn{

    flex:1;

}

/*==================================================
 LIVE BADGE
==================================================*/

.live-badge{

    position:absolute;

    top:18px;

    right:18px;

    display:flex;

    align-items:center;

    gap:8px;

    padding:8px 14px;

    background:#22C55E;

    color:#FFFFFF;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    box-shadow:0 10px 25px rgba(34,197,94,.30);

}

.live-badge::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:#FFFFFF;

    animation:livePulse 1.5s infinite;

}

@keyframes livePulse{

    0%{

        transform:scale(1);

        opacity:1;

    }

    70%{

        transform:scale(2);

        opacity:0;

    }

    100%{

        transform:scale(1);

        opacity:1;

    }

}

/*==================================================
 FEATURED CARD
==================================================*/

.market-featured{

    border:2px solid var(--secondary);

}

.market-featured::after{

    content:"POPULAR";

    position:absolute;

    left:-35px;

    top:22px;

    width:150px;

    text-align:center;

    background:var(--secondary);

    color:#FFFFFF;

    font-size:12px;

    font-weight:700;

    transform:rotate(-45deg);

    padding:6px 0;

}

/*==================================================
 END OF PART 1
==================================================*/
/*==================================================
  RESULT WIDGETS
==================================================*/

.result-widget{

    position:relative;

    width:100%;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.result-widget:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.result-widget-header{

    padding:22px 28px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#FFFFFF;

}

.result-widget-header h3{

    margin:0;

    color:#FFFFFF;

    font-size:24px;

}

.result-widget-header p{

    margin-top:8px;

    color:rgba(255,255,255,.80);

    font-size:14px;

}

.result-widget-body{

    padding:35px;

}

/*==================================================
 TODAY RESULT
==================================================*/

.today-result{

    text-align:center;

}

.today-result-number{

    font-size:88px;

    font-weight:800;

    color:var(--secondary);

    line-height:1;

    margin-bottom:20px;

}

.today-result-label{

    font-size:16px;

    color:var(--text-muted);

}

.today-result-date{

    margin-top:18px;

    font-size:15px;

    color:var(--text-light);

}

/*==================================================
 YESTERDAY RESULT
==================================================*/

.yesterday-result{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px;

    margin-top:28px;

    border-radius:20px;

    background:#F8FAFC;

}

.yesterday-left{

    display:flex;

    flex-direction:column;

}

.yesterday-title{

    font-size:14px;

    color:var(--text-muted);

    margin-bottom:6px;

}

.yesterday-number{

    font-size:36px;

    font-weight:800;

    color:var(--primary);

}

.yesterday-date{

    color:var(--text-muted);

    font-size:14px;

}

/*==================================================
 RESULT TIMER
==================================================*/

.result-timer{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-top:35px;

}

.timer-box{

    width:75px;

    height:85px;

    border-radius:18px;

    background:#EFF6FF;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

}

.timer-value{

    font-size:28px;

    font-weight:800;

    color:var(--secondary);

}

.timer-label{

    margin-top:6px;

    font-size:12px;

    color:var(--text-muted);

    text-transform:uppercase;

}

/*==================================================
 RESULT STATUS
==================================================*/

.result-status-bar{

    margin-top:30px;

    display:flex;

    justify-content:center;

}

.status-live{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    border-radius:999px;

    background:#ECFDF5;

    color:#16A34A;

    font-size:14px;

    font-weight:700;

}

.status-live::before{

    content:"";

    width:10px;

    height:10px;

    border-radius:50%;

    background:#22C55E;

    animation:liveDot 1.4s infinite;

}

@keyframes liveDot{

    0%{

        transform:scale(1);

        opacity:1;

    }

    70%{

        transform:scale(2);

        opacity:0;

    }

    100%{

        transform:scale(1);

        opacity:1;

    }

}

/*==================================================
 QUICK ACTIONS
==================================================*/

.result-actions{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.result-actions .btn{

    flex:1;

}

/*==================================================
 RESULT HISTORY STRIP
==================================================*/

.result-history{

    margin-top:30px;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:12px;

}

.history-item{

    background:#F8FAFC;

    border-radius:16px;

    padding:16px 10px;

    text-align:center;

    transition:.30s;

}

.history-item:hover{

    background:#EFF6FF;

}

.history-day{

    font-size:13px;

    color:var(--text-muted);

    margin-bottom:8px;

}

.history-number{

    font-size:24px;

    font-weight:800;

    color:var(--secondary);

}

/*==================================================
 RESULT UPDATE INFO
==================================================*/

.result-update{

    margin-top:24px;

    text-align:center;

    font-size:14px;

    color:var(--text-muted);

}

.result-update strong{

    color:var(--secondary);

}

/*==================================================
 END OF PART 2
==================================================*/
/*==================================================
  MONTHLY CHART COMPONENTS
==================================================*/

.chart-card{

    position:relative;

    width:100%;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:24px;

    overflow:hidden;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.chart-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.chart-card-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 28px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

}

.chart-card-header h3{

    margin:0;

    color:#FFFFFF;

    font-size:22px;

}

.chart-year{

    padding:8px 16px;

    border-radius:999px;

    background:rgba(255,255,255,.15);

    color:#FFFFFF;

    font-size:13px;

    font-weight:700;

}

.chart-card-body{

    padding:28px;

}

/*==================================================
 MONTH GRID
==================================================*/

.chart-month-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

}

.chart-month{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    min-height:95px;

    background:#F8FAFC;

    border:1px solid var(--border);

    border-radius:18px;

    transition:.30s;

}

.chart-month:hover{

    transform:translateY(-4px);

    background:#EFF6FF;

    border-color:var(--secondary);

}

.chart-month-name{

    font-size:14px;

    color:var(--text-muted);

    margin-bottom:10px;

}

.chart-month-number{

    font-size:30px;

    font-weight:800;

    color:var(--secondary);

}

/*==================================================
 YEAR CARD
==================================================*/

.year-card{

    position:relative;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    padding:35px;

    background:#FFFFFF;

    border-radius:24px;

    border:1px solid var(--border);

    transition:.35s;

}

.year-card:hover{

    transform:translateY(-8px);

    border-color:var(--secondary);

    box-shadow:var(--shadow-lg);

}

.year-card h3{

    font-size:42px;

    margin-bottom:14px;

    color:var(--secondary);

}

.year-card span{

    color:var(--text-muted);

}

.year-card .btn{

    margin-top:25px;

}

/*==================================================
 ARCHIVE CARD
==================================================*/

.archive-card{

    position:relative;

    background:#FFFFFF;

    border-radius:22px;

    border:1px solid var(--border);

    overflow:hidden;

    transition:.35s;

}

.archive-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-md);

}

.archive-header{

    padding:20px;

    background:linear-gradient(
        135deg,
        #0B1F3A,
        #2563EB
    );

    color:#FFFFFF;

}

.archive-header h4{

    margin:0;

    color:#FFFFFF;

}

.archive-body{

    padding:24px;

}

.archive-body ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.archive-body li{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.archive-body a{

    color:var(--primary);

    font-weight:600;

    transition:.30s;

}

.archive-body a:hover{

    color:var(--secondary);

}

.archive-count{

    display:flex;

    justify-content:center;

    align-items:center;

    min-width:36px;

    height:36px;

    border-radius:999px;

    background:#EFF6FF;

    color:var(--secondary);

    font-size:13px;

    font-weight:700;

}

/*==================================================
 FEATURED CHART
==================================================*/

.featured-chart{

    border:2px solid var(--secondary);

}

.featured-chart::before{

    content:"TRENDING";

    position:absolute;

    top:20px;

    right:-42px;

    width:160px;

    padding:7px 0;

    text-align:center;

    background:var(--accent);

    color:#FFFFFF;

    font-size:12px;

    font-weight:700;

    transform:rotate(45deg);

}

/*==================================================
 QUICK MONTH NAVIGATION
==================================================*/

.month-navigation{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:25px;

}

.month-navigation a{

    padding:10px 18px;

    border-radius:999px;

    background:#F8FAFC;

    border:1px solid var(--border);

    color:var(--primary);

    transition:.30s;

}

.month-navigation a:hover{

    background:var(--secondary);

    color:#FFFFFF;

    border-color:var(--secondary);

}

/*==================================================
 HOVER GLOW
==================================================*/

.glow-hover{

    transition:.35s;

}

.glow-hover:hover{

    box-shadow:0 0 35px rgba(37,99,235,.20);

}

/*==================================================
 END OF PART 3
==================================================*/
/*==================================================
  BLOG COMPONENTS
==================================================*/

.blog-card{

    position:relative;

    width:100%;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:24px;

    overflow:hidden;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.blog-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

/*==================================================
 BLOG IMAGE
==================================================*/

.blog-image{

    position:relative;

    width:100%;

    height:260px;

    overflow:hidden;

}

.blog-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.blog-card:hover .blog-image img{

    transform:scale(1.08);

}

.blog-category{

    position:absolute;

    top:20px;

    left:20px;

    padding:8px 16px;

    border-radius:999px;

    background:var(--secondary);

    color:#FFFFFF;

    font-size:13px;

    font-weight:700;

}

/*==================================================
 BLOG BODY
==================================================*/

.blog-body{

    padding:30px;

}

.blog-meta{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:18px;

    font-size:14px;

    color:var(--text-muted);

}

.blog-meta span{

    display:flex;

    align-items:center;

    gap:8px;

}

.blog-title{

    font-size:28px;

    line-height:1.4;

    margin-bottom:16px;

}

.blog-title a{

    color:var(--primary);

    transition:.30s;

}

.blog-title a:hover{

    color:var(--secondary);

}

.blog-excerpt{

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:28px;

}

/*==================================================
 READ MORE
==================================================*/

.read-more{

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-weight:700;

    color:var(--secondary);

    transition:.30s;

}

.read-more:hover{

    gap:16px;

}

/*==================================================
 FEATURED BLOG
==================================================*/

.blog-featured{

    border:2px solid var(--secondary);

}

.blog-featured::before{

    content:"FEATURED";

    position:absolute;

    top:22px;

    right:-44px;

    width:170px;

    text-align:center;

    background:var(--accent);

    color:#FFFFFF;

    padding:8px 0;

    font-size:12px;

    font-weight:700;

    transform:rotate(45deg);

    z-index:10;

}

/*==================================================
 AUTHOR CARD
==================================================*/

.author-card{

    display:flex;

    align-items:center;

    gap:24px;

    padding:30px;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:24px;

    box-shadow:var(--shadow-sm);

}

.author-image{

    width:90px;

    height:90px;

    border-radius:50%;

    overflow:hidden;

    flex-shrink:0;

}

.author-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.author-details{

    flex:1;

}

.author-name{

    font-size:24px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:8px;

}

.author-role{

    color:var(--secondary);

    font-weight:600;

    margin-bottom:12px;

}

.author-bio{

    color:var(--text-light);

    line-height:1.8;

}

.author-social{

    display:flex;

    gap:14px;

    margin-top:20px;

}

.author-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#EFF6FF;

    color:var(--secondary);

    transition:.30s;

}

.author-social a:hover{

    background:var(--secondary);

    color:#FFFFFF;

}

/*==================================================
 CATEGORY CARD
==================================================*/

.category-card{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 22px;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:18px;

    transition:.30s;

}

.category-card:hover{

    transform:translateX(6px);

    border-color:var(--secondary);

}

.category-name{

    font-weight:600;

    color:var(--primary);

}

.category-count{

    min-width:38px;

    height:38px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:999px;

    background:#EFF6FF;

    color:var(--secondary);

    font-size:13px;

    font-weight:700;

}

/*==================================================
 TAGS
==================================================*/

.tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.tags a{

    padding:10px 18px;

    border-radius:999px;

    background:#F8FAFC;

    border:1px solid var(--border);

    color:var(--primary);

    transition:.30s;

}

.tags a:hover{

    background:var(--secondary);

    border-color:var(--secondary);

    color:#FFFFFF;

}

/*==================================================
 RELATED POSTS
==================================================*/

.related-posts{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:40px;

}

.related-card{

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:20px;

    overflow:hidden;

    transition:.30s;

}

.related-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-md);

}

.related-image{

    height:180px;

    overflow:hidden;

}

.related-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.related-body{

    padding:22px;

}

.related-body h4{

    font-size:20px;

    margin-bottom:12px;

}

.related-body p{

    margin-bottom:18px;

}

/*==================================================
 END OF PART 4
==================================================*/
/*==================================================
  FAQ COMPONENT
==================================================*/

.faq-card{

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:22px;

    overflow:hidden;

    margin-bottom:20px;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.faq-card:hover{

    box-shadow:var(--shadow-md);

}

.faq-question{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 30px;

    cursor:pointer;

    user-select:none;

}

.faq-question h3{

    margin:0;

    font-size:20px;

    color:var(--primary);

    font-weight:700;

}

.faq-icon{

    width:42px;

    height:42px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#EFF6FF;

    color:var(--secondary);

    font-size:22px;

    transition:.30s;

}

.faq-card.active .faq-icon{

    transform:rotate(45deg);

    background:var(--secondary);

    color:#FFFFFF;

}

.faq-answer{

    display:none;

    padding:0 30px 30px;

}

.faq-card.active .faq-answer{

    display:block;

}

.faq-answer p{

    margin:0;

    color:var(--text-light);

    line-height:1.9;

}

/*==================================================
  ACCORDION
==================================================*/

.accordion{

    width:100%;

}

.accordion-item{

    border:1px solid var(--border);

    border-radius:20px;

    overflow:hidden;

    margin-bottom:20px;

    background:#FFFFFF;

}

.accordion-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 28px;

    cursor:pointer;

}

.accordion-title{

    font-size:19px;

    font-weight:700;

    color:var(--primary);

}

.accordion-body{

    display:none;

    padding:0 28px 28px;

}

.accordion-item.active .accordion-body{

    display:block;

}

/*==================================================
  TIMELINE
==================================================*/

.timeline{

    position:relative;

    margin:40px 0;

    padding-left:45px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:14px;

    top:0;

    bottom:0;

    width:3px;

    background:#E2E8F0;

}

.timeline-item{

    position:relative;

    margin-bottom:40px;

}

.timeline-item:last-child{

    margin-bottom:0;

}

.timeline-dot{

    position:absolute;

    left:-38px;

    top:5px;

    width:18px;

    height:18px;

    border-radius:50%;

    background:var(--secondary);

    border:4px solid #FFFFFF;

    box-shadow:0 0 0 3px #E2E8F0;

}

.timeline-content{

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:20px;

    padding:24px;

    box-shadow:var(--shadow-sm);

}

.timeline-date{

    color:var(--secondary);

    font-weight:700;

    margin-bottom:10px;

}

.timeline-title{

    font-size:22px;

    margin-bottom:12px;

}

.timeline-text{

    color:var(--text-light);

}

/*==================================================
  NOTICE BOX
==================================================*/

.notice{

    display:flex;

    gap:20px;

    align-items:flex-start;

    padding:24px;

    border-radius:20px;

    margin-bottom:25px;

}

.notice-icon{

    width:55px;

    height:55px;

    flex-shrink:0;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:16px;

    font-size:24px;

}

.notice-primary{

    background:#EFF6FF;

}

.notice-primary .notice-icon{

    background:var(--secondary);

    color:#FFFFFF;

}

.notice-success{

    background:#ECFDF5;

}

.notice-success .notice-icon{

    background:var(--accent);

    color:#FFFFFF;

}

.notice-warning{

    background:#FFF7ED;

}

.notice-warning .notice-icon{

    background:#F59E0B;

    color:#FFFFFF;

}

.notice-danger{

    background:#FEF2F2;

}

.notice-danger .notice-icon{

    background:#DC2626;

    color:#FFFFFF;

}

.notice-content{

    flex:1;

}

.notice-content h4{

    margin-bottom:10px;

    color:var(--primary);

}

.notice-content p{

    margin:0;

}

/*==================================================
  INFO CARD
==================================================*/

.info-card{

    padding:32px;

    background:#FFFFFF;

    border-radius:24px;

    border:1px solid var(--border);

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.info-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-lg);

}

.info-icon{

    width:75px;

    height:75px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:20px;

    background:#EFF6FF;

    color:var(--secondary);

    font-size:32px;

    margin-bottom:24px;

}

.info-card h3{

    margin-bottom:16px;

}

.info-card p{

    margin-bottom:0;

}

/*==================================================
  FEATURE LIST
==================================================*/

.feature-list{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-top:25px;

}

.feature-list li{

    display:flex;

    align-items:center;

    gap:14px;

}

.feature-list li::before{

    content:"✓";

    width:28px;

    height:28px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:var(--accent);

    color:#FFFFFF;

    font-size:14px;

    font-weight:700;

    flex-shrink:0;

}

/*==================================================
  END OF PART 5
==================================================*/
/*==================================================
  PREMIUM TABLE COMPONENTS
==================================================*/

.table-card{

    width:100%;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

}

.table-card-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 30px;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

}

.table-card-header h3{

    margin:0;

    color:#FFFFFF;

    font-size:24px;

}

.table-card-body{

    overflow-x:auto;

}

.premium-table{

    width:100%;

    min-width:900px;

    border-collapse:collapse;

}

.premium-table thead th{

    background:#0F172A;

    color:#FFFFFF;

    padding:18px;

    text-align:center;

    font-size:15px;

    font-weight:700;

    white-space:nowrap;

}

.premium-table tbody td{

    padding:18px;

    text-align:center;

    border-bottom:1px solid var(--border);

    transition:.30s;

}

.premium-table tbody tr:hover{

    background:#F8FAFC;

}

.premium-table tbody tr:last-child td{

    border-bottom:none;

}

/*==================================================
  MARKET TIMING WIDGET
==================================================*/

.market-timing{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.market-time-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:18px;

    transition:.30s;

}

.market-time-item:hover{

    transform:translateX(5px);

    border-color:var(--secondary);

}

.market-time-name{

    font-size:18px;

    font-weight:700;

    color:var(--primary);

}

.market-time-value{

    padding:8px 16px;

    border-radius:999px;

    background:#EFF6FF;

    color:var(--secondary);

    font-weight:700;

}

/*==================================================
  STATISTICS CARD
==================================================*/

.stats-widget{

    background:#FFFFFF;

    border-radius:24px;

    border:1px solid var(--border);

    padding:30px;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.stats-widget:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-lg);

}

.stats-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:24px;

}

.stats-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#EFF6FF;

    color:var(--secondary);

    font-size:30px;

}

.stats-value{

    font-size:48px;

    font-weight:800;

    color:var(--secondary);

    line-height:1;

    margin-bottom:10px;

}

.stats-label{

    color:var(--text-muted);

    font-size:16px;

}

/*==================================================
  COUNTER BOX
==================================================*/

.counter-box{

    text-align:center;

    padding:35px;

    background:#FFFFFF;

    border-radius:24px;

    border:1px solid var(--border);

}

.counter-number{

    font-size:54px;

    font-weight:800;

    color:var(--secondary);

    margin-bottom:12px;

}

.counter-title{

    font-size:18px;

    color:var(--text);

}

/*==================================================
  DASHBOARD WIDGET
==================================================*/

.dashboard-widget{

    background:#FFFFFF;

    border-radius:24px;

    border:1px solid var(--border);

    overflow:hidden;

    box-shadow:var(--shadow-sm);

}

.dashboard-header{

    padding:22px 28px;

    background:#F8FAFC;

    border-bottom:1px solid var(--border);

}

.dashboard-header h4{

    margin:0;

    color:var(--primary);

}

.dashboard-body{

    padding:28px;

}

.dashboard-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.dashboard-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-bottom:18px;

    border-bottom:1px solid var(--border);

}

.dashboard-item:last-child{

    border-bottom:none;

    padding-bottom:0;

}

.dashboard-title{

    color:var(--primary);

    font-weight:600;

}

.dashboard-value{

    font-weight:800;

    color:var(--secondary);

}

/*==================================================
  RESULT PROGRESS
==================================================*/

.progress-widget{

    margin-top:25px;

}

.progress-title{

    display:flex;

    justify-content:space-between;

    margin-bottom:10px;

    font-weight:600;

}

.progress-bar{

    width:100%;

    height:10px;

    border-radius:999px;

    background:#E2E8F0;

    overflow:hidden;

}

.progress-fill{

    height:100%;

    background:linear-gradient(
        90deg,
        var(--secondary),
        var(--accent)
    );

    border-radius:999px;

}

/*==================================================
  MINI STAT
==================================================*/

.mini-stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:25px;

}

.mini-stat{

    padding:20px;

    background:#F8FAFC;

    border-radius:18px;

    text-align:center;

}

.mini-stat strong{

    display:block;

    font-size:26px;

    color:var(--secondary);

    margin-bottom:6px;

}

.mini-stat span{

    color:var(--text-muted);

    font-size:14px;

}

/*==================================================
  END OF PART 6
==================================================*/
/*==================================================
  PAGE HEADER
==================================================*/

.page-header{

    position:relative;

    width:100%;

    padding:70px 0;

    background:linear-gradient(135deg,#08162B,#0B1F3A,#2563EB);

    overflow:hidden;

}

.page-header::before{

    content:"";

    position:absolute;

    inset:0;

    background:radial-gradient(circle at top right,
        rgba(255,255,255,.08),
        transparent 45%);

}

.page-header-content{

    position:relative;

    z-index:2;

}

.page-header h1{

    color:#FFFFFF;

    font-size:52px;

    font-weight:800;

    margin-bottom:18px;

}

.page-header p{

    max-width:760px;

    color:rgba(255,255,255,.80);

}

/*==================================================
  BREADCRUMB
==================================================*/

.breadcrumb{

    display:flex;

    flex-wrap:wrap;

    align-items:center;

    gap:10px;

    margin-top:20px;

}

.breadcrumb a{

    color:#BFDBFE;

    font-weight:600;

    transition:.30s;

}

.breadcrumb a:hover{

    color:#FFFFFF;

}

.breadcrumb span{

    color:rgba(255,255,255,.65);

}

/*==================================================
  PAGINATION
==================================================*/

.pagination{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:14px;

    margin-top:50px;

}

.page-item{

    width:50px;

    height:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:16px;

    border:1px solid var(--border);

    background:#FFFFFF;

    color:var(--primary);

    font-weight:700;

    transition:.30s;

}

.page-item:hover{

    background:var(--secondary);

    color:#FFFFFF;

    border-color:var(--secondary);

}

.page-item.active{

    background:var(--secondary);

    color:#FFFFFF;

}

/*==================================================
  MARKET NAVIGATION
==================================================*/

.market-navigation{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin:40px 0;

}

.market-navigation a{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:14px 22px;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:999px;

    color:var(--primary);

    font-weight:600;

    transition:.30s;

}

.market-navigation a:hover,

.market-navigation a.active{

    background:var(--secondary);

    color:#FFFFFF;

    border-color:var(--secondary);

}

/*==================================================
  YEAR NAVIGATION
==================================================*/

.year-navigation{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:35px;

}

.year-navigation a{

    width:80px;

    height:46px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:14px;

    color:var(--primary);

    font-weight:700;

    transition:.30s;

}

.year-navigation a:hover,

.year-navigation a.active{

    background:var(--primary);

    color:#FFFFFF;

}

/*==================================================
  FILTER BAR
==================================================*/

.filter-bar{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    align-items:center;

    margin-bottom:40px;

    padding:22px;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:20px;

}

.filter-group{

    flex:1;

    min-width:220px;

}

.filter-label{

    display:block;

    margin-bottom:8px;

    font-size:14px;

    font-weight:600;

    color:var(--primary);

}

/*==================================================
  SEARCH BAR
==================================================*/

.search-widget{

    position:relative;

    width:100%;

}

.search-widget input{

    width:100%;

    height:58px;

    padding:0 60px 0 22px;

    border:1px solid var(--border);

    border-radius:999px;

    background:#FFFFFF;

}

.search-widget button{

    position:absolute;

    right:8px;

    top:8px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:var(--secondary);

    color:#FFFFFF;

    cursor:pointer;

    transition:.30s;

}

.search-widget button:hover{

    background:var(--primary);

}

/*==================================================
  TABS
==================================================*/

.tabs{

    display:flex;

    flex-wrap:wrap;

    gap:16px;

    margin-bottom:35px;

}

.tab-button{

    padding:14px 26px;

    border-radius:999px;

    border:1px solid var(--border);

    background:#FFFFFF;

    color:var(--primary);

    font-weight:700;

    cursor:pointer;

    transition:.30s;

}

.tab-button:hover,

.tab-button.active{

    background:var(--secondary);

    color:#FFFFFF;

    border-color:var(--secondary);

}

/*==================================================
  QUICK MARKET LINKS
==================================================*/

.quick-market-links{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(170px,1fr));

    gap:18px;

}

.quick-market-links a{

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:60px;

    border-radius:18px;

    background:#FFFFFF;

    border:1px solid var(--border);

    color:var(--primary);

    font-weight:700;

    transition:.30s;

}

.quick-market-links a:hover{

    background:var(--secondary);

    color:#FFFFFF;

    transform:translateY(-4px);

}

/*==================================================
  STICKY ACTION BAR
==================================================*/

.sticky-actions{

    position:sticky;

    top:90px;

    display:flex;

    gap:15px;

    padding:18px;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:18px;

    box-shadow:var(--shadow-sm);

    z-index:100;

}

/*==================================================
  END OF PART 7
==================================================*/
/*==================================================
  FOOTER COMPONENTS
==================================================*/

.footer-widget{

    margin-bottom:35px;

}

.footer-widget-title{

    font-size:22px;

    font-weight:700;

    color:#FFFFFF;

    margin-bottom:22px;

}

.footer-widget-text{

    color:rgba(255,255,255,.72);

    line-height:1.9;

}

.footer-menu{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-menu li{

    list-style:none;

}

.footer-menu a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:rgba(255,255,255,.72);

    transition:.30s;

}

.footer-menu a:hover{

    color:#60A5FA;

    transform:translateX(6px);

}

.footer-menu a::before{

    content:"›";

    font-size:18px;

    font-weight:700;

}

/*==================================================
  SOCIAL ICONS
==================================================*/

.social-list{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

}

.social-item{

    width:50px;

    height:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#FFFFFF;

    transition:.35s;

}

.social-item:hover{

    transform:translateY(-6px);

    background:var(--secondary);

    box-shadow:0 15px 30px rgba(37,99,235,.30);

}

.social-item svg{

    width:20px;

    height:20px;

    fill:currentColor;

}

/*==================================================
  SHARE BUTTONS
==================================================*/

.share-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.share-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 18px;

    border-radius:999px;

    background:#FFFFFF;

    border:1px solid var(--border);

    color:var(--primary);

    font-weight:600;

    transition:.30s;

}

.share-btn:hover{

    background:var(--secondary);

    color:#FFFFFF;

    border-color:var(--secondary);

}

.share-btn svg{

    width:18px;

    height:18px;

    fill:currentColor;

}

/*==================================================
  FLOATING WHATSAPP
==================================================*/

.whatsapp-widget{

    position:fixed;

    right:25px;

    bottom:25px;

    display:flex;

    align-items:center;

    gap:14px;

    z-index:99999;

}

.whatsapp-popup{

    width:300px;

    background:#FFFFFF;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

    border:1px solid var(--border);

}

.whatsapp-header{

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px 20px;

    background:#25D366;

    color:#FFFFFF;

}

.whatsapp-avatar{

    width:46px;

    height:46px;

    border-radius:50%;

    background:rgba(255,255,255,.20);

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

}

.whatsapp-info strong{

    display:block;

    font-size:16px;

}

.whatsapp-status{

    display:flex;

    align-items:center;

    gap:8px;

    font-size:13px;

}

.whatsapp-status::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:#FFFFFF;

}

.whatsapp-body{

    padding:20px;

}

.typing{

    display:flex;

    gap:6px;

    margin-top:12px;

}

.typing span{

    width:8px;

    height:8px;

    border-radius:50%;

    background:#94A3B8;

    animation:typingBounce 1.4s infinite;

}

.typing span:nth-child(2){

    animation-delay:.2s;

}

.typing span:nth-child(3){

    animation-delay:.4s;

}

@keyframes typingBounce{

    0%,80%,100%{

        transform:translateY(0);

    }

    40%{

        transform:translateY(-5px);

    }

}

.whatsapp-button{

    width:64px;

    height:64px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#25D366;

    color:#FFFFFF;

    box-shadow:0 20px 40px rgba(37,211,102,.35);

    transition:.35s;

}

.whatsapp-button:hover{

    transform:scale(1.08);

}

.whatsapp-button svg{

    width:34px;

    height:34px;

    fill:currentColor;

}

/*==================================================
  BACK TO TOP
==================================================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:105px;

    width:56px;

    height:56px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    background:var(--secondary);

    color:#FFFFFF;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99998;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    background:var(--primary);

    transform:translateY(-5px);

}

/*==================================================
  NOTIFICATION COMPONENT
==================================================*/

.notification{

    position:fixed;

    top:95px;

    right:25px;

    width:360px;

    display:flex;

    gap:16px;

    padding:18px;

    background:#FFFFFF;

    border-radius:20px;

    border-left:5px solid var(--secondary);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

    z-index:99999;

}

.notification-icon{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:14px;

    background:#EFF6FF;

    color:var(--secondary);

    flex-shrink:0;

}

.notification-content{

    flex:1;

}

.notification-content h4{

    margin-bottom:6px;

    color:var(--primary);

    font-size:17px;

}

.notification-content p{

    margin:0;

    color:var(--text-light);

    font-size:14px;

}

/*==================================================
  ONLINE BADGE
==================================================*/

.online-indicator{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:var(--accent);

    font-weight:700;

    font-size:14px;

}

.online-indicator::before{

    content:"";

    width:10px;

    height:10px;

    border-radius:50%;

    background:var(--accent);

    animation:onlinePulse 1.5s infinite;

}

@keyframes onlinePulse{

    0%{

        transform:scale(1);

        opacity:1;

    }

    70%{

        transform:scale(2);

        opacity:0;

    }

    100%{

        transform:scale(1);

        opacity:1;

    }

}

/*==================================================
  END OF PART 8
==================================================*/
/*==================================================
  LOGIN COMPONENT
==================================================*/

.login-wrapper{

    width:100%;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:50px 20px;

    background:linear-gradient(135deg,#08162B,#0B1F3A,#2563EB);

}

.login-card{

    width:100%;

    max-width:460px;

    background:#FFFFFF;

    border-radius:28px;

    padding:40px;

    box-shadow:0 35px 80px rgba(0,0,0,.18);

}

.login-logo{

    text-align:center;

    margin-bottom:35px;

}

.login-logo img{

    width:80px;

    margin:0 auto 15px;

}

.login-logo h2{

    margin:0;

    color:var(--primary);

}

.login-footer{

    margin-top:30px;

    text-align:center;

    color:var(--text-muted);

}

/*==================================================
  SEARCH OVERLAY
==================================================*/

.search-overlay{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:flex-start;

    padding-top:80px;

    background:rgba(2,6,23,.80);

    backdrop-filter:blur(10px);

    z-index:999999;

}

.search-overlay.active{

    display:flex;

}

.search-overlay-box{

    width:min(850px,95%);

    background:#FFFFFF;

    border-radius:24px;

    padding:30px;

    box-shadow:0 25px 70px rgba(0,0,0,.20);

}

.search-overlay input{

    width:100%;

    height:64px;

    padding:0 24px;

    border:1px solid var(--border);

    border-radius:16px;

    font-size:18px;

}

.search-overlay-results{

    margin-top:25px;

    max-height:450px;

    overflow-y:auto;

}

/*==================================================
  SKELETON LOADER
==================================================*/

.skeleton-card{

    padding:25px;

    border-radius:20px;

    background:#FFFFFF;

    border:1px solid var(--border);

}

.skeleton-line{

    width:100%;

    height:14px;

    margin-bottom:16px;

    border-radius:999px;

    background:#E2E8F0;

    position:relative;

    overflow:hidden;

}

.skeleton-line:last-child{

    width:60%;

    margin-bottom:0;

}

.skeleton-line::before{

    content:"";

    position:absolute;

    inset:0;

    transform:translateX(-100%);

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.8),

        transparent

    );

    animation:skeletonMove 1.5s infinite;

}

@keyframes skeletonMove{

    100%{

        transform:translateX(100%);

    }

}

/*==================================================
  MODAL COMPONENT
==================================================*/

.modal{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:center;

    background:rgba(2,6,23,.70);

    z-index:999999;

}

.modal.active{

    display:flex;

}

.modal-dialog{

    width:min(700px,95%);

    background:#FFFFFF;

    border-radius:24px;

    overflow:hidden;

    animation:modalShow .35s ease;

}

@keyframes modalShow{

    from{

        opacity:0;

        transform:translateY(25px) scale(.96);

    }

    to{

        opacity:1;

        transform:translateY(0) scale(1);

    }

}

.modal-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 30px;

    border-bottom:1px solid var(--border);

}

.modal-body{

    padding:30px;

}

.modal-footer{

    padding:24px 30px;

    border-top:1px solid var(--border);

    display:flex;

    justify-content:flex-end;

    gap:15px;

}

/*==================================================
  TOAST
==================================================*/

.toast{

    position:fixed;

    right:25px;

    bottom:25px;

    width:360px;

    display:flex;

    gap:15px;

    padding:18px;

    background:#FFFFFF;

    border-radius:18px;

    border-left:5px solid var(--accent);

    box-shadow:0 20px 50px rgba(0,0,0,.15);

    z-index:999999;

}

.toast-icon{

    width:46px;

    height:46px;

    border-radius:14px;

    background:#ECFDF5;

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--accent);

    flex-shrink:0;

}

.toast-content{

    flex:1;

}

.toast-content h4{

    margin-bottom:6px;

}

.toast-content p{

    margin:0;

    font-size:14px;

}

/*==================================================
  COOKIE BANNER
==================================================*/

.cookie-banner{

    position:fixed;

    left:25px;

    right:25px;

    bottom:25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

    padding:24px 28px;

    background:#FFFFFF;

    border-radius:24px;

    box-shadow:0 20px 60px rgba(0,0,0,.15);

    z-index:999998;

}

.cookie-content{

    flex:1;

}

.cookie-content h4{

    margin-bottom:10px;

}

.cookie-actions{

    display:flex;

    gap:14px;

}

/*==================================================
  EMPTY STATE
==================================================*/

.empty-widget{

    padding:70px 35px;

    text-align:center;

    background:#FFFFFF;

    border:2px dashed var(--border);

    border-radius:24px;

}

.empty-widget svg{

    width:80px;

    height:80px;

    color:var(--secondary);

    margin-bottom:20px;

}

.empty-widget h3{

    margin-bottom:15px;

}

.empty-widget p{

    max-width:520px;

    margin:0 auto 25px;

}

/*==================================================
  END OF PART 9
==================================================*/
/*==================================================
  RESPONSIVE COMPONENTS
==================================================*/

@media (max-width:1200px){

    .related-posts{

        grid-template-columns:repeat(2,1fr);

    }

    .chart-month-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:992px){

    .market-info{

        grid-template-columns:1fr;

    }

    .result-history{

        grid-template-columns:repeat(3,1fr);

    }

    .share-buttons{

        justify-content:center;

    }

    .author-card{

        flex-direction:column;

        text-align:center;

    }

    .author-social{

        justify-content:center;

    }

    .cookie-banner{

        flex-direction:column;

        align-items:flex-start;

    }

}

@media (max-width:768px){

    .related-posts{

        grid-template-columns:1fr;

    }

    .chart-month-grid{

        grid-template-columns:1fr;

    }

    .result-history{

        grid-template-columns:repeat(2,1fr);

    }

    .result-actions{

        flex-direction:column;

    }

    .market-footer{

        flex-direction:column;

    }

    .notification{

        width:calc(100% - 30px);

        right:15px;

    }

    .toast{

        width:calc(100% - 30px);

        right:15px;

    }

    .cookie-banner{

        left:15px;

        right:15px;

        bottom:15px;

    }

    .whatsapp-popup{

        display:none;

    }

}

@media (max-width:480px){

    .today-result-number{

        font-size:60px;

    }

    .market-number{

        font-size:48px;

    }

    .live-result-number{

        font-size:54px;

    }

    .timer-box{

        width:60px;

        height:70px;

    }

    .timer-value{

        font-size:22px;

    }

}

/*==================================================
  GLASS COMPONENTS
==================================================*/

.glass-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.15);

}

.glass-light{

    background:rgba(255,255,255,.70);

    backdrop-filter:blur(16px);

}

/*==================================================
  HOVER ANIMATIONS
==================================================*/

.hover-lift{

    transition:.35s ease;

}

.hover-lift:hover{

    transform:translateY(-8px);

}

.hover-scale{

    transition:.35s ease;

}

.hover-scale:hover{

    transform:scale(1.04);

}

.hover-rotate{

    transition:.35s ease;

}

.hover-rotate:hover{

    transform:rotate(2deg);

}

/*==================================================
  FADE UTILITIES
==================================================*/

.fade-up{

    animation:fadeUp .6s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.fade-down{

    animation:fadeDown .6s ease;

}

@keyframes fadeDown{

    from{

        opacity:0;

        transform:translateY(-25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.zoom-in{

    animation:zoomIn .45s ease;

}

@keyframes zoomIn{

    from{

        opacity:0;

        transform:scale(.9);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

/*==================================================
  SCROLL REVEAL
==================================================*/

.reveal{

    opacity:0;

    transform:translateY(40px);

    transition:all .7s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/*==================================================
  PERFORMANCE
==================================================*/

*{

    -webkit-tap-highlight-color:transparent;

}

img{

    max-width:100%;

    height:auto;

}

svg{

    vertical-align:middle;

}

button{

    cursor:pointer;

}

/*==================================================
  REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion:reduce){

    *{

        animation:none !important;

        transition:none !important;

        scroll-behavior:auto !important;

    }

}

/*==================================================
  PRINT
==================================================*/

@media print{

    .whatsapp-widget,

    .back-to-top,

    .notification,

    .toast,

    .cookie-banner{

        display:none !important;

    }

}

/*==================================================
  SATTA KHEL V2

  File  : components.css
  Version : Build 0.1
  Theme : Navy Blue + White
  Status : Production Ready

==================================================*/

/*==================================================
  FILE COMPLETE
==================================================*/