:root {
    --primary-color: #ea0000;
    --secondary-color: #1a1a1a;
    --text-color: #ffffff;
    --text-primary-color: #333333;
    --text-secondary-color: #eec982;
    --text-gray: #b3b5be;
    --background-dark: #20222a;
    --nav-link-background-color: #2b2d38;
    --header-background-color: #201f1f;
    --card-featured-background-color: #515567;
    --site-rank-background-color: #fead00;
    --site-rank-border-color: #ffff65;
    --card-background-color: #2c3039;
    --border-radius-lg: 12px;
    --border-radius-md: 8px;
    --border-radius-sm: 8px;
    --container-max-width: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: var(--background-dark);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    display: inline-block;
    line-height: 1;
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.d-flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 0.5rem;
}

.mt-3 {
    margin-top: 24px !important;
}

.mt-4 {
    margin-top: 32px !important;
}

.mt-7 {
    margin-top: 56px !important;
}

.mt-8 {
    margin-top: 64px !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--text-secondary-color) !important;
}

.font-bold {
    font-weight: bold;
}

.btn {
    padding: 0.625rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    min-width: 128px;
    width: 100%;
    border: 1px solid var(--text-color);
    background-color: transparent;
}

/* Navbar */
.navbar {
    background-color: var(--secondary-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin: 0 auto;
    max-width: var(--container-max-width);
}

.navbar-left,
.navbar-right {
    display: flex;
    align-items: center;
}

.navbar-right {
    gap: 0.5rem;
    align-items: flex-start;
}

.navbar-right .menu-toggle {
    margin-top: 0.5rem;
}

.navbar-right a {
    flex: 1;
}

.navbar-right a button {
    width: 100%;
}

.nav-text {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    width: 96px;
    font-size: 1.2rem;
    font-weight: bold;
}

.logo a {
    display: inline-block;
    line-height: 1;
}

.logo img {
    width: 100%;
}

.logo .highlight {
    color: var(--primary-color);
}

.auth-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 198px;
    gap: 0.5rem;
}

.btn-register,
.btn-login {
    white-space: nowrap;
    width: unset;
    min-width: unset;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    background-color: transparent;
}

.btn-bet-now {
    white-space: nowrap;
    width: unset;
    min-width: unset;
    color: var(--text-color);
    background-color: var(--primary-color);
    border: none;
    text-transform: uppercase;
}

.nav-links {
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 0.5rem 0;
    font-weight: bold;
    display: none;
    list-style: none;
    background-color: var(--nav-link-background-color);
    z-index: 9999;
}

.nav-links a {
    padding: 0.5rem 0;
    color: var(--text-color);
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links .active {
    color: var(--primary-color);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: 0.3s;
}

/* Mobile Menu */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 112px;
    left: 0;
    right: 0;
    background-color: var(--nav-link-background-color);
    padding: 1rem;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    padding-left: 1rem;
    list-style-type: none;
    display: none;
}

.dropdown svg {
    margin-left: 0.5rem;
}

/* Hero Section */
.hero {
/*    margin-top: 112px;*/
    padding: 3rem 1rem;
    text-align: center;
    background: url("../imgs/top.jpg") top/cover;
}

.hero-content {
    max-width: 640px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2rem;
    padding: 0 2rem;
    margin: 0 auto;
    text-shadow: 3px 3px 3px gray;
}

.hero-text {
    font-size: 0.875rem;
    padding: 0;
    margin: 0 auto;
    text-shadow: 3px 3px 3px black;
}

main {
    padding: 0 1rem;
}

/* Betting Sites */
.betting-sites {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0;
}

.site-card {
    background-color: rgb(229, 231, 235);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.site-card + .site-card {
    margin-top: 0.75rem;
}

.site-card.featured {
    background-color: var(--card-featured-background-color);
}

.site-card.nottop1 h3,
.site-card.nottop1 li {
    color: #000;
}

.site-header {
    width: 100%;
    display: flex;
    overflow: hidden;
    align-items: center;
    padding: 0 16px;
    font-size: 1rem;
    background-color: var(--primary-color);
}

.site-header h2 {
    display: flex;
    justify-content: center;
    flex: 1;
    text-align: center;
    font-size: 1rem;
    line-height: 42px;
    padding: 0 15%;
}

.site-header .premium-container {
    display: flex;
    justify-content: center;
}

.site-header .premium-container {
    position: relative;
}

.site-header .premium {
    overflow: hidden;
    display: flex;
    width: 42px;
    height: 42px;
    transform: translateX(-6px);
    align-items: center;
    justify-content: center;
    position: relative;
}

.site-header .premium p {
    overflow: hidden;
    position: absolute;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    top: 0;
    left: 0;
    right: 0;
    bottom: -2px;
    line-height: 42px;
}

.site-body {
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    gap: 1rem;
}

.site-info {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    text-align: center;
    border-radius: 100%;
    color: #000;
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    border: 1px solid var(--site-rank-border-color);
    background-color: var(--site-rank-background-color);
}

.site-info .top-1 {
    align-self: center;
    width: 36px;
}

.site-info .top-1 img {
    width: 100%;
}

.site-image {
    margin-top: -1rem;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.site-image img {
    max-width: 100%;
}

.featured .site-image {
    margin-top: 1rem;
}

.site-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-size: 1rem;
    margin-top: 1.5rem;
}

.site-rating .rating {
    display: flex;
    margin-top: 4px;
}

.site-features {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.5rem;
    position: relative;
    list-style-type: none;
    color: var(--text-gray);
}

.site-features li {
    display: flex;
    align-items: center;
    width: 100%;
}

.site-features img {
    margin-right: 0.5rem;
}

.featured .site-features {
    color: var(--text-secondary-color);
}

.site-actions {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.site-actions a:first-child {
    grid-area: 1 / 1 / 2 / 2;
}

.site-actions a:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
}

.site-actions > a {
    width: 100%;
}

.featured .site-actions {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
}

.featured .site-actions a:first-child {
    grid-area: 1 / 1 / 2 / 3;
}

.featured .site-actions a:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
}

.featured .site-actions a:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3;
}

.featured .site-actions > a {
    width: 100%;
}

.site-actions button {
    width: 100%;
}

.site-footer {
    position: relative;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 4fr;
    gap: 1rem;
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 0;
    height: 1px;
    width: calc(100% - 2rem);
    background: rgba(255, 255, 255, 0.1);
}

.site-footer-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.site-footer-item > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.5rem;
}

.site-footer-item .badge {
    text-transform: uppercase;
    font-weight: bold;
}

.badge {
    display: inline-flex;
    background-color: var(--primary-color);
    border-radius: 0.25rem;
    padding: 0.3125rem 0.875rem;
    color: var(--text-color);
    line-height: 1.4;
    cursor: pointer;
    text-decoration: none;
}

.badge:hover {
    text-decoration: none;
}

.featured .site-actions .btn-bet {
    background-color: var(--accent-color);
    ;
    border-color: #ff0000;
    color: white;
    flex: 1;
}

.site-actions .btn-bet {
    font-weight: bold;
    background-color: #ffc310;
    border: 1px solid var(--text-secondary-color);
    color: var(--text-primary-color);
    text-transform: uppercase;
}

.site-actions .btn-details {
    border-color: var(--text-gray);
    color: var(--text-gray);
    background: #4e4f51;
}

/* Game Categories */
.game-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.game-card {
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

/* Game Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.game-grid a:hover {
    text-decoration: none;
}

.game-item {
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

.game-item:hover {
    transform: scale(1.05);
}

.game-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.game-item span {
    position: absolute;
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
    bottom: 2rem;
    left: 0;
    width: 100%;
}

.game-card a {
    width: 100%;
    display: inline-block;
}

.game-card a:hover {
    text-decoration: none;
}

.game-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.game-card span {
    position: absolute;
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    bottom: 2rem;
    left: 0;
    width: 100%;
    color: #fff;
}

/* Intro section */
.intro-section {
    padding: 1rem;
    margin: 0 auto;
    max-width: var(--container-max-width);
    background-color: var(--card-background-color);
    border-radius: var(--border-radius-lg);
}

.intro-section > div {
    max-height: 500px;
    overflow: auto;
}

.intro-section .custom-scroll {
    padding-right: 12px;
    max-height: 500px;
    overflow: auto;
}

.intro-section img {
    max-width: 100%;
}

.intro-section h2 a {
    color: white;
    text-decoration: none;
}

.intro-section h2 a:hover {
    text-decoration: underline;
}

.intro-section p + p {
    margin-top: 1.5rem;
}

/* Blog Section */
.blog-section {
    position: relative;
    margin: 0 auto;
    padding-bottom: 2rem;
    max-width: var(--container-max-width);
    border-radius: var(--border-radius-lg);
}

.blog-section::after {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(178, 180, 189, 0.2);
}

.blog-section:last-child:after {
    display: none;
}

.blog-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.blog-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin: 0 auto;
}

.blog-card {
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card > a {
    width: 100%;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3 {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: normal;
}

.blog-card h3 a {
    color: var(--text-color);
    line-height: 1.4;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    padding: 4rem 1rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.footer-section h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-section:first-child h3 {
    margin-bottom: 2rem;
}

.footer-section ul li a {
    display: flex;
    align-items: center;
}

.footer-section ul li svg {
    margin-right: 8px;
    fill: var(--primary-color);
}

.footer-section ul li:hover svg {
    fill: var(--primary-color);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-links {
    gap: 2rem;
}

.contact-section > p {
    margin-top: 1rem;
}

.contact-section .contact-info a {
    color: var(--text-gray);
}

.contact-info a {
    padding: 0 0.75rem;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info a:first-child {
    padding-left: 0;
}

.contact-info a:last-child {
    padding-right: 0;
}

.another-footer {
    background-color: #000;
    padding: 1.25rem 1rem;
}

.another-footer div {
    gap: 2rem;
    justify-content: space-between;
}

.hashtags {
    color: var(--primary-color);
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* .main-detail {
  margin-top: 60px;
} */

.navigation {
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation a {
    white-space: nowrap;
    color: var(--text-color);
    text-decoration: none;
}

.navigation a.active {
    color: var(--text-secondary-color);
}

.navigation a:hover {
    text-decoration: underline;
}

.custom-scroll::-webkit-scrollbar {
    width: 6px;
}

.custom-scroll::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: rgba(59, 61, 59, 1);
}

.custom-scroll::-webkit-scrollbar-thumb {
    width: 8px;
    border-radius: 8px;
    background-color: var(--primary-color);
}

#scrollToTopBtn {
    display: none;
    position: fixed;
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 24px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 100%;
    background-color: var(--primary-color);
    backdrop-filter: blur(70px);
}

#scrollToTopBtn svg {
    fill: white;
}

@media (min-width: 463px) {
    #scrollToTopBtn {
        bottom: 120px;
    }
}

@media (min-width: 576px) {
    main {
        margin-top: -2rem;
    }

    .auth-buttons {
        max-width: unset;
    }

    .hero {
/*        margin-top: 69px;*/
    }

    .nav-links.active {
        top: 69px;
    }

    .site-footer-item div {
        flex-direction: row;
        justify-content: flex-start;
    }

    .site-footer-item > div > * {
        flex: 1;
    }
}

/* Desktop Styles */
@media (min-width: 768px) {
    main {
        margin-top: -10rem;
        padding: 0 1rem;
    }

    /* .main-detail {
    margin-top: 144px;
  } */

    .navbar {
        padding: 0 1rem;
    }

    .navbar-container {
        display: flex;
        max-width: var(--container-max-width);
        flex-wrap: wrap;
        margin: auto;
        padding: 1rem 0;
    }

    .logo {
        width: 120px;
    }

    .hero {
/*        margin-top: 73px;*/
        height: 400px;
    }

    .hero-title {
        font-size: 1.685rem;
        padding: 0;
        margin: 0 auto;
    }

    .betting-sites {
        padding: 0;
    }

    .site-header .premium-container {
        transform: translateX(-32px);
        width: 30%;
        margin-right: -30%;
    }

    .site-body {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        column-gap: 3rem;
    }

    .site-info {
        grid-area: 1 / 1 / 3 / 2;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding-right: 3rem;
    }

    .site-info > * {
        flex-shrink: 0;
    }

    .site-info .site-image {
        margin-top: 0;
        width: 164px;
    }

    .site-info::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 100%;
        width: 1px;
        background: rgba(255, 255, 255, 0.1);
    }

    .site-rating {
        margin-top: 0;
        width: auto;
    }

    .site-features {
        grid-area: 1 / 2 / 2 / 4;
        margin-top: 0;
    }

    .site-actions {
        grid-area: 2 / 2 / 3 / 4;
        margin-top: 0;
        align-items: center;
    }

    /* Game categories */
    .game-categories {
        grid-template-columns: repeat(6, 1fr);
    }

    /* Game grid */

    .game-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .intro-section {
        padding: 2rem 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .footer-section {
        text-align: left;
    }

    .footer-section:nth-child(3) {
        grid-area: 2 / 2 / 3 / 3;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fit,
                minmax(calc((1100px - 3 * 1.5rem - 64px) / 4), 1fr));
    }

    #scrollTopBtn {
        bottom: 88px;
    }
}

@media screen and (min-width: 992px) {
    .menu-toggle {
        display: none;
    }

    .main-navbar div {
        background-color: var(--nav-link-background-color);
        margin: 0 auto;
        position: fixed;
        display: flex;
        justify-content: center;
        top: 73px;
        left: 0;
        width: 100%;
        z-index: 999;
        padding: 0.5rem 1rem;
    }

    .nav-links {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
        padding: 0;
        gap: 2rem;
    }

    .dropdown-content {
        padding-left: 0;
        list-style-type: none;
        display: none;
        position: absolute;
        background-color: var(--nav-link-background-color);
        min-width: 200px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .dropdown:hover .dropdown-content {
        display: block;
        top: 100%;
        padding-top: 8px;
    }

    .dropdown-content a {
        padding: 0.5rem 1rem;
        display: block;
    }

    .dropdown-content a:hover {
        background-color: var(--primary-color);
        color: var(--text-color);
    }

    .hero {
/*        margin-top: 118px;*/
    }
}

@media screen and (min-width: 1100px) {
    main {
        padding: 0 1rem;
    }

    .navbar {
        padding: 0 1rem;
    }

    .navbar-container {
        padding: 1rem 0;
    }

    .navbar-left .nav-text {
        display: block;
        padding-left: 4rem;
        position: relative;
    }

    .navbar-left .nav-text::before {
        content: " ";
        position: absolute;
        top: 0;
        left: 0;
        width: 2px;
        height: 100%;
        transform: translateX(32px);
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-links {
        width: var(--container-max-width);
    }

    .betting-sites {
        padding: 0;
    }

    .site-header .premium-container {
        transform: translateX(2px);
        width: auto;
        margin-right: 0;
    }

    .site-body {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
        column-gap: 3rem;
    }

    .featured .site-body {
        grid-template-columns: repeat(8, 1fr);
        column-gap: 1rem;
        padding: 1rem 1rem 1.5rem;
    }

    .site-info {
        grid-area: 1 / 1 / 2 / 2;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding-right: 3rem;
    }

    .featured .site-info {
        grid-area: 1 / 1 / 2 / 5;
    }

    .featured .site-info .top-1 {
        display: flex;
        align-items: center;
        padding-top: 0.5rem;
        width: unset;
    }

    .site-rating {
        align-items: flex-start;
        flex-shrink: unset;
    }

    .featured .site-rating {
        flex-shrink: unset;
    }

    .site-features {
        grid-area: 1 / 2 / 1 / 4;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .featured .site-features {
        grid-area: 1 / 5 / 2 / 8;
        padding-left: 2rem;
    }

    .site-features::after {
        display: none;
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 100%;
        width: 1px;
        background: rgba(255, 255, 255, 0.1);
    }

    .site-actions {
        grid-area: 1 / 4 / 1 / 5;
        margin-top: 0;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .featured .site-actions {
        grid-area: 1 / 8 / 2 / 9;
        margin-top: 0;
    }

    .site-footer {
        position: relative;
        grid-template-columns: repeat(4, 1fr);
        padding: 1.5rem 1rem;
    }

    .site-footer-item {
        position: relative;
    }

    .site-footer-item div {
        justify-content: center;
    }

    .site-footer-item::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 100%;
        width: 1px;
        background: rgba(255, 255, 255, 0.1);
    }

    .site-footer-item:last-child::after {
        display: none;
    }

    .site-footer-item > div > * {
        flex: unset;
    }

    .featured .site-actions {
        display: flex;
    }

    .featured .site-image {
        width: 218px;
    }

    /* Game grid */
    .game-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: 2fr 1fr;
    }

    .footer-section:nth-child(2) {
        grid-area: 1 / 2 / 1 / 3;
    }
}
