* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important
}

/* Slider Arrow Styles */
.hero-slider {
    position: relative;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.slider-arrow {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    color: white;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.slider-arrow-left {
    margin-left: 20px;
}

.slider-arrow-right {
    margin-right: 20px;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

p,
ul,
ol,
dl,
pre,
ds,
fieldset,
figure {
    margin: 0 !important
}

ul,
ol {
    padding: 0 !important
}

a {
    text-decoration: none
}

body {
    color: #000;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: #F7F7F7;
    background-image: url(../images/body.png);
    background-repeat: no-repeat;
    background-position: top center
}

p {
    margin: 0 !important;
    padding: 0 !important
}

a:hover {
    text-decoration: none !important
}

ul,
li {
    list-style: none none;
    margin: 0;
    padding: 0
}

h1 {
    font-size: 22px
}

h2 {
    font-size: 20px
}

h3 {
    font-size: 18px
}

h4,
h5,
h6 {
    font-size: 16px
}

.main-h1 {
    opacity: 0
}

.category-h1 {
    padding: 16px 0
}

.gameplay-h1 {
    padding: 16px 0;
}

header {
    background: #E6A567;
    background: linear-gradient(330deg, #e6a567ff 0%, #ffc107ff 100%);
    box-shadow: #64646f33 0 7px 29px 0
}

.page-overlay {
    position: fixed;
    inset: 0;
    background: #0006;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 999
}

.page-overlay.active {
    opacity: 1;
    visibility: visible
}

.side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    box-shadow: #11111a1a 0 8px 24px, #11111a1a 0 16px 56px, #11111a1a 0 24px 80px;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column
}

.side-drawer.active {
    transform: translateX(0)
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #eee
}

.drawer-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-top: 5px
}

.drawer-close {
    background: none;
    border: 0;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #53320E
}

.drawer-content {
    padding: 10px 0;
    overflow-y: auto
}

.drawer-list {
    list-style: none
}

.drawer-item {
    display: grid;
    grid-template-columns: 22px 1fr 16px;
    align-items: center;
    gap: 10px;
    padding: 16px;
    cursor: pointer;
    transition: background-color .2s ease;
    border-bottom: 1px solid #ededed
}

.drawer-item:hover {
    background: #f8f9fa
}

.drawer-thumb {
    width: auto;
    border-radius: 4px;
    overflow: hidden
}

.drawer-thumb img {
    width: 18px;
    height: 18px;
    object-fit: cover;
    display: block
}

.drawer-text {
    color: #333;
    font-weight: 500
}

.drawer-arrow {
    width: 10px;
    height: 10px;
    justify-self: end
}

.header-section {
    max-width: 1200px;
    height: 105px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header-items {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px
}

.search-box {
    min-width: 280px;
    height: 35px;
    background: #fff;
    box-shadow: #64646f33 0 7px 29px 0;
    border-radius: 6px;
    padding: 0 8px;
    display: grid;
    grid-template-columns: 1fr 26px;
    align-items: center;
    position: relative
}

.search-box input[type=text] {
    background: none;
    border: 0
}

button.search-btn {
    background: none;
    border: 0
}

.main-nav ul {
    display: flex;
    gap: 16px
}

.main-nav ul li a {
    display: block;
    color: #53320E;
    font-weight: 600;
    text-decoration: none;
    transition: all .5s
}

.main-nav ul li a:hover {
    text-decoration: underline !important
}

.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: #64646f4d 0 10px 40px 0;
    z-index: 1000;
    margin-top: 5px;
    display: none;
    max-height: 400px;
    overflow-y: auto
}

.search-dropdown.active {
    display: block
}

.search-suggestions {
    padding: 10px 0
}

.suggestion-item {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 8px 15px;
    cursor: pointer;
    transition: background-color .2s ease
}

.suggestion-thumb {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    overflow: hidden;
    background: #f0f0f0
}

.suggestion-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.suggestion-text {
    font-weight: 500;
    color: #333;
    font-size: 13px
}

.suggestion-item:hover {
    background-color: #f8f9fa
}

.suggestion-main {
    display: flex;
    align-items: center;
    gap: 10px
}

.suggestion-category {
    font-size: 12px;
    color: #666;
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 12px;
    justify-self: end
}

.search-popular {
    border-top: 1px solid #e9ecef;
    padding: 15px
}

.search-popular h4 {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600
}

.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.tag {
    background: #E6A567;
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color .2s ease
}

.tag:hover {
    background: #d4955a
}

.main-nav-section {
    display: flex;
    gap: 20px;
    align-items: center
}

button.menu-toggle {
    background: none;
    border: 0;
    cursor: pointer
}

button#drawerClose img {
    width: 16px
}

.wrapper {
    margin-top: 60px
}

.container {
    max-width: 1000px;
    margin: 0 auto
}

.content-grid {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 12px;
    align-items: start
}

.left-hero {
    padding: 10px;
    border-radius: 10px;
    background: #fff
}

.hero-slider {
    position: relative;
    height: 370px;
    border-radius: 10px;
    overflow: hidden;
    background: #eaeaea;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab
}

.hero-slider .slides {
    position: absolute;
    inset: 0
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    display: none;
    transition: opacity .4s ease;
    opacity: 0
}

.hero-slider .slide.active {
    display: block;
    opacity: 1
}

.hero-slider.dragging {
    cursor: grabbing
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.slider-info {
    width: 98%;
    position: absolute;
    right: 0;
    bottom: 9px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 0 12px;
    background: #ffffffeb;
    height: 50px;
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9
}

.slider-title {
    font-size: 16px;
    color: #333;
    font-weight: 600
}

.slider-dots {
    display: flex;
    gap: 6px;
    position: relative;
    z-index: 9999
}

.slider-dots .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #D9D9D9;
    padding: 0;
    cursor: pointer;
    border: 2px solid #a6a6a62e;
    pointer-events: auto
}

.slider-dots .dot.active {
    background: #FBB60E;
    border-color: #DF9D5E
}

.right-rail {
    min-height: 283px
}

.slides {
    background: #fff;
    padding: 16px
}

.game-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr))
}

.game-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr)
}

.game-grid.cols-4 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr))
}

.game-grid.cols-8 {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr))
}

.game-card {
    display: block;
    background: #F7F7F7;
    border-radius: 12px;
    padding: 6px;
    text-decoration: none;
    color: #111;
    transition: box-shadow .2s ease, transform .2s ease;
    box-shadow: #0000001a 0 10px 50px
}

.game-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px #0000001f;
    box-shadow: #3c40434d 0 1px 2px 0px, #3c404326 0 2px 6px 2px
}

.game-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden
}

.badge {
    position: absolute;
    top: 6px;
    right: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #000;
    padding: 4px 8px;
    border-radius: 12px
}

.badge-new {
    background: #FFB703
}

.badge-tip {
    background: #3FA9F5
}

.game-title {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    letter-spacing: .2px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.new-game-section {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 22px;
    margin-top: 30px;
    border: 2px solid #CEEAFE;
    position: relative
}

.new-game-section::after {
    content: "";
    position: absolute;
    left: -5%;
    bottom: 17%;
    background-image: url(../images/new-game-after.png);
    width: 134px;
    height: 170px;
    z-index: -1
}

.new-game-section::before {
    content: "";
    position: absolute;
    right: -2%;
    bottom: 17%;
    background-image: url(../images/new-game-before.png);
    width: 38px;
    height: 39px;
    z-index: -1
}

.beliebte-game-section {
    width: 100%;
    background: #E3EFF8;
    border-radius: 20px;
    padding: 22px;
    margin-top: 30px;
    border: 2px solid #C7E4F9;
    position: relative
}

.beliebte-game-section::after {
    content: "";
    position: absolute;
    left: -5%;
    bottom: 0;
    background-image: url(../images/b-game-after.png);
    width: 440px;
    height: 476px;
    z-index: -1
}

.beliebte-game-section::before {
    content: "";
    position: absolute;
    right: -4%;
    bottom: 7%;
    background-image: url(../images/b-game-before.png);
    width: 120px;
    height: 123px;
    z-index: -1
}

.angesagte-game-section {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 22px;
    margin-top: 30px;
    border: 2px solid #CEEAFE;
    position: relative
}

.angesagte-game-section::before {
    content: "";
    position: absolute;
    right: -6%;
    bottom: 17%;
    background-image: url(../images/a-game-before.png);
    width: 246px;
    height: 238px;
    z-index: -1
}

.unsere-game-section {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 22px;
    margin-top: 30px;
    border: 2px solid #CEEAFE;
    position: relative
}

.sm {
    height: 127px
}

.sm .game-thumb {
    height: 79px;
    border-radius: 6px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.sm .game-thumb img {
    width: 96px;
    height: 74px;
    border-radius: 6px
}

.sm .game-title {
    font-size: 13px
}

.lg {
    height: 188px
}

a.game-card.lg {
    padding: 10px
}

.horizontal {
    height: 96px;
    display: grid;
    align-items: center;
    gap: 10px;
    grid-template-columns: 110px auto
}

.horizontal .game-title {
    height: auto
}

.horizontal .game-thumb img {
    width: 110px;
    height: 84px;
    border-radius: 6px
}

.mt-16 {
    margin-top: 16px
}

.mt-24 {
    margin-top: 24px
}

.mt-32 {
    margin-top: 32px
}

.category-name {
    background: #6DE2FF;
    padding: 4px 8px;
    font-size: 12px;
    color: #000;
    border-radius: 50px;
    max-width: 80px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px
}
.title div:first-child{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.title h2 {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    gap: 4px
}

.title a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: #FFC107;
    border: 2px solid #fff;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    border-radius: 50px;
    transition: all .2s;
    box-shadow: #32325d40 0 13px 27px -5px, #0000004d 0 8px 16px -8px
}

.title a:hover {
    box-shadow: #26394d 0 20px 30px -10px;
    transform: translateY(-2px)
}

.lg .game-thumb img {
    width: 165px;
    height: 124px
}

.xl .game-thumb img {
    width: 212px;
    height: 159px
}

.xl .game-title {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    height: 34px;
    letter-spacing: .2px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.content-section {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 22px;
    margin-top: 30px;
    position: relative;
    color: #484848;
    line-height: 20px;
    font-size: 16px
}

.content-section h1 {
    display: block;
    margin-bottom: 10px
}

.content-section h2 {
    display: block;
    margin: 20px 0 8px
}

footer {
    background: #fff;
    margin-top: 30px
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0
}

.footer-logo img {
    height: 66px
}

.footer-menu ul {
    display: flex;
    gap: 10px
}

.footer-menu ul li a {
    display: block;
    color: #53320E;
    font-weight: 500;
    transition: all .5s
}

.footer-menu ul li a:hover {
    text-decoration: underline !important
}

.footer-bottom {
    border-top: 1px solid #ededed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0
}

.pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    align-items: center;
    justify-content: center;
    margin-top: 30px !important
}

.pagination li {
    display: inline-block
}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background: #fff;
    color: #000;
    cursor: pointer;
    transition: .3s;
    border: 0;
    box-shadow: #64646f33 0 7px 29px 0;
    text-decoration: none
}

.pagination li a:hover {
    background: #cbcbcb7c
}

.pagination li a.active {
    background: #2BA7FF;
    color: #fff
}

.category-section {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 22px;
    margin-top: 30px;
    border: 2px solid #CEEAFE;
    position: relative
}

.game-categories {
    width: 100%;
    padding: 22px;
    margin-top: 30px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px
}

.category a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 36px;
    background: #fff;
    border-radius: 50px;
    border: 2px solid #CEEAFE;
    padding: 0 12px;
    font-weight: 500;
    color: #484848;
    box-shadow: #64646f33 0 7px 29px 0;
    transition: box-shadow .2s ease, transform .2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 36px;
    background: #fff;
    border-radius: 50px;
    border: 2px solid #CEEAFE;
    padding: 0 12px;
    font-weight: 500;
    color: #484848;
    box-shadow: #64646f33 0 7px 29px 0;
    transition: box-shadow .3s ease, transform .2s ease
}

.category a:hover {
    transform: translateY(-2px);
    background-color: #2BA7FF;
    color: #fff;
    border-color: #2BA7FF
}

.category a svg {
    width: 10px;
    height: 10px
}

.breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    list-style: none;
    margin: 0;
    height: 30px;
    padding: 0 8px!important;
    background: #fff;
    align-items: center;
    border-radius: 6px
}

.breadcrumb li {
    display: inline-block
}

.breadcrumb li+li::before {
    content: "/";
    padding: 0 8px;
    color: #999
}

.breadcrumb a {
    text-decoration: none;
    color: #999;
    font-weight: 500;
    font-size: 14px
}

.breadcrumb a:hover {
    text-decoration: underline
}

.breadcrumb::-webkit-scrollbar {
    height: 6px
}

.breadcrumb::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px
}

.play-section {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
}

.play {
    width: 100%;
    border-radius: 10px
}

.play img {
    width: 100%;
    border-radius: 10px
}

.mobile {
    display: none
}

.game-info-box {
    background: #FBB60E;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #fff;
    margin-top: 10px
}

.game-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start
}

.game-info-title {
    font-size: 24px;
    font-weight: 700
}

.game-tag {
    background: #fff;
    color: #000;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block
}

.game-tag a {
    color: #000
}

.game-actions {
    display: flex;
    gap: 10px;
    align-items: center
}

.btn {
    background: #2BA7FF;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border: 1px solid #1881CB;
    box-shadow: #0000001a 0 10px 15px -3px, #0000000d 0 4px 6px -2px;
    transition: all .3s
}

.btn:hover {
    background: #007acc;
    transform: translateY(-2px)
}

.icon {
    font-size: 16px
}

.fullscreen {
    background: #E3A307;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: #0000001a 0 10px 15px -3px, #0000000d 0 4px 6px -2px;
    border: 1px solid #FCD767;
    transition: all .3s
}

.mobile-icon {
    display: none
}

.search-toggle {
    display: none
}

.play-button a {
    display: none;
    padding: 12px 16px;
    background: #f6340b;
    border-radius: 50px;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    box-shadow: #0000001a 0 10px 50px
}

.game-play-cover {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(235deg, #33b8ff 0%, #176e9c 100%);
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    min-height: 600px;
    position: relative;
    height: 100%;
}

.game-play-cover .play-button {
    background: #fff3;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid #ffffff4d
}

.game-play-cover .blured-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.game-play-cover .blured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(30px)
}

.game-play-cover .play-button-text {
    position: absolute;
    top: 60%;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    background: #2ba7ff;
    padding: 8px 26px;
    border-radius: 30px
}

.game-actions .btn {
    transition: all .3s ease;
    cursor: pointer;
    position: relative
}

.game-actions .btn:disabled {
    cursor: not-allowed;
    pointer-events: none
}

.game-actions .btn.voted {
    background-color: #4CAF50;
    color: #fff;
    transform: scale(1.05)
}

.game-actions .btn.voted .icon img {
    filter: brightness(0) invert(1)
}

.game-actions .btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px #0003
}

.game-actions .btn:active:not(:disabled) {
    transform: translateY(0)
}

.game-actions .btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.error-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 40px 20px
}

.error-inner {
    text-align: center;
    max-width: 1000px;
    width: 100%
}

.error-inner img {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px
}

.error-inner span {
    display: block;
    font-size: 40px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4
}

.error-inner p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px
}

.error-home-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #2BA7FF;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all .3s ease;
    border: 2px solid #1881CB;
    box-shadow: #0000001a 0 10px 15px -3px, #0000000d 0 4px 6px -2px;
    margin-top: 20px
}

.error-home-btn:hover {
    background: #007acc;
    transform: translateY(-2px);
    box-shadow: #26394d 0 20px 30px -10px;
    text-decoration: none;
    color: #fff
}

.play-button a {
    display: none;
    padding: 12px 16px;
    background: #f6340b;
    border-radius: 50px;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    box-shadow: #0000001a 0 10px 50px
}

.global-content {
    line-height: 1.5
}

.global-content p {
    margin-bottom: 1rem !important
}

.contactForm {
    display: flex;
    max-width: 600px;
    margin: 20px auto;
    flex-direction: column
}

.form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    width: 100%
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    min-width: 120px
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color .3s ease;
    width: 100%
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f6340b;
    box-shadow: 0 0 0 2px #f6340b1a
}

.form-group input[type="submit"] {
    background: #4caf50;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .3s ease;
    width: 100%;
    height: 40px
}

.form-group input[type="submit"]:hover {
    background: #e02a0b;
    width: 100%
}

.form-response {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 4px;
    border-left: 4px solid #28a745;
    margin: 20px 0
}

.form-response p {
    margin: 0;
    color: #155724
}

.game-name {
    background: #e9ecef;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 500;
    color: #495057;
    display: inline-block;
    margin-left: 8px
}

ul.link-games {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

ul.link-games li a {
    color: #000
}

ul.link-games li a:hover {
    color: #ff5722
}

a.search-more-button {
    display: flex;
    width: 80%;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    color: #fff;
    background: #e6a568;
    border-radius: 30px;
    margin: 0 auto
}
.mobile-game-image {
    border-radius: 12px;
    width: 180px;
    height: 135px;
    object-fit: cover;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap:1rem;
    padding: 2rem 0;
}


.footer-block ul{
    display: flex; 
    flex-direction:column;
    gap: 12px;
}
.footer-block ul li a, .footer-block  a{
    color: #0e5dab;
}
.footer-block h5{
    width: 100%;
    min-height: 30px;
    padding: 8px 0 16px 0;
    text-transform: uppercase;
}

.hero-slider {
    position: relative;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.slider-arrow {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    color: white;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.slider-arrow-left {
    margin-left: 20px;
}

.slider-arrow-right {
    margin-right: 20px;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}