
/* ========== GEOMETRIC PLAY - MINIMALIST GEOMETRIC THEME ========== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Nunito:wght@400;600;700&display=swap');

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}

body.geo-body{
    font-family:'Nunito',sans-serif;
    background:linear-gradient(30deg,#ffecd2,#fcb69f,#a1c4fd,#c2e9fb,#ffecd2,#fcb69f,#a1c4fd,#c2e9fb);
    background-size:400% 400%;
    animation:rainbowFlow 25s ease-in-out infinite;
    color:#333;
    line-height:1.6;
    overflow-x:hidden;
    min-height:100vh;
}

@keyframes rainbowFlow{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

/* ---- HEADER ---- */
.geo-header{
    text-align:center;
    padding:40px 20px 20px;
    position:relative;
}

.header-inner{
    position:relative;
    z-index:2;
}

.site-logo{
    font-family:'Montserrat',sans-serif;
    font-size:clamp(28px,5vw,52px);
    font-weight:900;
    color:#333;
    letter-spacing:4px;
    text-transform:uppercase;
}

.site-tagline{
    font-family:'Nunito',sans-serif;
    font-size:clamp(12px,2vw,16px);
    color:rgba(0,0,0,0.45);
    letter-spacing:2px;
    margin-top:4px;
}

/* ---- CONTROL BAR ---- */
.control-bar{
    display:flex;
    align-items:center;
    gap:16px;
    padding:16px 24px;
    background:rgba(255,255,255,0.35);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border-radius:16px;
    max-width:960px;
    margin:0 auto 30px;
    flex-wrap:wrap;
    justify-content:center;
    box-shadow:0 4px 20px rgba(0,0,0,0.06);
}

.search-wrapper{
    position:relative;
    flex:1;
    min-width:200px;
}

.search-input{
    width:100%;
    padding:12px 18px;
    background:rgba(255,255,255,0.7);
    border:2px solid rgba(255,255,255,0.8);
    border-radius:25px;
    color:#333;
    font-family:'Nunito',sans-serif;
    font-size:14px;
    outline:none;
    transition:all 0.3s ease;
}

.search-input:focus{
    border-color:rgba(0,0,0,0.2);
    box-shadow:0 0 15px rgba(0,0,0,0.08);
    background:rgba(255,255,255,0.9);
}

.search-input::placeholder{color:rgba(0,0,0,0.3);}

.search-dropdown{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    max-height:300px;
    overflow-y:auto;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(10px);
    border:1px solid rgba(0,0,0,0.1);
    border-radius:12px;
    margin-top:8px;
    z-index:9999;
    box-shadow:0 10px 40px rgba(0,0,0,0.12);
}

.search-dropdown::-webkit-scrollbar{width:4px;}
.search-dropdown::-webkit-scrollbar-thumb{background:rgba(0,0,0,0.15);border-radius:2px;}

.search-no-results{
    text-align:center;
    padding:20px;
    color:rgba(0,0,0,0.4);
    font-size:13px;
}

.search-result-item{
    display:flex;
    gap:10px;
    padding:10px 14px;
    cursor:pointer;
    transition:all 0.2s ease;
    border-bottom:1px solid rgba(0,0,0,0.05);
}

.search-result-item:hover{background:rgba(0,0,0,0.04);}

.result-thumb{
    width:50px;
    height:38px;
    object-fit:cover;
    border-radius:6px;
    flex-shrink:0;
}

.result-info h4{font-size:12px;color:#333;font-weight:600;margin-bottom:2px;}
.result-info p{font-size:10px;color:rgba(0,0,0,0.4);line-height:1.3;}

.cat-pills{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    justify-content:center;
}

.cat-pill{
    padding:8px 14px;
    background:rgba(255,255,255,0.5);
    border:1px solid var(--cat-color,rgba(0,0,0,0.15));
    color:var(--cat-color,#333);
    border-radius:20px;
    font-family:'Montserrat',sans-serif;
    font-size:11px;
    font-weight:600;
    cursor:pointer;
    transition:all 0.25s ease;
    white-space:nowrap;
}

.cat-pill:hover{
    background:rgba(255,255,255,0.8);
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    transform:scale(1.05);
}

.cat-pill.active{
    background:var(--cat-color,#333);
    color:#fff;
    box-shadow:0 2px 12px rgba(0,0,0,0.15);
}

.random-btn{
    padding:10px 20px;
    background:rgba(0,0,0,0.08);
    border:2px solid rgba(0,0,0,0.15);
    color:#333;
    border-radius:25px;
    font-family:'Montserrat',sans-serif;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
    letter-spacing:0.5px;
    transition:all 0.3s ease;
    white-space:nowrap;
}

.random-btn:hover{
    background:rgba(0,0,0,0.12);
    box-shadow:0 2px 12px rgba(0,0,0,0.1);
    transform:scale(1.05);
}

/* ---- FEATURED CIRCLES ---- */
.featured-section{
    padding:20px 20px 40px;
}

.featured-circles{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
    max-width:700px;
    margin:0 auto;
}

.circle-entry{
    width:180px;
    height:180px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,0.8);
    box-shadow:0 0 20px rgba(255,255,255,0.3),0 4px 15px rgba(0,0,0,0.08);
    overflow:hidden;
    position:relative;
    cursor:pointer;
    transition:all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.circle-entry:hover{
    transform:scale(1.15);
    box-shadow:0 0 30px rgba(255,255,255,0.5),0 8px 25px rgba(0,0,0,0.12);
    border-color:rgba(255,255,255,1);
}

.circle-link{
    display:block;
    width:100%;
    height:100%;
    text-decoration:none;
    color:inherit;
}

.circle-entry img{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0.65;
    transition:opacity 0.3s ease;
}

.circle-entry:hover img{opacity:0.85;}

.circle-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.3);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background 0.3s ease;
    border-radius:50%;
}

.circle-entry:hover .circle-overlay{background:rgba(0,0,0,0.15);}

.circle-title{
    color:#fff;
    font-size:13px;
    font-weight:700;
    text-align:center;
    text-shadow:0 1px 4px rgba(0,0,0,0.5);
    padding:0 15px;
    line-height:1.3;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* ---- GAMES SECTION ---- */
.games-section{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px 30px;
}

.section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.section-title{
    font-family:'Montserrat',sans-serif;
    font-size:20px;
    font-weight:800;
    color:#333;
    letter-spacing:1px;
}

.shuffle-btn{
    padding:8px 18px;
    background:rgba(255,255,255,0.5);
    border:1px solid rgba(0,0,0,0.12);
    border-radius:20px;
    font-family:'Montserrat',sans-serif;
    font-size:12px;
    font-weight:600;
    color:#333;
    cursor:pointer;
    transition:all 0.25s ease;
}

.shuffle-btn:hover{
    background:rgba(255,255,255,0.8);
    transform:scale(1.05);
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.games-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
    gap:16px;
}

/* ---- GAME CARD ---- */
.game-card{
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(6px);
    border:1px solid rgba(255,255,255,0.8);
    border-radius:12px;
    overflow:hidden;
    transition:all 0.3s cubic-bezier(0.34,1.56,0.64,1);
    cursor:pointer;
    box-shadow:0 2px 10px rgba(0,0,0,0.06);
}

.game-card:hover{
    transform:translateY(-6px) scale(1.03);
    box-shadow:0 8px 25px rgba(0,0,0,0.12);
    border-color:rgba(255,255,255,1);
}

.game-card-link{display:block;text-decoration:none;color:inherit;}

.game-card-thumb{
    width:100%;
    height:120px;
    overflow:hidden;
    background:rgba(0,0,0,0.04);
}

.game-card-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    opacity:0.85;
    transition:all 0.3s ease;
}

.game-card:hover .game-card-thumb img{
    opacity:1;
    transform:scale(1.08);
}

.game-card-info{padding:10px 12px;position:relative;}

.game-card-badge{
    display:inline-block;
    background:var(--badge-color,#ffd700);
    color:#fff;
    font-size:8px;
    font-weight:800;
    padding:2px 8px;
    border-radius:4px;
    letter-spacing:0.5px;
    font-family:'Montserrat',sans-serif;
    margin-bottom:4px;
}

.game-card-title{
    font-family:'Nunito',sans-serif;
    font-size:12px;
    font-weight:700;
    color:#333;
    line-height:1.3;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.game-card-cat{
    font-size:10px;
    font-weight:600;
    margin-top:2px;
    display:inline-block;
}

/* ---- AD CONTAINER ---- */
.geo-ad{
    text-align:center;
    padding:20px;
    margin:20px auto;
    max-width:800px;
    background:rgba(255,255,255,0.5);
    backdrop-filter:blur(8px);
    border:1px dashed rgba(0,0,0,0.1);
    border-radius:12px;
}

.ad-label{
    color:rgba(0,0,0,0.3);
    font-size:10px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:10px;
    font-family:'Montserrat',sans-serif;
}

/* ---- FOOTER ---- */
.geo-footer{
    position:relative;
    text-align:center;
    padding:0;
    z-index:30;
}

.footer-rainbow-line{
    height:1px;
    background:linear-gradient(90deg,#ffecd2,#fcb69f,#a1c4fd,#c2e9fb,#ffecd2,#fcb69f,#a1c4fd,#c2e9fb);
    background-size:200% 100%;
    animation:rainbowLine 6s ease-in-out infinite;
}

@keyframes rainbowLine{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

.footer-content{
    padding:24px 20px;
    background:linear-gradient(180deg,rgba(0,0,0,0.8),rgba(0,0,0,0.95));
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:24px;
    margin-bottom:12px;
}

.footer-links a{
    color:rgba(255,255,255,0.6);
    text-decoration:none;
    font-size:12px;
    font-weight:600;
    font-family:'Montserrat',sans-serif;
    letter-spacing:1px;
    transition:all 0.3s ease;
    padding:4px 8px;
    border-bottom:2px solid transparent;
}

.footer-links a:hover{
    color:#fff;
    background:rgba(255,255,255,0.1);
    border-bottom:2px solid #fff;
}

.footer-copyright{
    font-size:10px;
    color:rgba(255,255,255,0.25);
    font-family:'Montserrat',sans-serif;
    letter-spacing:0.5px;
}

/* ---- TOAST ---- */
.geo-toast{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%) translateY(-30px);
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(12px);
    border:1px solid rgba(0,0,0,0.1);
    color:#333;
    padding:12px 28px;
    border-radius:25px;
    font-size:13px;
    font-weight:700;
    font-family:'Montserrat',sans-serif;
    letter-spacing:0.5px;
    z-index:99999;
    opacity:0;
    pointer-events:none;
    transition:all 0.4s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow:0 4px 20px rgba(0,0,0,0.1);
}

.geo-toast.show{
    opacity:1;
    transform:translateX(-50%) translateY(0);
}

/* ---- DETAIL PAGE ---- */
.detail-body{
    overflow-y:auto;
    overflow-x:hidden;
}

.detail-page-wrapper{
    position:relative;
    min-height:100vh;
    z-index:1;
}

.detail-container{
    position:relative;
    max-width:1200px;
    margin:0 auto;
    padding:20px;
    padding-bottom:100px;
}

.detail-top-nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:24px;
    padding:12px 16px;
    background:rgba(255,255,255,0.6);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.8);
    border-radius:12px;
}

.back-link{
    color:#333;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    padding:8px 18px;
    background:rgba(255,255,255,0.5);
    border:1px solid rgba(0,0,0,0.1);
    border-radius:25px;
    transition:all 0.3s ease;
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-family:'Montserrat',sans-serif;
}

.back-link:hover{
    background:rgba(255,255,255,0.8);
    box-shadow:0 2px 12px rgba(0,0,0,0.08);
    transform:translateX(-4px);
}

.breadcrumb{
    color:rgba(0,0,0,0.4);
    font-size:12px;
    font-family:'Nunito',sans-serif;
}

.breadcrumb .separator{margin:0 8px;color:rgba(0,0,0,0.2);}
.breadcrumb .current{color:#333;font-weight:600;}

.detail-main{position:relative;}

.game-info-section{
    display:flex;
    gap:32px;
    margin-bottom:32px;
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.8);
    border-radius:16px;
    padding:28px;
    box-shadow:0 4px 20px rgba(0,0,0,0.06);
}

.game-poster{
    flex-shrink:0;
    width:380px;
    border-radius:12px;
    overflow:hidden;
    position:relative;
    border:2px solid rgba(255,255,255,0.8);
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.poster-img{width:100%;height:auto;display:block;}

.play-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.4);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:opacity 0.3s ease;
    border-radius:12px;
}

.game-poster:hover .play-overlay{opacity:1;}

.play-btn-large{
    padding:16px 36px;
    background:rgba(255,255,255,0.9);
    color:#333;
    border:none;
    border-radius:30px;
    font-size:18px;
    font-weight:900;
    cursor:pointer;
    transition:all 0.3s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow:0 4px 15px rgba(0,0,0,0.15);
    font-family:'Montserrat',sans-serif;
}

.play-btn-large:hover{
    transform:scale(1.08);
    box-shadow:0 6px 25px rgba(0,0,0,0.2);
}

.game-info-content{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.game-title{
    font-family:'Montserrat',sans-serif;
    font-size:32px;
    font-weight:900;
    color:#333;
    line-height:1.3;
}

.game-meta-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.meta-item{
    padding:12px 16px;
    background:rgba(255,255,255,0.5);
    border:1px solid rgba(0,0,0,0.06);
    border-radius:8px;
}

.meta-label{
    display:block;
    font-size:10px;
    color:rgba(0,0,0,0.4);
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:4px;
    font-weight:700;
    font-family:'Montserrat',sans-serif;
}

.meta-value{
    font-size:14px;
    color:#333;
    font-weight:600;
}

.free-badge{color:#2a9d8f;}

.rating-item .rating-display{display:flex;align-items:center;gap:8px;}

.stars-large{color:#f4a261;font-size:18px;letter-spacing:2px;}

.rating-value{
    font-family:'Montserrat',sans-serif;
    font-size:18px;
    color:#333;
    font-weight:700;
}

.tags-row{display:flex;gap:8px;flex-wrap:wrap;}

.tag{
    padding:5px 14px;
    background:rgba(155,109,255,0.1);
    border:1px solid rgba(155,109,255,0.2);
    border-radius:20px;
    font-size:10px;
    color:#9b6dff;
    font-weight:700;
    letter-spacing:0.5px;
    font-family:'Montserrat',sans-serif;
}

.game-description{
    color:rgba(0,0,0,0.6);
    font-size:14px;
    line-height:1.8;
}

.action-buttons{display:flex;gap:12px;margin-top:8px;}

.btn-primary,.btn-secondary{
    padding:14px 28px;
    border-radius:30px;
    cursor:pointer;
    font-size:14px;
    font-weight:700;
    font-family:'Montserrat',sans-serif;
    letter-spacing:0.5px;
    transition:all 0.3s cubic-bezier(0.34,1.56,0.64,1);
    border:none;
    display:flex;
    align-items:center;
    gap:8px;
}

.btn-primary{
    background:rgba(255,255,255,0.9);
    color:#333;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.btn-primary:hover{
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 6px 20px rgba(0,0,0,0.15);
}

.btn-secondary{
    background:rgba(0,0,0,0.05);
    border:2px solid rgba(0,0,0,0.12);
    color:#333;
}

.btn-secondary:hover{
    background:rgba(0,0,0,0.08);
    transform:translateY(-3px);
}

.btn-icon{font-size:16px;}

.game-frame-section{
    margin-bottom:24px;
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.8);
    border-radius:16px;
    overflow:hidden;
}

.frame-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 20px;
    background:rgba(255,255,255,0.4);
    border-bottom:1px solid rgba(0,0,0,0.06);
}

.frame-title{
    font-size:16px;
    font-weight:700;
    color:#333;
    font-family:'Montserrat',sans-serif;
}

.frame-btn{
    padding:8px 18px;
    background:rgba(255,255,255,0.6);
    border:1px solid rgba(0,0,0,0.1);
    color:#333;
    border-radius:20px;
    cursor:pointer;
    font-size:11px;
    font-weight:600;
    font-family:'Montserrat',sans-serif;
    transition:all 0.3s ease;
}

.frame-btn:hover{
    background:rgba(255,255,255,0.9);
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.game-frame-container{width:100%;height:600px;background:#000;border-radius:0 0 16px 16px;}
.game-iframe{width:100%;height:100%;border:none;}

.ad-slot-detail{margin:24px 0;text-align:center;}

.related-games-section{
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.8);
    border-radius:16px;
    padding:28px;
}

.view-all-link{
    color:#333;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    padding:8px 18px;
    background:rgba(255,255,255,0.5);
    border:1px solid rgba(0,0,0,0.1);
    border-radius:20px;
    transition:all 0.3s ease;
    font-family:'Montserrat',sans-serif;
}

.view-all-link:hover{
    background:rgba(255,255,255,0.8);
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.related-games-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
    gap:16px;
}

/* ---- STATIC PAGE ---- */
.static-body{overflow-y:auto;overflow-x:hidden;}

.static-page-wrapper{
    position:relative;
    min-height:100vh;
    z-index:1;
}

.static-container{
    position:relative;
    max-width:900px;
    margin:0 auto;
    padding:20px;
    padding-bottom:100px;
}

.static-top-nav{margin-bottom:20px;}

.static-content-card{
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.8);
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 4px 20px rgba(0,0,0,0.06);
}

.static-card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 24px;
    background:rgba(255,255,255,0.4);
    border-bottom:1px solid rgba(0,0,0,0.06);
}

.static-title{
    font-family:'Montserrat',sans-serif;
    font-size:22px;
    font-weight:800;
    color:#333;
}

.win-btn{
    width:28px;
    height:28px;
    border-radius:50%;
    border:none;
    cursor:pointer;
    font-size:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all 0.2s ease;
    font-weight:700;
}

.win-close{background:rgba(230,57,70,0.15);color:#e63946;}
.win-close:hover{transform:scale(1.2);background:rgba(230,57,70,0.25);}

.static-page-content{
    color:rgba(0,0,0,0.7);
    line-height:1.9;
    font-size:14px;
    padding:24px;
}

.static-page-content p{margin-bottom:16px;}
.static-page-content strong{color:#333;}
.static-page-content ul{margin:12px 0 12px 20px;}
.static-page-content li{margin-bottom:8px;}
.static-page-content a{color:#457b9d;text-decoration:underline;text-underline-offset:3px;}
.static-page-content ol{margin:12px 0 12px 20px;}

/* ---- FEEDBACK PULSE ---- */
.feedback-pulse{animation:feedbackPulse 0.4s ease;}

@keyframes feedbackPulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.08);box-shadow:0 0 15px rgba(0,0,0,0.15);}
    100%{transform:scale(1);}
}

/* ---- RESPONSIVE ---- */
@media(max-width:1024px){
    .control-bar{
        flex-direction:column;
        gap:12px;
        padding:14px 16px;
    }

    .search-wrapper{min-width:0;width:100%;}

    .cat-pills{justify-content:center;}

    .featured-circles{gap:20px;}

    .circle-entry{width:150px;height:150px;}

    .game-info-section{
        flex-direction:column;
        gap:20px;
        padding:20px;
    }

    .game-poster{width:100%;max-width:400px;margin:0 auto;}

    .game-frame-container{height:400px;}

    .related-games-grid{
        grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
    }
}

@media(max-width:640px){
    .site-logo{font-size:28px;}

    .featured-circles{gap:16px;}

    .circle-entry{width:120px;height:120px;}

    .circle-title{font-size:11px;padding:0 10px;}

    .games-grid{grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:10px;}

    .game-card-thumb{height:90px;}

    .game-card-title{font-size:11px;}

    .random-btn{
        padding:8px 16px;
        font-size:11px;
    }

    .cat-pill{
        padding:6px 10px;
        font-size:10px;
    }

    .game-title{font-size:24px;}

    .game-meta-grid{grid-template-columns:1fr;gap:8px;}

    .action-buttons{flex-direction:column;}

    .btn-primary,.btn-secondary{width:100%;justify-content:center;}

    .game-frame-container{height:300px;}

    .related-games-grid{grid-template-columns:1fr 1fr;}

    .footer-links{gap:16px;}

    .static-page-content{padding:16px;}

    .section-title{font-size:16px;}
}

/* ---- SELECTION & SCROLLBAR ---- */
::selection{background:rgba(155,109,255,0.2);color:#333;}

::-webkit-scrollbar{width:5px;height:5px;}
::-webkit-scrollbar-track{background:transparent;}
::-webkit-scrollbar-thumb{background:rgba(0,0,0,0.12);border-radius:3px;}
::-webkit-scrollbar-thumb:hover{background:rgba(0,0,0,0.2);}

a{color:inherit;text-decoration:none;}
