/*==================================================
    GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@300;400;500;600;700;800;900&display=swap');

/*==================================================
    ROOT VARIABLES
==================================================*/

:root{

    --primary:#d4af37;
    --primary-dark:#b88b1b;
    --secondary:#ffcf57;

    --background:#090909;
    --background-light:#111111;
    --card:#181818;
    --card-light:#222222;

    --white:#ffffff;
    --gray:#cfcfcf;
    --gray-light:#9d9d9d;

    --success:#2ecc71;
    --danger:#ff4d4d;

    --border:rgba(255,255,255,.08);

    --shadow:0 20px 60px rgba(0,0,0,.35);

    --radius:18px;

    --transition:.35s ease;

    --container:1280px;

}

/*==================================================
    RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;
    scroll-padding-top:100px;

}

body{

    font-family:'Noto Sans Thai',sans-serif;

    background:var(--background);

    color:var(--white);

    overflow-x:hidden;

    line-height:1.8;

    font-size:16px;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}

button{

    border:none;

    outline:none;

    cursor:pointer;

    font-family:inherit;

}

ul,
ol{

    padding-left:22px;

}

li{

    margin:10px 0;

}

table{

    width:100%;

    border-collapse:collapse;

}

section{

    position:relative;

    padding:100px 0;

}

main{

    overflow:hidden;

}

/*==================================================
    CUSTOM SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        180deg,
        var(--primary),
        #a56b08
    );

    border-radius:50px;

}

/*==================================================
    CONTAINER
==================================================*/

.container{

    width:min(92%,var(--container));

    margin:auto;

}

/*==================================================
    TYPOGRAPHY
==================================================*/

h1{

    font-size:58px;

    line-height:1.15;

    font-weight:800;

}

h2{

    font-size:42px;

    line-height:1.25;

    margin-bottom:22px;

    font-weight:800;

}

h3{

    font-size:28px;

    margin:45px 0 18px;

    color:var(--primary);

    font-weight:700;

}

h4{

    font-size:22px;

    margin:30px 0 15px;

    color:var(--secondary);

}

p{

    margin-bottom:22px;

    color:var(--gray);

    font-size:17px;

}

strong{

    color:var(--primary);

    font-weight:700;

}

.section-header{

    text-align:center;

    max-width:900px;

    margin:0 auto 70px;

}

.section-subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(212,175,55,.12);

    border:1px solid rgba(212,175,55,.25);

    color:var(--primary);

    padding:10px 22px;

    border-radius:100px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:25px;

}

.section-subtitle::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--primary);

}

/*==================================================
    BUTTONS
==================================================*/

.btn-register,
.btn-login{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:170px;

    height:54px;

    border-radius:100px;

    font-weight:700;

    transition:var(--transition);

}

.btn-register{

    background:linear-gradient(
        135deg,
        #ffd76b,
        #c38d11
    );

    color:#111;

    box-shadow:
        0 10px 35px rgba(212,175,55,.28);

}

.btn-register:hover{

    transform:translateY(-4px);

}

.btn-login{

    border:1px solid rgba(255,255,255,.12);

    color:#fff;

    margin-left:14px;

}

.btn-login:hover{

    border-color:var(--primary);

    color:var(--primary);

}

/*==================================================
    CARD
==================================================*/

.hero-card,
.info-box{

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border:1px solid var(--border);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    backdrop-filter:blur(18px);

}

/*==================================================
    TABLE
==================================================*/

.table{

    margin:35px 0;

    border-radius:16px;

    overflow:hidden;

    border:1px solid var(--border);

}

.table thead{

    background:linear-gradient(
        90deg,
        #d4af37,
        #9b6c05
    );

}

.table th{

    padding:18px;

    color:#111;

    font-size:17px;

    text-align:left;

}

.table td{

    padding:18px;

    border-bottom:1px solid rgba(255,255,255,.08);

    color:var(--gray);

}

.table tbody tr{

    background:#171717;

}

.table tbody tr:nth-child(even){

    background:#121212;

}

.table tbody tr:hover{

    background:#202020;

}

/*==================================================
    BLOCKQUOTE
==================================================*/

blockquote{

    position:relative;

    margin:50px 0;

    padding:35px;

    background:#111;

    border-left:5px solid var(--primary);

    border-radius:16px;

}

blockquote p{

    margin:0;

    font-size:20px;

    color:#f5f5f5;

    font-style:italic;

}

/*==================================================
    INFO BOX
==================================================*/

.info-box{

    margin:40px 0;

    padding:35px;

}

.info-box h4{

    margin-top:0;

}

.info-box ul{

    margin-top:15px;

}

/*==================================================
    LIST STYLE
==================================================*/

.content ul li::marker{

    color:var(--primary);

}

.content ol li::marker{

    color:var(--primary);

    font-weight:700;

}

/*==================================================
    TEXT SELECTION
==================================================*/

::selection{

    background:var(--primary);

    color:#111;

}

/*==================================================
    HEADER
==================================================*/

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    background:rgba(8,8,8,.75);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.06);

    transition:var(--transition);

}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:90px;

    gap:30px;

}

.logo{

    display:flex;

    align-items:center;

    flex-shrink:0;

}

.logo img{

    width:180px;

    height:auto;

}

/*==================================================
    NAVBAR
==================================================*/

.navbar{

    flex:1;

    display:flex;

    justify-content:center;

}

.navbar ul{

    display:flex;

    align-items:center;

    gap:38px;

    list-style:none;

    padding:0;

}

.navbar a{

    position:relative;

    color:var(--white);

    font-size:15px;

    font-weight:600;

    letter-spacing:.3px;

    transition:var(--transition);

}

.navbar a:hover{

    color:var(--primary);

}

.navbar a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-10px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:var(--transition);

}

.navbar a:hover::after{

    width:100%;

}

/*==================================================
    HEADER BUTTONS
==================================================*/

.header-buttons{

    display:flex;

    align-items:center;

    justify-content:flex-end;

}

/*==================================================
    HERO
==================================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding-top:170px;

    padding-bottom:120px;

    background:
    radial-gradient(circle at top right,
    rgba(212,175,55,.16),
    transparent 35%),

    radial-gradient(circle at left,
    rgba(255,215,80,.08),
    transparent 30%),

    linear-gradient(
    180deg,
    #0a0a0a 0%,
    #111111 45%,
    #090909 100%
    );

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),

    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);

    background-size:70px 70px;

    opacity:.4;

    pointer-events:none;

}

.hero::after{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(212,175,55,.15),
    transparent 70%);

    top:-180px;

    right:-120px;

    filter:blur(30px);

}

/*==================================================
    HERO CONTENT
==================================================*/

.hero .container{

    position:relative;

    z-index:2;

    max-width:900px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    border-radius:100px;

    background:rgba(212,175,55,.12);

    border:1px solid rgba(212,175,55,.30);

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:28px;

    text-transform:uppercase;

}

.hero-badge::before{

    content:"";

    width:9px;

    height:9px;

    border-radius:50%;

    background:var(--primary);

    box-shadow:0 0 15px var(--primary);

}

.hero h1{

    max-width:900px;

    margin-bottom:28px;

}

.hero p{

    max-width:760px;

    font-size:19px;

    color:#d8d8d8;

    margin-bottom:45px;

}

/*==================================================
    HERO ACTIONS
==================================================*/

.hero-buttons{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}

.hero-buttons .btn-register{

    min-width:200px;

}

.hero-buttons .btn-login{

    margin-left:0;

}

/*==================================================
    HERO GRID
==================================================*/

.hero-actions{

    margin-top:-60px;

    position:relative;

    z-index:5;

}

.hero-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.hero-card{

    padding:35px;

    transition:var(--transition);

    position:relative;

    overflow:hidden;

}

.hero-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(140deg,

    rgba(212,175,55,.08),

    transparent 60%);

    opacity:0;

    transition:var(--transition);

}

.hero-card:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.25);

}

.hero-card:hover::before{

    opacity:1;

}

.hero-card-icon{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    font-size:32px;

    margin-bottom:24px;

    background:

    linear-gradient(
    135deg,
    rgba(212,175,55,.18),
    rgba(212,175,55,.06));

    border:1px solid rgba(212,175,55,.18);

}

.hero-card h2{

    font-size:25px;

    margin-bottom:16px;

}

.hero-card p{

    font-size:16px;

    color:#bfbfbf;

    margin:0;

}

/*==================================================
    HERO DECORATION
==================================================*/

.hero-glow{

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(255,215,100,.12),
    transparent 75%);

    bottom:-250px;

    left:-180px;

    filter:blur(30px);

    pointer-events:none;

}

/*==================================================
    ANIMATION
==================================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

.hero-card{

    animation:float 6s ease-in-out infinite;

}

.hero-card:nth-child(2){

    animation-delay:.8s;

}

.hero-card:nth-child(3){

    animation-delay:1.6s;

}

/*==================================================
    HERO SCROLL INDICATOR
==================================================*/

.scroll-down{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:12px;

    color:var(--gray-light);

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

}

.scroll-down span{

    width:24px;

    height:40px;

    border:2px solid rgba(255,255,255,.35);

    border-radius:50px;

    position:relative;

}

.scroll-down span::before{

    content:"";

    position:absolute;

    left:50%;

    top:8px;

    transform:translateX(-50%);

    width:4px;

    height:8px;

    border-radius:20px;

    background:var(--primary);

    animation:scrollWheel 1.6s infinite;

}

@keyframes scrollWheel{

    0%{

        opacity:0;

        transform:translate(-50%,0);

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:0;

        transform:translate(-50%,14px);

    }

}
/*==================================================
    SEO CONTENT SECTION
==================================================*/

.baccarat-introduction,
.baccarat-history,
.baccarat-rules,
.baccarat-roadmap,
.baccarat-strategy,
.faq-section,
.seo-conclusion{

    position:relative;

    overflow:hidden;

}

.baccarat-introduction{

    background:#0d0d0d;

}

.baccarat-history{

    background:#101010;

}

.baccarat-rules{

    background:#0c0c0c;

}

.baccarat-roadmap{

    background:#111111;

}

.baccarat-strategy{

    background:#0d0d0d;

}

.faq-section{

    background:#111111;

}

.seo-conclusion{

    background:#0c0c0c;

}

/*==================================================
    SECTION DECORATION
==================================================*/

.baccarat-introduction::before,
.baccarat-history::before,
.baccarat-rules::before,
.baccarat-roadmap::before,
.baccarat-strategy::before,
.faq-section::before,
.seo-conclusion::before{

    content:"";

    position:absolute;

    top:0;
    left:50%;

    transform:translateX(-50%);

    width:220px;

    height:3px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--primary),
        transparent
    );

}

.baccarat-introduction::after,
.baccarat-history::after,
.baccarat-rules::after,
.baccarat-roadmap::after,
.baccarat-strategy::after,
.faq-section::after,
.seo-conclusion::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(212,175,55,.05),
    transparent 70%);

    filter:blur(40px);

    pointer-events:none;

    right:-180px;

    top:50%;

    transform:translateY(-50%);

}

/*==================================================
    ARTICLE CONTENT
==================================================*/

.content{

    max-width:980px;

    margin:auto;

}

.content p{

    font-size:17px;

    color:#d1d1d1;

    text-align:justify;

    margin-bottom:22px;

}

.content h2{

    margin-top:60px;

}

.content h3{

    position:relative;

    padding-left:22px;

}

.content h3::before{

    content:"";

    position:absolute;

    left:0;

    top:50%;

    transform:translateY(-50%);

    width:8px;

    height:28px;

    border-radius:20px;

    background:linear-gradient(
        180deg,
        var(--primary),
        #8e6505
    );

}

.content h4{

    margin-top:35px;

}

/*==================================================
    LIST
==================================================*/

.content ul{

    margin:25px 0;

}

.content ol{

    margin:25px 0;

}

.content li{

    color:#d7d7d7;

    margin:14px 0;

    line-height:1.8;

}

.content li strong{

    color:var(--primary);

}

/*==================================================
    TABLE
==================================================*/

.table{

    border-radius:18px;

    overflow:hidden;

    margin:40px 0;

    box-shadow:0 15px 45px rgba(0,0,0,.35);

}

.table th{

    text-transform:uppercase;

    letter-spacing:.5px;

}

.table td{

    transition:.3s;

}

.table tbody tr:hover td{

    color:#fff;

}

/*==================================================
    INFO BOX
==================================================*/

.info-box{

    position:relative;

    overflow:hidden;

}

.info-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        135deg,
        rgba(212,175,55,.05),
        transparent 60%
    );

    pointer-events:none;

}

.info-box strong{

    display:block;

    margin-bottom:15px;

    font-size:18px;

}

.info-box h4{

    color:#fff;

}

.info-box p{

    margin-bottom:0;

}

/*==================================================
    BLOCKQUOTE
==================================================*/

blockquote{

    overflow:hidden;

}

blockquote::before{

    content:"❝";

    position:absolute;

    top:8px;

    left:18px;

    font-size:70px;

    color:rgba(212,175,55,.18);

    line-height:1;

}

/*==================================================
    SECTION HEADER
==================================================*/

.section-header h2{

    max-width:900px;

    margin:auto;

}

.section-header p{

    max-width:850px;

    margin:25px auto 0;

    color:#c9c9c9;

}

/*==================================================
    ARTICLE IMAGE
==================================================*/

.article-image{

    margin:50px 0;

    border-radius:18px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.article-image img{

    width:100%;

    transition:.5s;

}

.article-image:hover img{

    transform:scale(1.05);

}

/*==================================================
    ARTICLE GRID
==================================================*/

.article-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    margin:50px 0;

}

.article-card{

    background:#151515;

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    padding:30px;

    transition:.35s;

}

.article-card:hover{

    border-color:rgba(212,175,55,.25);

    transform:translateY(-8px);

}

.article-card h3{

    margin-top:0;

}

/*==================================================
    HIGHLIGHT BOX
==================================================*/

.seo-highlight{

    margin:60px 0;

    padding:45px;

    background:linear-gradient(
        180deg,
        rgba(212,175,55,.06),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(212,175,55,.18);

    border-radius:22px;

}

.seo-highlight h3{

    margin-top:0;

}

.seo-highlight ul{

    margin-bottom:0;

}

/*==================================================
    DIVIDER
==================================================*/

.divider{

    width:120px;

    height:4px;

    margin:60px auto;

    border-radius:100px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--primary),
        transparent
    );

}

/*==================================================
    FAQ
==================================================*/

.faq-list{

    max-width:1000px;

    margin:auto;

}

.faq-item{

    background:#151515;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:30px;

    margin-bottom:20px;

    transition:.35s;

}

.faq-item:hover{

    transform:translateY(-5px);

    border-color:rgba(212,175,55,.22);

}

.faq-item h3{

    margin:0 0 15px;

    padding:0;

    color:#fff;

    font-size:22px;

}

.faq-item h3::before{

    display:none;

}

.faq-item p{

    margin:0;

    color:#cfcfcf;

}

/*==================================================
    CONCLUSION
==================================================*/

.seo-conclusion{

    text-align:center;

}

.seo-conclusion .container{

    max-width:900px;

}

.seo-conclusion p{

    color:#d3d3d3;

}

/*==================================================
    CONTENT LINKS
==================================================*/

.content a{

    color:var(--primary);

    text-decoration:underline;

    text-underline-offset:3px;

}

.content a:hover{

    color:#ffe189;

}

/*==================================================
    HORIZONTAL RULE
==================================================*/

.content hr{

    border:none;

    height:1px;

    background:rgba(255,255,255,.08);

    margin:60px 0;

}
/*==================================================
    FOOTER
==================================================*/

.footer{

    position:relative;

    background:
    linear-gradient(
        180deg,
        #080808,
        #050505
    );

    border-top:1px solid rgba(255,255,255,.06);

    overflow:hidden;

}

.footer::before{

    content:"";

    position:absolute;

    top:0;
    left:50%;

    transform:translateX(-50%);

    width:220px;

    height:3px;

    border-radius:100px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--primary),
        transparent
    );

}

.footer .container{

    padding:70px 0;

    text-align:center;

}

.footer-logo{

    margin:0 auto 25px;

    width:180px;

}

.footer-logo img{

    width:100%;

    height:auto;

}

.footer-description{

    max-width:760px;

    margin:0 auto 35px;

    color:var(--gray-light);

}

.footer-menu{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

    list-style:none;

    padding:0;

    margin:0 0 35px;

}

.footer-menu a{

    color:var(--gray);

    transition:var(--transition);

}

.footer-menu a:hover{

    color:var(--primary);

}

.footer-social{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-bottom:35px;

}

.footer-social a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#141414;

    border:1px solid rgba(255,255,255,.08);

    transition:var(--transition);

    font-size:18px;

}

.footer-social a:hover{

    background:var(--primary);

    color:#111;

    transform:translateY(-5px);

}

.footer-bottom{

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-bottom p{

    margin:0;

    font-size:15px;

    color:#9c9c9c;

}

/*==================================================
    SIMPLE FADE ANIMATION
==================================================*/

.fade-up{

    opacity:0;

    transform:translateY(35px);

    transition:
    opacity .8s ease,
    transform .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

/*==================================================
    HOVER EFFECT
==================================================*/

.hero-card,
.article-card,
.faq-item,
.info-box,
.table{

    transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;

}

.hero-card:hover,
.article-card:hover,
.faq-item:hover,
.info-box:hover{

    box-shadow:
    0 25px 55px rgba(0,0,0,.45);

}

/*==================================================
    IMAGE EFFECT
==================================================*/

img{

    transition:transform .4s ease;

}

.article-image:hover img{

    transform:scale(1.06);

}

/*==================================================
    GOLD LINE
==================================================*/

.gold-line{

    width:100%;

    height:1px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(212,175,55,.5),
        transparent
    );

    margin:70px 0;

}

/*==================================================
    TAG
==================================================*/

.tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 16px;

    border-radius:100px;

    background:rgba(212,175,55,.10);

    border:1px solid rgba(212,175,55,.20);

    color:var(--primary);

    font-size:13px;

    font-weight:700;

    letter-spacing:.5px;

}

/*==================================================
    BADGE
==================================================*/

.badge{

    display:inline-block;

    padding:6px 14px;

    border-radius:8px;

    background:linear-gradient(
        135deg,
        var(--primary),
        #9f7105
    );

    color:#111;

    font-weight:700;

    font-size:13px;

}

/*==================================================
    CONTENT SPACING
==================================================*/

.content>*:last-child{

    margin-bottom:0;

}

.section-header>*:last-child{

    margin-bottom:0;

}

.info-box>*:last-child{

    margin-bottom:0;

}

blockquote>*:last-child{

    margin-bottom:0;

}

/*==================================================
    BACK TO TOP
==================================================*/

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        #a16f06
    );

    color:#111;

    font-size:20px;

    font-weight:700;

    box-shadow:
    0 12px 35px rgba(212,175,55,.35);

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:var(--transition);

    z-index:999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    transform:translateY(-6px);

}

/*==================================================
    LOADER
==================================================*/

.page-loader{

    position:fixed;

    inset:0;

    background:#080808;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:99999;

}

.loader-circle{

    width:65px;

    height:65px;

    border-radius:50%;

    border:5px solid rgba(255,255,255,.08);

    border-top-color:var(--primary);

    animation:loaderSpin 1s linear infinite;

}

@keyframes loaderSpin{

    to{

        transform:rotate(360deg);

    }

}

/*==================================================
    GLOW EFFECT
==================================================*/

.glow{

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(212,175,55,.10),
        transparent 70%
    );

    filter:blur(60px);

    pointer-events:none;

}

/*==================================================
    TEXT GRADIENT
==================================================*/

.text-gradient{

    background:linear-gradient(
        135deg,
        #ffe28a,
        #d4af37,
        #a16f06
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    background-clip:text;

}

/*==================================================
    SHADOW UTILITIES
==================================================*/

.shadow{

    box-shadow:var(--shadow);

}

.rounded{

    border-radius:var(--radius);

}

.border{

    border:1px solid rgba(255,255,255,.08);

}

/*==================================================
    FADE IN KEYFRAMES
==================================================*/

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

@keyframes slideUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.animate-fade{

    animation:fadeIn .8s ease forwards;

}

.animate-up{

    animation:slideUp .8s ease forwards;

}
/*==================================================
    RESPONSIVE
==================================================*/

/*==================================================
    LARGE DESKTOP
==================================================*/

@media (max-width:1400px){

    h1{

        font-size:52px;

    }

    h2{

        font-size:38px;

    }

    .container{

        width:min(94%,var(--container));

    }

}

/*==================================================
    LAPTOP
==================================================*/

@media (max-width:1200px){

    h1{

        font-size:46px;

    }

    h2{

        font-size:34px;

    }

    h3{

        font-size:26px;

    }

    section{

        padding:80px 0;

    }

    .hero{

        min-height:auto;

        padding-top:150px;

        padding-bottom:90px;

    }

    .hero-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/*==================================================
    TABLET
==================================================*/

@media (max-width:992px){

    .header .container{

        min-height:80px;

    }

    .navbar{

        display:none;

    }

    .header-buttons{

        display:none;

    }

    h1{

        font-size:40px;

    }

    h2{

        font-size:30px;

    }

    h3{

        font-size:24px;

    }

    p{

        font-size:16px;

    }

    .hero{

        text-align:center;

        padding-top:140px;

    }

    .hero .container{

        max-width:100%;

    }

    .hero p{

        margin-left:auto;

        margin-right:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .article-grid{

        grid-template-columns:1fr;

    }

    .section-header{

        margin-bottom:50px;

    }

}

/*==================================================
    TABLET SMALL
==================================================*/

@media (max-width:768px){

    section{

        padding:70px 0;

    }

    h1{

        font-size:34px;

        line-height:1.3;

    }

    h2{

        font-size:28px;

    }

    h3{

        font-size:22px;

    }

    h4{

        font-size:19px;

    }

    .hero{

        padding-top:130px;

        padding-bottom:70px;

    }

    .hero-card{

        padding:28px;

    }

    .hero-card-icon{

        width:60px;

        height:60px;

        font-size:28px;

    }

    .content{

        max-width:100%;

    }

    .table{

        display:block;

        overflow-x:auto;

        white-space:nowrap;

    }

    .table th,
    .table td{

        padding:15px;

    }

    blockquote{

        padding:28px;

    }

    blockquote p{

        font-size:18px;

    }

    .info-box{

        padding:28px;

    }

    .seo-highlight{

        padding:30px;

    }

    .footer .container{

        padding:60px 0;

    }

}

/*==================================================
    MOBILE
==================================================*/

@media (max-width:576px){

    body{

        font-size:15px;

    }

    .container{

        width:92%;

    }

    section{

        padding:60px 0;

    }

    h1{

        font-size:30px;

    }

    h2{

        font-size:24px;

    }

    h3{

        font-size:20px;

    }

    h4{

        font-size:18px;

    }

    p{

        font-size:15px;

        text-align:left;

    }

    .section-header{

        margin-bottom:40px;

    }

    .section-subtitle{

        font-size:12px;

        padding:9px 18px;

    }

    .hero{

        padding-top:120px;

    }

    .hero-badge{

        font-size:12px;

        padding:10px 18px;

    }

    .hero p{

        font-size:16px;

    }

    .btn-register,
    .btn-login{

        width:100%;

        min-width:100%;

        margin:0;

    }

    .hero-buttons{

        flex-direction:column;

        gap:15px;

    }

    .hero-card{

        padding:24px;

    }

    .hero-card h2{

        font-size:22px;

    }

    .content ul,
    .content ol{

        padding-left:18px;

    }

    .table{

        font-size:14px;

    }

    .table th{

        font-size:15px;

    }

    .table td{

        font-size:14px;

    }

    .faq-item{

        padding:24px;

    }

    .faq-item h3{

        font-size:18px;

        line-height:1.5;

    }

    .footer-menu{

        flex-direction:column;

        gap:12px;

    }

    .footer-social{

        gap:14px;

    }

    .footer-social a{

        width:44px;

        height:44px;

    }

    .back-to-top{

        right:20px;

        bottom:20px;

        width:48px;

        height:48px;

        font-size:18px;

    }

}

/*==================================================
    EXTRA SMALL
==================================================*/

@media (max-width:400px){

    h1{

        font-size:27px;

    }

    h2{

        font-size:22px;

    }

    h3{

        font-size:18px;

    }

    p{

        font-size:14px;

    }

    .hero-card{

        padding:20px;

    }

    .faq-item{

        padding:20px;

    }

    .info-box{

        padding:22px;

    }

    .seo-highlight{

        padding:22px;

    }

    .table th,
    .table td{

        padding:12px;

    }

}

/*==================================================
    REDUCE MOTION
==================================================*/

@media (prefers-reduced-motion:reduce){

    *{

        animation:none !important;

        transition:none !important;

        scroll-behavior:auto !important;

    }

}
/*==================================================
    MOBILE BOTTOM BAR
==================================================*/

.mobile-bottom{

    position:fixed;

    left:0;

    bottom:0;

    width:100%;

    display:none;

    align-items:center;

    justify-content:space-between;

    gap:12px;

    padding:12px 15px calc(12px + env(safe-area-inset-bottom));

    background:rgba(10,10,10,.96);

    backdrop-filter:blur(18px);

    border-top:1px solid rgba(212,175,55,.25);

    box-shadow:0 -8px 30px rgba(0,0,0,.45);

    z-index:99999;

}

.mobile-btn{

    flex:1;

    height:56px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-direction:column;

    gap:3px;

    font-size:13px;

    font-weight:700;

    transition:.3s ease;

}

.mobile-btn .icon{

    font-size:20px;

    line-height:1;

}

/* LOGIN */

.mobile-btn.login{

    background:#1a1a1a;

    border:1px solid rgba(255,255,255,.08);

    color:#ffffff;

}

.mobile-btn.login:hover{

    background:#242424;

}

/* LINE */

.mobile-btn.line{

    background:linear-gradient(
        135deg,
        #06C755,
        #03A847
    );

    color:#fff;

    transform:translateY(-12px);

    height:68px;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(6,199,85,.35);

}

.mobile-btn.line .icon{

    font-size:24px;

}

/* REGISTER */

.mobile-btn.register{

    background:linear-gradient(
        135deg,
        #FFD86A,
        #D4AF37,
        #9F7105
    );

    color:#111;

    box-shadow:0 8px 25px rgba(212,175,55,.30);

}

.mobile-btn.register:hover{

    transform:translateY(-3px);

}

/*==================================================
    MOBILE ONLY
==================================================*/

@media (max-width:992px){

    .mobile-bottom{

        display:flex;

    }

    body{

        padding-bottom:95px;

    }

}

@media (min-width:993px){

    .mobile-bottom{

        display:none !important;

    }

}
/*==================================================
    MOBILE HEADER LOGO
==================================================*/

@media (max-width:992px){

    .header .container{

        justify-content:center;

        min-height:80px;

        padding:0 20px;

    }

    .logo{

        width:100%;

        display:flex;

        justify-content:center;

        align-items:center;

    }

    .logo img{

        width:auto;

        max-width:220px;

        height:60px;

        object-fit:contain;

    }

}
/*==================================================
    PROMOTION BANNER
==================================================*/

.promo-banner{

    padding:20px 0 70px;

}

.promo-banner img{

    width:100%;

    display:block;

    border-radius:24px;

    border:1px solid rgba(212,175,55,.20);

    box-shadow:
        0 20px 60px rgba(0,0,0,.40);

    transition:.35s ease;

}

.promo-banner img:hover{

    transform:translateY(-5px);

    box-shadow:
        0 30px 70px rgba(0,0,0,.50);

}

@media(max-width:768px){

    .promo-banner{

        padding:15px 0 50px;

    }

    .promo-banner img{

        border-radius:18px;

    }

}