:root {
    --gold-primary: #FFDF82;
    --gold-gradient: linear-gradient(167deg, #BEA771 0%, #9D834A 100%);
    --dark-bg: #121212;
    --header-gradient: linear-gradient(180deg, #494949 0%, #1B1B1B 100%);
    --glow-shadow: 0px 0px 8px rgba(229, 153, 15, 0.8);    
    --transition-fast: all 0.3s ease;
    --container-max: 1300px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Kanit', sans-serif;
    background-color: var(--dark-bg);
    color: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

.site-header {
    background: var(--header-gradient);
    border-bottom: 2px solid #FCE268;
    box-shadow: 0px 4px 15px rgba(252, 226, 104, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 8px 0;
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.site-logo a {
    display: flex;
    align-items: center;
}

.site-logo-img {
    max-width: 100%; 
    height: auto !important; 
    object-fit: contain; 
}

.main-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 22px; 
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px; 
    font-weight: 500;
    position: relative; 
    padding: 8px 0;
    transition: color 0.4s ease; 
    white-space: nowrap;
}

.nav-menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%; 
    width: 0; 
    height: 2px;
    background: var(--gold-gradient); 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    transform: translateX(-50%); 
    border-radius: 2px;
}

.nav-menu li a:hover, 
.nav-menu li a.active {
    color: var(--gold-primary);
    text-shadow: 0 0 10px rgba(255, 223, 130, 0.4);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%; 
}

.nav-menu li a:hover {
    transform: translateY(-2px);
}

.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-login {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 22px;
    border: 1px solid rgba(255, 255, 255, 0.5); 
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05); 
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(5px); 
}

.btn-login:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-register {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 22px;
    border-radius: 10px;
    background: var(--gold-gradient);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden; 
    z-index: 1;
}

.btn-register::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: 0s;
    animation: btnShine 4s infinite linear;
    z-index: -1;
}

.btn-register:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 2px 5px rgba(229, 153, 15, 0.5);
    color: #000000;
}

@keyframes btnShine {
    0% { left: -60%; }
    20% { left: 140%; }
    100% { left: 140%; }
}

.hero-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/img/hreo-bg.jpg');
    background-size: 100% 100%; 
    background-repeat: no-repeat;
    background-position: center top; 
    padding: 40px 0; 
    min-height: 600px;
    display: flex;
    align-items: center;
    width: 100%;
    
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    width: 100%;
}

.hero-visual {
    flex: 1;
    min-width: 280px; 
    max-width: 100%;
    text-align: center;
}

.players-img {
    max-width: 100%; 
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6)); 
    animation: floatingBall 4s infinite ease-in-out;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
    cursor: pointer; 
}

.players-img:hover {
    animation-play-state: paused; 
    transform: scale(1.05) translateY(-10px); 
    filter: drop-shadow(0 0 20px rgba(255, 223, 130, 0.7)); 
}

@keyframes floatingBall {
    0% {
        transform: translateY(0);
        filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
    }
    50% {
        transform: translateY(-15px);
        filter: drop-shadow(0 25px 40px rgba(0,0,0,0.4));
    }
    100% {
        transform: translateY(0);
        filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
    }
}

.hero-content {
    flex: 1;
    min-width: 280px; 
    max-width: 100%;
    text-align: center;
    color: #fff;
}

.brand-logo-main img {
    max-width: 450px;
    margin-bottom: 5px;
    margin-top: 0; 
}

@media (min-width: 1025px) {
    .brand-logo-main img {
        margin-top: -300px; 
    }
}

@media (min-width: 1025px) {
    .content-text p strong:hover {
        transform: translateY(-3px) scale(1.08); 
    }
    
    .seo-card:hover {
        transform: translateY(-12px) scale(1.01); 
    }
}

@media (max-width: 1024px) {
    .brand-logo-main img {
        margin-top: 0; 
        max-width: 280px; 
    }
    
    .content-text p strong:hover {
        transform: none; 
    }
}

.hero-title {
    font-size: 20px;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.btn-main-register {
    display: inline-block;
    background: var(--header-gradient);
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    padding: 15px 60px;
    border: 2px solid var(--gold-primary);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%); 
    transition: var(--transition-fast);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden; 
    z-index: 1;
}

.btn-main-register::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%; 
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 223, 130, 0.5) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg); 
    z-index: 2;
    animation: goldShineOnly 3s infinite; 
}

.btn-main-register:hover {
    transform: skewX(-5deg) scale(1.05); 
    background: var(--gold-primary);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 223, 130, 0.6);
}

@keyframes goldShineOnly {
    0% {
        left: -150%;
    }
    30% {
        left: 150%; 
    }
    100% {
        left: 150%; 
    }
}

.service-note {
    margin-top: 10px;
    font-size: 20px;
    color: #ffffff;
}

.provider-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.provider-logos img {
    height: 40px;
    filter: grayscale(0.5) brightness(1.2);
    transition: 0.3s;
}

.provider-logos img:hover {
    filter: grayscale(0);
}

.section-divider {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
}

.section-divider h2 {
    color: var(--gold-primary);
    font-size: 30px;
    max-width: 1500px;
    margin: 0 auto;
    line-height: 1.5;
}

.provider-slider {
    width: 100%;
    max-width: 1000px; 
    margin: 40px auto 0;
    padding: 20px 0;
    overflow: hidden;
}

.provider-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.provider-slider .swiper-slide img {
    height: 60%; 
    width: auto;
    filter: grayscale(0.6) brightness(1.2);
    transition: var(--transition-fast);
}

.provider-slider .swiper-slide img:hover {
    filter: grayscale(0) brightness(1);
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none; 
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--gold-primary);
    transition: var(--transition-fast);
}

@media (max-width: 1024px) {
    .header-container {
        padding: 0 15px;
    }

    .main-navigation {
        display: none; 
    }

    .mobile-menu-toggle {
        display: flex; 
    }

    .site-logo-img {
        width: 140px; 
    }

    .btn-login, .btn-register {
        padding: 7px 15px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .header-buttons {
        gap: 5px;
    }

    .btn-login, .btn-register {
        padding: 6px 10px;
        font-size: 11px;
    }

    .site-logo img {
        height: 35px;
    }

    .hero-title {
        font-size: 18px;
    }

    .btn-main-register {
        font-size: 25px;
        max-width: 240px;
    }

    .brand-logo-main img {
        max-width: 180px;
    }
}

@media (max-width: 1024px) {
    .header-container {
        justify-content: flex-start !important; 
        gap: 10px; 
    }

    .site-logo {
        margin-left: 0; 
        display: flex;
        align-items: center;
    }

    .site-logo-img {
        width: 130px; 
        height: auto !important;
        object-fit: contain;
    }

    
    .header-buttons {
        margin-left: auto; 
    }
    
    .mobile-menu-toggle {
        margin-right: 5px; 
    }
}

.main-navigation.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--header-gradient);
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 2px solid var(--gold-primary);
    z-index: 999;
}

.main-navigation.active .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        order: 1;
        width: 100%;
        min-width: 100%;
    }

    .hero-visual {
        order: 2;
        width: 100%;
        min-width: 100%;
        margin-top: 20px;
    }

    .provider-slider {
        order: 3;
        width: 100%;
        margin: 30px auto 0;
    }

    .players-img {
        max-width: 80%; 
    }

    .hero-title {
        font-size: 22px;
    }

    .btn-main-register {
        display: block;
        margin: 0 auto;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.2rem; 
        padding: 0 10px;
    }
}

.provider-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.seo-content-section {
    padding: 60px 20px;
    background-color: #1a1a1a; 
}

.content-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap; 
}

.content-image, .content-text {
    flex: 1;
    min-width: 300px;
}

.content-image img {
    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); 
    cursor: pointer;
}

.content-image img:hover {
    transform: translateY(-10px) scale(1.02); 
    filter: brightness(1.1); 
}

.content-text h3 {
    color: var(--gold-primary);
    font-size: 28px;
    margin-bottom: 20px;
}

.content-text p {
    color: #cccccc;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-text strong {
    color: #fff; 
}

.seo-features {
    list-style: none;
    margin-top: 20px;
}

.seo-features li {
    color: var(--gold-primary);
    margin-bottom: 10px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .seo-content-section {
        padding: 40px 15px;
    }
    
    .content-container {
        flex-direction: column; 
        text-align: center;
    }
    
    .content-text h3 {
        font-size: 22px;
    }
    
    .seo-features {
        display: inline-block;
        text-align: left;
    }
}

.seo-features {
    list-style: none;
    margin-top: 25px;
    padding-left: 0;
}

.seo-features li {
    display: flex;
    align-items: center;
    color: #cccccc;
    margin-bottom: 15px;
    font-size: 16px;
}

.seo-features li i {
    color: var(--gold-primary); 
    margin-right: 15px;
    font-size: 20px;
    width: 25px; 
    text-align: center;
    filter: drop-shadow(0 0 5px rgba(255, 223, 130, 0.3));
}

@media (max-width: 768px) {
    .seo-features li {
        justify-content: center; 
        text-align: left;
    }
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 18px;
}

.nav-menu li {
    opacity: 1; 
    transform: none;
}

@media (max-width: 1024px) {
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--header-gradient);
        border-bottom: 2px solid var(--gold-primary);
        flex-direction: column;
        padding: 0; 
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    }

    .main-navigation.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding: 20px 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.4s ease;
    }

    .main-navigation.active .nav-menu li {
        opacity: 1;
        transform: translateY(0);
    }

    .main-navigation.active .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .main-navigation.active .nav-menu li:nth-child(2) { transition-delay: 0.15s; }
    .main-navigation.active .nav-menu li:nth-child(3) { transition-delay: 0.2s; }
    .main-navigation.active .nav-menu li:nth-child(4) { transition-delay: 0.25s; }
    .main-navigation.active .nav-menu li:nth-child(5) { transition-delay: 0.3s; }
    .main-navigation.active .nav-menu li:nth-child(6) { transition-delay: 0.35s; }
    .main-navigation.active .nav-menu li:nth-child(7) { transition-delay: 0.4s; }
}

.mobile-menu-toggle span {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-bottom-nav.symmetry-hardcore {
    display: none; 
}

@media (max-width: 1024px) {
    .mobile-bottom-nav.symmetry-hardcore {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 80px; 
        background: #0a0a0a; 
        border-top: 2px solid #ffde6a; 
        box-shadow: 0 -10px 35px rgba(0, 0, 0, 1), 0 -2px 10px rgba(252, 226, 104, 0.2);
        z-index: 9999;
        align-items: center;
        overflow: visible;
        padding-bottom: env(safe-area-inset-bottom); 
    }

    .nav-item, .nav-item-center {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        text-decoration: none;
    }

    .nav-item-center {
        position: relative;
        overflow: visible;
    }

    .circle-wrapper {
        position: absolute;
        top: -30px; 
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        width: 90px;
    }

    .circle-box {
        width: 72px !important; 
        height: 72px !important;
        background: radial-gradient(circle at 30% 30%, #ffffff 0%, #ffde6a 35%, #9d834a 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 4px solid #111;
        outline: 1.5px solid #ffde6a;
        box-shadow: 
            0 15px 25px rgba(0, 0, 0, 0.7), 
            inset 0 -5px 10px rgba(0, 0, 0, 0.4), 
            inset 0 5px 10px rgba(255, 255, 255, 0.6), 
            0 0 20px rgba(252, 226, 104, 0.4); 
        margin-bottom: 6px;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .circle-box i {
        color: #000000 !important;
        font-size: 32px !important;
        margin: 0 !important;
        animation: iconBounce 3s infinite ease-in-out;
    }

    .nav-item span, .circle-wrapper span {
        font-size: 11px; 
        color: #888;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: 0.3s;
    }

    .circle-wrapper span {
        color: #ffde6a;
        font-size: 12px;
        text-shadow: 0 0 10px rgba(252, 226, 104, 0.5);
    }

    .nav-item.highlight i {
        color: #ffde6a;
        font-size: 26px; 
        filter: drop-shadow(0 0 8px rgba(252, 226, 104, 0.8));
    }
    
    .nav-item.highlight span {
        color: #fff;
    }

    @keyframes iconBounce {
        0%, 100% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-3px) scale(1.05); }
    }

    .circle-wrapper:active .circle-box {
        transform: scale(0.92);
        filter: brightness(1.2);
    }

    body {
        padding-bottom: 90px; 
    }
}

.footer-seo-content {
    background: linear-gradient(to bottom, #0f0f0f, #000000);
    color: #a0a0a0;
    font-family: 'Kanit', sans-serif;
    border-top: 1px solid #333;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.seo-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 222, 106, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); 
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.seo-card:hover {
    border-color: var(--gold-primary);
    background: rgba(255, 222, 106, 0.08); 
    transform: translateY(-12px) scale(1.01); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 
                0 0 15px rgba(255, 223, 130, 0.2); 
}

.seo-card:hover h3 i {
    transform: scale(1.2) rotate(10deg);
    color: #fff;
    transition: all 0.4s ease;
}

.seo-card h3 {
    color: var(--gold-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.seo-card h3 i {
    font-size: 1.2rem;
    transition: 0.3s;
}

.seo-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.seo-tag {
    font-size: 11px;
    background: #1a1a1a;
    color: var(--gold-primary);
    padding: 5px 12px; 
    border-radius: 20px;
    border: 1px solid rgba(255, 223, 130, 0.1); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 5px;
}

.seo-tag:hover {
    color: #000; 
    background: var(--gold-gradient); 
    transform: translateY(-5px) scale(1.1); 
    border-color: var(--gold-primary);
    box-shadow: 0 5px 10px rgba(255, 223, 130, 0.3), 
                0 0 7px rgba(255, 223, 130, 0.2); 
}

.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.95); 
    filter: blur(5px); 
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1); 
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1); 
    filter: blur(0); 
}

@media (max-width: 768px) {
    .footer-seo-content h2 {
        font-size: 22px !important;
        padding: 0 10px;
    }

    .seo-grid {
        grid-template-columns: 1fr; 
        gap: 15px;
        margin-top: 25px;
        padding: 0 10px;
    }

    .seo-card {
        padding: 15px; 
    }

    .seo-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .seo-card p {
        font-size: 13px;
        line-height: 1.4;
    }

    .footer-seo-content div[style*="border-left"] {
        margin-top: 30px !important;
        padding: 20px !important;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .section-divider {
        padding: 15px 10px; 
    }

    .section-divider h2 {
        font-size: 18px; 
        line-height: 1.4;
        padding: 0 5px;
        letter-spacing: 0.3px; 
    }
}

@media (max-width: 480px) {
    .section-divider h2 {
        font-size: 16px;
    }
}

.content-text p strong {
    color: var(--gold-primary);
    background: var(--gold-gradient); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    font-weight: 800;
    display: inline-block;
    position: relative;
    padding: 0 2px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); 
    cursor: pointer;
}

.content-text p strong:hover {
    transform: translateY(-3px) scale(1.08); 
    filter: drop-shadow(0 0 8px rgba(255, 223, 130, 0.6)) brightness(1.3);
    -webkit-text-fill-color: var(--gold-primary); 
}

.content-text p strong::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--gold-gradient);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateX(-50%);
    opacity: 0;
}

.content-text p strong:hover::after {
    width: 100%;
    opacity: 1;
}

@keyframes goldTextShine {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.2) drop-shadow(0 0 2px rgba(255, 223, 130, 0.3)); }
    100% { filter: brightness(1); }
}

.content-text p strong {
    animation: goldTextShine 3s infinite ease-in-out;
}

@media (max-width: 370px) {
    .header-container {
        padding: 0 8px; 
        gap: 5px;
    }

    .site-logo-img {
        width: 110px; 
    }

    .header-buttons {
        gap: 5px; 
    }

    .btn-login, .btn-register {
        padding: 6px 8px; 
        font-size: 11px;  
        border-radius: 6px;
    }

    .hero-title {
        font-size: 18px;
        padding: 0 5px;
    }

    .btn-main-register {
        font-size: 20px;
        padding: 12px 40px;
    }
}