html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.hero-logo {
    max-height: 150px;
    width: auto;
    display: block;
    margin: 0 auto;
    transform: translateY(-20px); /* logoyu yukarı çeker */
}

.project-card {
    transition: all 0.3s ease;
    cursor: pointer; /* mouse el işareti */
}

    .project-card:hover {
        transform: translateY(-8px); /* hafif yukarı kayma */
        box-shadow: 0 8px 20px rgba(0,0,0,0.2); /* gölge büyür */
    }


/* success toast */
.success-toast {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 2000;
    background: rgba(0,0,0,.35);
    transition: opacity .4s ease;
}

    .success-toast.hide {
        opacity: 0;
    }

.success-box {
    background: #111827;
    color: #e5e7eb;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 360px;
    max-width: 90vw;
}

.ring {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 3px solid rgba(59,130,246,.25);
    border-top-color: #3b82f6;
    animation: spin 1s linear infinite;
    position: relative;
}

.check {
    position: absolute;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #10b981;
    font-size: 22px;
    pointer-events: none;
}

.msg {
    font-size: 16px;
    line-height: 1.35;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width:576px) {
    .success-box {
        min-width: 0;
        width: calc(100% - 32px);
    }

    .msg {
        font-size: 15px;
    }


}

/* Kapak görseli */
.game-cover {
    max-width: 600px;
    cursor: pointer;
}

/* Küçük ekran görüntüleri */
.screenshot {
    width: 250px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .screenshot:hover {
        transform: scale(1.05);
    }
.clickable-img {
    cursor: pointer; /* el işareti */
    transition: transform 0.2s ease;
}

    .clickable-img:hover {
        transform: scale(1.05); /* biraz büyüsün */
        box-shadow: 0 0 15px rgba(0,0,0,0.4); /* gölge efekti */
    }

.soon-box {
    cursor: pointer; /* mouse hand */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .soon-box:hover {
        transform: translateY(-5px); /* yukarı kalkma */
        box-shadow: 0 6px 15px rgba(0,0,0,0.25); /* hafif gölge */
    }

/* Eat or DIE kapak görseli için özel çerçeve */
.cover-frame {
    display: inline-block;
    padding: 6px; /* çerçeve kalınlığı */
    border-radius: 20px;
    background: linear-gradient(135deg, #ff6a00, #ffcc00, #00c3ff, #0061ff);
    background-size: 300% 300%;
    animation: borderGradient 6s ease infinite;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    text-align: center;
}

/* Gradient animasyonu */
@keyframes borderGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* İç görsel */
.cover-frame img {
    border-radius: 15px;
    display: block;
    max-width: 800px;
}


