@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;800;900&display=swap');

* {
    font-family: 'Roboto', sans-serif;
}

body {
    background: #0f1419;
    font-family: 'Roboto', sans-serif;
}

#banner {
    padding: 10px 0;
    background: linear-gradient(135deg, #8b2a5c 0%, #c93a6a 100%);
    box-shadow: 0 2px 8px rgba(139, 42, 92, 0.3);
}

#banner .img {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: end;
}

#banner .img img {
    width: 50%;
}

#banner .text {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#banner .text p {
    margin: 0;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.3px;
}

#game {
    padding: 60px 0;
    background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 100%);
}

#game .img img {
    width: 33%;
    justify-content: center;
    filter: drop-shadow(0 8px 24px rgba(139, 42, 92, 0.4));
    transition: transform 0.3s ease;
}

#game .img img:hover {
    transform: scale(1.05);
}

#game .headline h1 {
    color: #d74e7a;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(215, 78, 122, 0.3);
    letter-spacing: 1px;
}

#game .headline p {
    text-align: center;
    color: #e8e8e8;
}

#game .text h4 {
    color: #d74e7a;
}

#game .text p {
    color: #fff;
    margin-top: 12px;
}

#game .text .btn-play {
    margin-top: 24px;
    text-decoration: none;
    background: linear-gradient(135deg, #d74e7a 0%, #c93a6a 100%);
    color: #fff;
    padding: 12px 36px;
    border: none;
    outline: none;
    font-size: 16px;
    display: inline-block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(215, 78, 122, 0.4);
    transition: all 0.3s ease;
}

#game .text .btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(215, 78, 122, 0.5);
}

.btn-playdir {
    padding: 16px 40px;
    text-decoration: none;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    color: #1a1f2e;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-playdir:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
}

header .navbar-brand img {
    width: 110px;
    filter: drop-shadow(0 2px 4px rgba(215, 78, 122, 0.3));
}

.navbar-toggler {
    background: #fff;
    border-radius: 6px;
}

header a.nav-link {
    color: #e8e8e8;
    transition: 0.3s ease;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 6px;
    margin: 0 4px;
}

header a.nav-link:hover {
    color: #d74e7a;
    background: rgba(215, 78, 122, 0.1);
    transform: translateY(-1px);
}

header .btn-custom {
    padding-top: 12px;
    padding-right: 20px;
    padding-bottom: 12px;
    padding-left: 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff9a9b 0%, #fecfef 100%);
    text-decoration: none;
    color: #1a1f2e;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 154, 155, 0.3);
    transition: all 0.3s ease;
}

header .btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 154, 155, 0.4);
}

header .navbar-nav {
    margin-left: 28%;
}

header .navbar-nav li {
    margin-left: 12px;
}

#hero {
    padding: 60px 0;
    background: linear-gradient(rgba(15, 20, 25, 0.85), rgba(26, 31, 46, 0.85)),
        url('../images/hero.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(215, 78, 122, 0.1) 0%,
        rgba(139, 42, 92, 0.1) 100%
    );
    pointer-events: none;
}

#hero .wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

#hero .wrap h1 {
    font-size: 52px;
    color: #d74e7a;
    text-align: center;
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(215, 78, 122, 0.4);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

#hero .wrap span {
    color: #e8e8e8;
    font-size: 14px;
    text-align: center;
    max-width: 600px;
    line-height: 1.6;
}

#hero .wrap p {
    color: #fff;
}

#about {
    padding: 60px 0;
    background: #1a1f2e;
}

#about .img img {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

#about .text h1 {
    color: #d74e7a;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(215, 78, 122, 0.3);
}

#about .text p {
    margin-top: 12px;
    color: #e8e8e8;
    line-height: 1.7;
}

#why {
    padding: 60px 0;
    background: linear-gradient(180deg, #1a1f2e 0%, #0f1419 100%);
}

#why .headline h1 {
    color: #d74e7a;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(215, 78, 122, 0.3);
    margin-bottom: 20px;
}

#why .headline p {
    color: #e8e8e8;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
}

#why .item {
    transition: transform 0.3s ease;
}

#why .item:hover {
    transform: translateY(-8px);
}

#why .item .img {
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    display: flex;
    justify-content: center;
    border-radius: 16px;
    width: 150px;
    margin: auto;
    padding: 8px;
    box-shadow: 0 6px 20px rgba(215, 78, 122, 0.2);
}

#why .item .img img {
    border: 3px solid #d74e7a;
    width: 150px;
    height: 150px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

#why .item:hover .img img {
    border-color: #c93a6a;
    box-shadow: 0 0 20px rgba(215, 78, 122, 0.4);
}

#why .item .desc {
    margin-top: 20px;
}

#why .item .desc h4 {
    text-align: center;
    color: #d74e7a;
    font-weight: 600;
}

#why .item .desc p {
    text-align: center;
    color: #e8e8e8;
    line-height: 1.6;
}

#disclaimer {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0d12 0%, #1a1f2e 100%);
    border-top: 1px solid rgba(215, 78, 122, 0.2);
}

#disclaimer .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#disclaimer .wrap .img {
    display: flex;
    justify-content: center;
}

#disclaimer .wrap .img img {
    width: 10%;
    filter: drop-shadow(0 4px 8px rgba(215, 78, 122, 0.3));
}

#disclaimer .wrap .headline h3 {
    color: #d74e7a;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(215, 78, 122, 0.3);
    margin-top: 20px;
}

#disclaimer .wrap .headline p {
    color: #e8e8e8;
    text-align: center;
    line-height: 1.6;
}

#disclaimer .wrap .logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
}

#disclaimer .wrap .logos a {
    margin: 0 12px;
    transition: transform 0.3s ease;
}

#disclaimer .wrap .logos a:hover {
    transform: scale(1.1);
}

#disclaimer .wrap .logos a img {
    width: 100%;
    height: 36px;
    border-radius: 6px;
}

footer {
    padding-top: 40px;
    padding-bottom: 20px;
    background: #0a0d12;
    border-top: 1px solid rgba(215, 78, 122, 0.2);
}

footer .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .wrap .img a {
    display: flex;
    justify-content: center;
}

footer .wrap .img a img {
    filter: drop-shadow(0 2px 8px rgba(215, 78, 122, 0.3));
    transition: transform 0.3s ease;
}

footer .wrap .img a img:hover {
    transform: scale(1.05);
}

footer .wrap .list {
    margin-top: 20px;
}

footer .wrap .list ul {
    padding-inline-start: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

footer .wrap .list ul li {
    display: inline-block;
    margin: 0 12px;
}

footer .wrap .list ul li a.nav-link {
    color: #e8e8e8;
    transition: 0.3s ease;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 6px;
}

footer .wrap .list ul li a.nav-link:hover {
    color: #d74e7a;
    background: rgba(215, 78, 122, 0.1);
}

footer .wrap .list:last-of-type {
    border-top: 1px solid rgba(215, 78, 122, 0.2);
    border-bottom: 1px solid rgba(215, 78, 122, 0.2);
    padding: 20px 0;
    margin-top: 20px;
}

footer .wrap p {
    color: #e8e8e8;
    margin: 0;
    font-size: 13px;
    margin-top: 12px;
    text-align: center;
}

footer .wrap p span {
    color: #d74e7a;
}

#privacy {
    padding: 40px 0;
    background: #1a1f2e;
}

#privacy h2 {
    color: #d74e7a;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(215, 78, 122, 0.3);
}

#privacy h3,
#privacy h4,
#privacy p,
#privacy li {
    color: #e8e8e8;
}

#privacy h3 {
    color: #d74e7a;
    font-weight: 600;
    margin-top: 24px;
}

#contact {
    padding: 60px 0;
    background: linear-gradient(180deg, #1a1f2e 0%, #0f1419 100%);
}

#contact h1 {
    text-align: center;
    color: #d74e7a;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(215, 78, 122, 0.3);
    margin-bottom: 20px;
}

#contact p {
    text-align: center;
    color: #e8e8e8;
    line-height: 1.6;
}

#contact .form {
    display: flex;
    justify-content: center;
}

#contact .form form {
    width: 70%;
    margin: auto;
}

#contact .form form .form-group {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    gap: 16px;
}

#contact .form form .form-group input {
    background-color: #fff;
    padding: 22px 24px;
    border: 2px solid transparent;
    outline: none;
    width: 48%;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 15px;
}

#contact .form form .form-group input:focus {
    border-color: #d74e7a;
    box-shadow: 0 0 0 3px rgba(215, 78, 122, 0.1);
}

#contact .form form .form-group textarea {
    background-color: #fff;
    padding: 22px 24px;
    border: 2px solid transparent;
    outline: none;
    width: 100%;
    border-radius: 10px;
    resize: vertical;
    transition: all 0.3s ease;
    font-size: 15px;
    font-family: inherit;
}

#contact .form form .form-group textarea:focus {
    border-color: #d74e7a;
    box-shadow: 0 0 0 3px rgba(215, 78, 122, 0.1);
}

#contact .form form button {
    margin-top: 24px;
    text-decoration: none;
    background: linear-gradient(135deg, #d74e7a 0%, #c93a6a 100%);
    color: #fff;
    padding: 14px 40px;
    border: none;
    outline: none;
    font-size: 16px;
    display: inline-block;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(215, 78, 122, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

#contact .form form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 78, 122, 0.5);
}

.age-disclaimer-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 100000;
    background: linear-gradient(
        135deg,
        rgba(10, 13, 18, 0.98) 0%,
        rgba(26, 31, 46, 0.98) 100%
    );
    background-size: 400px;
}

.custom-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    padding: 30px;
    max-width: 600px;
    width: 95%;
    border-radius: 16px;
    background-position: center;
    background-size: 700px;
    background-position: top;
    background-size: 300px;
    box-shadow: 0 20px 60px rgba(215, 78, 122, 0.3);
    background-repeat: repeat no-repeat;
    border: 2px solid rgba(215, 78, 122, 0.2);
}

.mbtn2 {
    background: linear-gradient(135deg, #e94560 0%, #c93a6a 100%);
    text-align: center !important;
    color: #fff;
    transition: all 0.3s ease;
    margin-bottom: 1px;
    display: inline-block;
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.mbtn2:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 69, 96, 0.4);
}

.mbtn {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    text-align: center !important;
    color: #fff;
    transition: all 0.3s ease;
    margin-bottom: 1px;
    display: inline-block;
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.mbtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

.custom-modal h3 {
    color: #1a1f2e;
    font-weight: 800;
    font-size: 48px;
    margin-bottom: 40px !important;
    margin-top: 20px !important;
    text-align: center;
}

.why-wrap {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 100%);
}

.why-title {
    color: #fff;
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw + 0.5rem, 3rem);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(215, 78, 122, 0.3);
}

.why-lead {
    color: #e8e8e8;
    max-width: 1000px;
    font-size: 16px;
    line-height: 1.6;
}

.why-card {
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    border: 0;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(215, 78, 122, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(215, 78, 122, 0.25);
}

.why-card .card-body {
    padding: 2.5rem 2.5rem;
}

.why-h1 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1f2e;
    font-size: 1.3rem;
}

.why-desc {
    color: #606b76;
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

.frame {
    width: 110px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.frame svg {
    opacity: 0.8;
}

@media (max-width: 991.98px) {
    .why-card + .why-card {
        margin-top: 2rem;
    }
    .frame {
        margin-bottom: 1rem;
    }
}

@media (max-width: 600px) {
    #contact .form form {
        width: 100%;
    }

    #contact .form form .form-group {
        flex-direction: column;
    }

    #contact .form form .form-group input {
        width: 100%;
    }

    header .navbar-nav {
        margin-left: 0%;
    }

    .navbar-brand {
        width: 70%;
    }

    #hero .wrap h1 {
        font-size: 36px;
    }

    #hero .wrap span {
        font-size: 13px;
    }

    #game-container {
        height: calc(100vh - 150px);
        min-height: 500px;
    }
}
