﻿.btn-purple, .btn-purples, .btn-purple1 {
    position: fixed;
    bottom: 30px;
    border: none;
    color: white;
    padding: 18px 60px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 45, 226, 0.3);
    background-size: 200% auto;
    background-image: linear-gradient(to right, #8E2DE2 0%, #4A00E0 51%, #8E2DE2 100%);
    z-index: 1000;
    transform: translateX(-50%);
}

.btn-purple {
    left: 50%;
}

.btn-purples {
    left: 35%;
}

.btn-purple1 {
    left: 65%;
}

    .btn-purple:hover, .btn-purples:hover, .btn-purple1:hover {
        background-position: right center;
        transform: translateX(-50%) translateY(-5px);
        box-shadow: 0 10px 25px rgba(74, 0, 224, 0.4);
    }
.energy-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    background: transparent;
}

.logo-trigger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    position: relative;
    transition: transform 0.2s;
}

    .logo-trigger:active {
        transform: scale(0.95); /* Tıklama hissi */
    }

.loader-core {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-logo {
    width: 60px;
    height: 60px;
    z-index: 10;
    filter: drop-shadow(0 0 8px #ff4500);
}

.energy-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top-color: #ff4500;
    animation: calorie-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    will-change: transform;
}

    .energy-ring:nth-child(2) {
        width: 85%;
        height: 85%;
        border-top-color: #ff8c00;
        animation-duration: 1.8s;
        animation-direction: reverse;
    }

    .energy-ring:nth-child(3) {
        width: 70%;
        height: 70%;
        border-top-color: #ffd700;
        animation-duration: 0.9s;
    }

@keyframes calorie-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
.scratch-container {
    position: absolute;
    top: 70%;
    left: 30%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.scratchbtn {
    background: linear-gradient(180deg, #ffbf00 0%, #ff8c1a 50%, #e67e22 100%);
    color: white;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    border: none;
    border-bottom: 4px solid #d35400;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

    .scratchbtn:hover {
        animation: scratchMini 0.5s infinite;
        box-shadow: 0 0 25px rgba(255, 171, 25, 0.8);
    }

@keyframes scratchMini {
    0% {
        transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(1.02) rotate(1deg);
    }

    75% {
        transform: scale(1.02) rotate(-1deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.kendi-oyunlarim {
    position: absolute;
    top: 70%;
    left: 70%;
    transform: translate(-50%, -50%);
}

.oyunlarbtn {
    background: #000;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 0 15px #ff0055;
}

    .oyunlarbtn:hover {
        transform: scale(1.1);
        box-shadow: 0 0 30px #00fbff;
    }

body {
    background: #0f172a;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.header-container {
    text-align: center;
    color: white;
    z-index: 5;
}

.main-title {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 15px;
    margin: 0;
    text-shadow: 0 0 10px #fff, 0 0 40px #042ad1;
    animation: megaGlow 3s ease-in-out infinite alternate;
}

@keyframes megaGlow {
    0% {
        transform: scale(1);
        text-shadow: 0 0 10px #fff, 0 0 20px #042ad1;
    }

    100% {
        transform: scale(1.03);
        text-shadow: 0 0 20px #fff, 0 0 80px #9200d6;
    }
}

.sub-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 20px auto;
    color: #cbd5e1;
    min-height: 4em;
}

.hakkimda {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hakkimdabtn {
    background: linear-gradient(135deg, #042ad1, #9200d6);
    color: white;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}
