﻿/* ================= RESET ================= */
* {
    font-family: 'Inter Tight', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= BASE ================= */
body {
    padding-top: 90px;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ================= HEADER ================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.4s ease-in-out;
    text-align: center;
}

.sidebar {
    display: none;
}

.sticky-header {
    z-index: 1700;
    animation: slideDown 0.6s ease;
}

.slider-wrapper {
    display: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* ================= CONTAINER ================= */
.container {
    margin: 0 auto;
    max-width: 1150px;
    width: 100%;
    height: 90px;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ================= LOGO ================= */
.logo img {
    width: 140px;
    height: auto;
}

/* ================= LINE ================= */
.line-div {
    width: 1.4px;
    height: 55px;
    background-color: #C2C9CD;
    border-radius: 30px;
    margin-left: -30px;
    margin-right: -20px;
}


.app-prew {
    display: none;
}

/* ================= MENU ================= */
.menu {
    display: flex;
    align-items: center;
    margin-right: 200px;
}

.menu ul {
    list-style: none;
    display: flex;
}

.menu ul li {
    margin-right: 45px;
    position: relative;
}

.menu ul li a {
    text-decoration: none;
    color: #8f8f8f;
    font-weight: 500;
    font-size: 17px;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.menu ul li a:hover,
.menu ul li a.active {
    color: #000;
}

.menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: red;
    transition: width 0.3s;
}

.menu ul li a:hover::after,
.menu ul li a.active::after {
    width: 100%;
}

/* ================= BUTTONS ================= */
.buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ================= PUSHABLE BUTTON ================= */
.pushable {
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    outline-color: crimson;
    transition: filter 250ms;
    -webkit-tap-highlight-color: transparent;
}

.edge {
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(
        to right,
        hsl(0, 78%, 25%) 0%,
        hsl(0, 78%, 35%) 50%,
        hsl(0, 78%, 25%) 100%
    );
}

.front {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 23px;
    border-radius: 30px;
    background: hsl(0, 78%, 45%);
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(0.3,0.7,0.4,1);
}

.pushable:hover {
    filter: brightness(110%);
}

.pushable:hover .front {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(0.3,0.7,0.4,1.5);
}

.pushable:active .front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

/* ================= SVG ANIMATION ================= */
button svg {
    color: #fff;
    display: block;
    transform-origin: center;
    transition: transform 0.3s ease-in-out;
}

button:hover svg {
    transform: rotate(45deg);
}

button:hoverbutton:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

@keyframes fly-1 {
    from {
        transform: translateY(0.1em);
    }
    to {
        transform: translateY(-0.1em);
    }
}

/* ================= LANGUAGE ================= */
.language {
    background: transparent;
    border: none;
    margin-left: 10px;
    color: red;
    font-weight: 500;
    cursor: pointer;
    font-size: 17px;
}

/* ================= HAMBURGER ================= */
.hamburger {
    display: none;
}

.slider {
    width: 100%;
    height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #e31f25;
    margin-bottom: 120px;
}


/* container */
.slider-container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* sol taraf */
.slider-left {
  max-width: 520px;
}

.slider-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.slider-text {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* sağ taraf */
.slider-right {
  flex-shrink: 0;
}

.slider-right img {
  width: 420px;
  max-width: 100%;
  height: auto;
}





/* ================= WELCOME ================= */
.welcome-panel {
    width: 100%;
    margin-bottom: 90px;
}

.welcome-container {
    max-width: 1150px;
    height: 415px;
    margin: auto;
    position: relative;
}

/* ================= TITLE ================= */
.text-welcome {
    cursor: pointer;
    font-size: clamp(19px, 7vw, 42px);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    color: #000;
    font-weight: 600;
}

.appdo-games-bold-text {
    color: red;
    font-weight: 700;
}

/* ================= PHONE PREVIEW ================= */
.phone-prew {
    position: absolute;
    right: 0;
    top: 0;
    width: 350px;
    height: 370px;
    background-color: #eaeaea;
    border-radius: 15px;
}

.phone-prew img {
    width: 350px;
    height: 370px;
    border-radius: 15px;
}


/* ================= GAME LIST ================= */
.app-prew {
    display: flex;
    flex-wrap: wrap;
    max-width: 795px;
    margin-top: 25px;
    margin-bottom: 23px;
}

/* ================= CARD ================= */
.col {
    cursor: pointer;
    width: 245px;
    height: 100px;
    background-color: #F1F3F9;
    border-radius: 20px;
    margin: -5px 20px 0 0;
    position: relative;
    transition: background-color 0.3s ease;
}

.app-prew .col:nth-child(n+4) {
    margin-top: 22px;
}

.col:hover {
    background-color: #e2e6f0;
}

/* ================= IMAGE ================= */
.game-image {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 15px;
    margin: 10px;
}

/* ================= TEXT ================= */
.game-name {
    position: absolute;
    top: 14px;
    left: 100px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.game-category {
    position: absolute;
    top: 38px;
    left: 100px;
    font-size: 15px;
    font-weight: 400;
    color: #636363;
}

.game-download {
    position: absolute;
    bottom: 17px;
    left: 100px;
    font-size: 15px;
    font-weight: 500;
    color: #696969;
}


.about-area {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 180px;
}

.about-area-container {
    max-width: 1200px;
    width: 100%;
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}
.left, .right {
    flex: 1;
    min-width: 350px;
}

.left {
    max-width: 50%;
    margin-right: 50px;
}

.left img {
    width: 650px;
    height: auto;
    object-fit: cover;
    display: block;
    transform: scaleX(-1);
}

.right {
    max-width: 50%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 200px;
    justify-content: center;
}

.small-title {
    font-size: 15px;
    line-height: 1.2857142857;
    letter-spacing: 0.1428571429em;
    color: red;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: -5px;
}

.main-title {
    font-size: 27px;
    font-weight: 500;
    color: black;
}

.paragraph {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    display: block;
    font-weight: 400;
    margin-block-start: 0.2em;
    margin-block-end: 0.2em;
    margin-inline-start: 0;
    margin-inline-end: 0;
    unicode-bidi: isolate;
}

.features-list {
    list-style: none;
    padding-left: 0;
    color: #444;
}

.features-list li {
    font-size: 17px;
    font-weight: 500;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.5;
    display: flex;
    align-items: center;
}







.features-dark-section {
    width: 100%;
    background: transparent;
    margin-bottom: 180px;
}

.features-dark-container {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    color: black;
}

.feature-card img {
    color: black;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.feature-top {
    width: 100%;
    height: 80px;
    border-radius: 999px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding-left: 24px;
}

.feature-top img {
    width: 270px;
    height: auto;
    margin-left: -20px;
    margin-top: -30px;
}

.gradient-green {
    background: linear-gradient(90deg, #2fb7b3, #6ee7d8);
    border-radius: 58px 20px 20px 20px;
}

.gradient-yellow {
    background: linear-gradient(90deg, #e2c88d, #f6dfb2);
    border-radius: 58px 20px 20px 20px;
}

.gradient-orange {
    background: linear-gradient(90deg, #f3b08a, #f9d2bc);
    border-radius: 58px 20px 20px 20px;
}




.publishing-section {
    width: 100%;
    background: #fff;
    margin-bottom: 120px;
}

.publishing-container {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.publishing-left {
    flex: 1;
    max-width: 520px;
}

.publishing-label {
    color: #ff2b3d;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 15px;
    margin-bottom: 14px;
    display: block;
}

.publishing-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.publishing-title .dot {
    color: #ff2b3d;
}

.publishing-text {
    font-size: 17px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 32px;
}

.publishing-btn {
    background: #ff2b3d;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    width: 150px;
    height: 45px;
    text-decoration:none;
}

.publishing-btn a{
   color: #fff;
   text-decoration:none;
}


.publishing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 43, 61, 0.3);
}


.publishing-btn-contact{
    background: #ff2b3d;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    width: 150px;
    height: 45px;
}

.publishing-btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 43, 61, 0.3);
}



.publishing-right {
    flex: 1;
    max-width: 480px;
    background: rgba(255, 43, 61, 0.08);
    border-radius: 28px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transform: rotate(-2deg);
}

.publishing-card {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 22px;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    padding-left: 64px;
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.35s ease;
}

.publishing-card:hover {
    transform: scale(1.035);
    box-shadow: 0 12px 28px rgba(255, 43, 61, 0.18);
}


.publishing-card::before {
    content: "";
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 43, 61, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #ff2b3d;
    position: absolute;
    left: 18px;
    top: 28px;
}

.publishing-card:nth-child(1)::before {
    content: "\2764";
}

.publishing-card:nth-child(2)::before {
    content: "\1F30D";
}

.publishing-card:nth-child(3)::before {
    content: "\1F4C8";
}


.publishing-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: -3px;
    color: #b81636;
}

.publishing-card p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(184, 22, 54, 0.5);
}



footer {
    background-color: #F6F9FC;
    padding: 100px 0;
    width: 100%;
    margin-top: 150px;
}

.container-footer {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-section {
    flex: 1;
    text-align: center;
}

.footer-section.left-section {
    text-align: left;
}

.footer-logo {
    max-width: 135px;
    text-align: left;
    display: block;
}

.footer-description {
    width: 170px;
    line-height: 22px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    margin-top: 12px;
    text-align: justify;
}

.footer-copy {
    max-width: 1150px;
    margin: -23px auto 0;
    text-align: left;
    padding-left: 0;
    font-size: 15px;
    font-weight: 500;
}

.footer-title {
    color: #333;
    margin: 0;
    pointer-events: none;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    color: #353C4C;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    cursor: pointer;
}

.footer-title.toggle-title {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    font-family: inherit;
    color: inherit;
    cursor: pointer;
}


.footer-list li:hover {
    color: red;
}

.footer-grid {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: -20px;
}

.grid-row {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.grid-item {
    width: 40px;
    height: 40px;
}

.social {
    width: 38px;
    height: auto;
    transition: 0.3s ease;
    cursor: pointer;
}

.social:hover {
    transform: translateY(-2px);
}




.contact-section {
    padding: 110px 0px;
    margin-bottom:-130px;
}

.contact-container {
    max-width: 1150px; /* 🔥 istediğin gibi */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
}


/* LEFT */
.contact-left h1 {
    font-size: 42px;
    font-weight: 700;
}

.contact-left h2 {
    font-size: 22px;
    color: #98a2b3;
    margin-top: 8px;
}


.contact-form {
    margin-top: 30px;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.field {
    display: flex;
    flex-direction: column;
}

.field.full {
    margin-bottom: 24px;
}

label {
    font-size: 15px;
    font-weight: 600;
    color: #e11d48;
    margin-bottom:10px;
}

input,
textarea {
    border: 1px solid #9ea5b1;
    border-radius: 14px;
    padding: 15px 18px;
    font-size: 15px;
    background: #fff;
    transition: all 0.25s ease;
}

input:focus,
textarea:focus {
    border-color: #e11d48;
    box-shadow: 0 0 0 4px rgba(225,29,72,0.12);
}

textarea {
    min-height: 140px;
    resize: none;
}

input::placeholder {
    color: #98a2b3;
}

button {
    background: linear-gradient(135deg, #e11d48, #fb7185);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}

.alt-contact {
    margin-top: 26px;
    font-size: 15px;
    color: #667085;
}

.alt-contact a {
    color: #111;
    font-weight: 600;
    text-decoration: none;
}

.alt-contact a:hover {
    text-decoration: underline;
}

/* RIGHT */
.contact-right {
    position: relative;
}

.map-bg {
    position: absolute;
    inset: 0;
}

.map-bg img{
    width:100%;
    height:auto;
    border-radius: 22px;
}

.office-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    max-width: 470px;
    height:335px;
    margin: auto;
    top: 250px;
    transition: transform 0.35s ease;
}

.office-image-wrap {
    background: #fff;          /* 👈 beyaz boşluk */
    padding: 12px;             /* 👈 iç boşluk miktarı */
}

.office-image-wrap img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;       /* 👈 içten yumuşak radius */
    display: block;
}

.office-card:hover {
    transform: translateY(-6px);
}

.office-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.office-info {
    padding-top:10px;
    padding-left:20px;
    padding-right:20px;
    padding-bottom:10px;
}

.office-info strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}

.office-info p {
    font-size: 16px;
    color: #667085;
    line-height: 1.5;
}




.process {
    padding: 80px 20px;
    background: #fff;
}

.process-container {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: center;
}

.process-item {
    grid-column: span 1;
    text-align: center;
    width: 220px;
}

.process-item img {
    width: 100px;
    margin-bottom: 20px;
}

.process-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.process-item p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.divider {
    width: 1px;
    height: 140px;
    background: #e5e7eb;
    justify-self: center;
}




.slider-about {
    width: 100%;
    height: 440px;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #e31f25;
}

/* container */
.about-slider-container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-section {
    width: 100%;
    padding: 0px 20px;
    background: #fff;
    margin-top:60px;
    margin-bottom: 150px;
}

.about-container {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.label-about {
    display: inline-block;
    color: red;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 17px;
}


/* SOL METİN */
.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 7px;
    color: #111;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 10px;
}

/* SAĞ GÖRSEL */
.about-image {
    flex: 1;
    display: flex;
    width:550px;
    height:366px;
    justify-content: center;
    border-radius:25px;
    background-color:#eaeaea;
}

.about-image img {
    width: 550px;
    border-radius: 18px;
    object-fit: cover;
}








.social-slider {
    overflow: hidden;
}

.container-social {
    max-width: 1150px;
    margin: 0 auto;
    overflow: hidden;
}


/* ÜST METİN */
.social-intro {
    margin-bottom: 50px;
}

.social-label {
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    letter-spacing: 0.08em;
}

.social-intro h2 {
    font-size: 36px;
    margin-bottom:10px;
    color: #0f172a;
}

.social-intro p {
    font-size: 16px;
    color: #64748b;
}



.slider-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: slide 35s linear infinite;
}

/* KUTU ORANI */
.social-box {
    cursor:pointer;
    min-width: 320px;
    height: 90px;                 /* ✅ ORANI KİLİTLEDİK */
    background: rgb(246, 249, 252);
    border-radius: 22px;
    padding: 18px 22px;
    display: flex;
    align-items: center;           /* ✅ İKON + METİN DİKEY ORTALI */
    gap: 16px;
    transition: all 0.35s ease;
}

/* ICON ORANI */
.social-box img {
    width: 51px;                   /* ✅ REFERANS BOYUT */
    height: 51px;
    flex-shrink: 0;
}

/* METİN BLOĞU */
.social-text {
    display: flex;
    flex-direction: column;
    justify-content: center;       /* ✅ METİN İKONA GÖRE ORTALI */
    gap: 3px;
}

/* KULLANICI ADI */
.username {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: #2563eb;
}

/* TAKİPÇİ */
.social-text strong {
    font-size: 16px;
    line-height: 1.2;
    color: #0f172a;
}

/* AÇIKLAMA – 1 SATIR KİLİT */
.social-text p {
    font-size: 13px;
    line-height: 1.3;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;       /* ✅ TAŞMA YOK */
    max-width: 220px;
}

/* HOVER – PLATFORM RENKLERİ */
.social-box.instagram:hover {
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
}

.social-box.youtube:hover {
    background: #fef2f2;
}

.social-box.tiktok:hover {
    background: #f0fdfa;
}

.social-box.facebook:hover {
    background: #eff6ff;
}

.social-box.linkedin:hover {
    background: #eef2ff;
}

.social-box.twitter:hover {
    background: #f0f9ff;
}

/* ANIMASYON */
@keyframes slide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
