/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* Reset */
html,body{
    margin:0;
    padding:0;
    height:100%;
    scroll-behavior: smooth;
}
*{
    box-sizing:border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}


/* Navbar Design */

nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #0c0c0c;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    padding: 0 20px;
    z-index: 1000;
}
nav>ul{
    list-style: none;
    display: flex;
    gap: 20px;
    padding:0;
    margin:0;
}
nav>.logo>img{
    width: 120px;
    border-radius: 50%;
    margin-right: 20px;
}
nav>ul>li>a{
    color: #d6d6d6;
    font-size: 18px;
    font-weight:600;
    cursor: pointer;
    text-decoration:none;
    font-size:16px;
    margin-inline:10px;
    transition:.2s ease-in;
}
nav>ul>li>a:hover{
    color: #ffffff;
}

/* Opening Design */
.opening-design{
    position: relative;
    top: 100px;
    left: 0;
    width: 100%;
    height:auto;
    background-color: #ffffff;
    text-align:center;
background: #ffa070;
background: linear-gradient(90deg, rgb(255, 129, 66) 0%, rgb(255, 121, 18) 48%, rgba(255, 171, 92, 1) 100%);
    background-size: cover;
    background-position: center;
    padding: 50px 20px;
}
.opening-design > h3 {
    font-size: 54px;
    font-weight: bold;
    color: #f5f5f5; /* Çok açık beyaz ton, direkt beyaz değil */
    text-align: center;
    margin: 20px 0;
    display: block;
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}
.opening-design>p{
    font-size: 23px;
    color: #fdfdfd;
    margin: 0 20px;
    text-transform: capitalize;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.features{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 100px;
    list-style-type:none;
    padding:0;
}
.features>li{
    margin-inline:20px;
}
.features>li>pre>i{
    font-size: 40px;
    padding:20px;
    margin-bottom:10px;
    color: #ffffff;
}
.features>li>pre>b{
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
}
.opening-design>button{
    background-color: #ff5722;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top:150px;
    transition: transform 0.3s ease;
}
.opening-design>button:hover{
    background-color: #e64a19;
    transform: scale(1.05);
}

/* Divider */

.divider{
    position: relative;
    top:50px;
    width: 100%;
    height: 5px;
    background-color: #ececec;
    margin: 50px 0;
    border:0;
}

/* Why Us */
.why-us{
    position: relative;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}
.why-us>h2{
    font-size: 34px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.why-us>p{
    font-size: 18px;
    color: #555555;
    margin: 0 20px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    text-align:center;
}
.why-us>ul{
    list-style-type: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.why-us>ul>li{
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.why-us>ul>li>i{
    font-size: 24px;
    color: #333333;
    margin-bottom: 10px;
}

/* Game Catalog */
.game-catalog{
    position: relative;
    width: 100%;
    height: auto;
    background-color: #ff9028;
    padding: 50px 20px;
    text-align: center;
}
.game-catalog>h2{
    text-align:left;
    font-size: 34px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.catalog{
    width:100%;
    height: auto;;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}
.game-card{
    background-color: #ffffff;
    border-radius: 10px;
    width: 300px;
    height:400px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}
.game-card:hover{
    transform: scale(1.05);
}
.game-card>img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.game-card>button{
    background-color: #ff5722;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top:20px;
}
.game-card>button:hover{
    background-color: #e64a19;
    transform: scale(1.05);
    cursor:not-allowed;
}

/* Business Model */
.business-model{
    position: relative;
    width: 100%;
    height: auto;
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}
.business-model>h2{
    font-size: 34px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.business-model>p{
    font-size: 18px;
    color: #555555;
    margin: 0 20px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    text-align:center;
}
.business-model>ul{
    list-style-type: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.business-model>ul>li{
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.business-model>ul>li>i{
    font-size: 24px;
    color: #333333;
    margin-bottom: 10px;
}

/* More Information */
.more-information{
    position: relative;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}
.more-information>h2{
    font-size: 34px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.more-information>p{
    font-size: 18px;
    color: #555555;
    margin: 0 20px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    text-align:center;
}

.more-information>h5{
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    margin-top: 30px;
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer{
    position: relative;
    width: 100%;
    height: auto;
    background-color: #0c0c0c;
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}
footer>p{
    font-size: 16px;
    margin: 0;
    color: #d6d6d6;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
footer>ul{
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
footer>ul>li>a{
    color: #d6d6d6;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}
footer>ul>li>a:hover{
    color: #ffffff;
}
footer>ul>li>i{
    font-size: 24px;
    color: #d6d6d6;
    transition: color 0.3s ease;
}
footer>ul>li>i:hover{
    color: #ffffff;
}

/* Responsive */

/* Responsive Design */

/* Tablet ve küçük laptoplar */
@media screen and (max-width: 1024px) {

    /* Navbar */
    nav {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        padding: 10px;
        height: auto;
    }

    nav .logo img {
        width: 80px;
        margin-right: 10px;
    }

    nav ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    nav ul li a {
        font-size: 14px;
        padding: 5px 8px;
    }

    /* Opening */
    .opening-design {
        padding: 120px 20px 80px;
    }

    .opening-design h3,
    .opening-design p {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        max-width: 800px;
        display: block;
    }

    .opening-design h3 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .opening-design p {
        font-size: 18px;
    }

    .features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 50px;
        width:95%;
    }

    .features li {
        width: 90%;
    }

    .game-catalog h2 {
        font-size: 30px;
    }

    .catalog {
        flex-wrap: wrap;
        justify-content: center;
    }

    .game-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        background-color: #ffffff;
        border-radius: 10px;
        width: 45%;
        max-width: 300px;
        overflow: hidden;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease;
        padding-bottom: 10px;
    }

    .game-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .game-card button {
        background-color: #ff5722;
        color: #ffffff;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        margin-top: 10px;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .game-card button:hover {
        background-color: #e64a19;
        transform: scale(1.05);
    }

    .business-model ul {
        flex-direction: column;
        align-items: center;
    }

    .business-model ul li {
        width: 90%;
    }

    footer ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Telefonlar */
@media screen and (max-width: 768px) {

    /* Navbar */
    nav {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        padding: 10px;
    }

    nav .logo img {
        width: 70px;
        margin-right: 8px;
    }

    nav ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        margin: 0;
    }

    nav ul li a {
        font-size: 12px;
        padding: 5px 6px;
    }

    /* Opening */
    .opening-design {
        padding: 100px 10px 60px;
    }

    .opening-design h3,
    .opening-design p {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        max-width: 800px;
        display: block;
    }

    .opening-design h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .opening-design p {
        font-size: 16px;
    }

    .features {
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
    }

    .features li {
        width: 95%;
    }

    .game-catalog h2 {
        font-size: 26px;
    }

    .catalog {
        flex-direction: column;
        align-items: center;
    }

    .game-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        background-color: #ffffff;
        border-radius: 10px;
        width: 90%;
        max-width: 300px;
        overflow: hidden;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease;
        padding-bottom: 10px;
    }

    .game-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .game-card button {
        background-color: #ff5722;
        color: #ffffff;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        margin-top: 10px;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .game-card button:hover {
        background-color: #e64a19;
        transform: scale(1.05);
    }

    .business-model ul {
        flex-direction: column;
        align-items: center;
    }

    .business-model ul li {
        width: 95%;
    }

    footer p {
        font-size: 14px;
    }

    footer ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}







