body {
    background-color: #020202;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

@-webkit-keyframes spinreverse {
    0% {
        -webkit-transform: rotate(-360deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}

@-webkit-keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

#h {
    position: absolute;
    position: fixed;
    top: 50%;
    width: 424px;
    height: 584px;
    margin-top: -220px;
    margin-left: -212px;
    z-index: 1;
    cursor: pointer;
    -webkit-animation: pulse 2s infinite;
}

.c {
    position: fixed;
    top: 50%;
    width: 2048px;
    height: 2048px;
    margin-top: -1024px;
    margin-left: -1024px;
}

[src="c1.png"] {
    -webkit-animation: spinreverse 20s infinite linear;
}

[src="c2.png"] {
    z-index: -1;
    -webkit-animation: spinreverse 30s infinite linear;
}

[src="c3.png"] {
    z-index: -2;
    -webkit-animation: spinreverse 40s infinite linear;
}

[src="c4.png"] {
    z-index: -3;
    -webkit-animation: spinreverse 50s infinite linear;
}

[src="c5.png"] {
    z-index: -4;
    -webkit-animation: spinreverse 60s infinite linear;
}

[src="c6.png"] {
    z-index: -5;
    -webkit-animation: spinreverse 70s infinite linear;
}

[src="c7.png"] {
    z-index: -6;
    -webkit-animation: spinreverse 80s infinite linear;
}

.footer {
    position: fixed;
    right: 10px;
    bottom: 10px;
    background-color: rgba(184, 180, 180, 0.2);
    color: #b8b4b4;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(184, 180, 180, 0.1);
    transition: all 0.3s ease;
}

.footer:hover {
    background-color: rgba(184, 180, 180, 0.3);
    transform: translateY(-2px);
}

.footer a {
    color: #b8b4b4;
    text-decoration: none;
}

.footer span {
    display: block;
    margin-bottom: 5px;
    text-decoration: none;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #020202;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading.hidden {
    display: none;
}

/* Media Queries */
@media (max-width: 768px) {
    #h {
        width: 70vw;
        margin-top: -35vw;
        margin-left: -35vw;
    }

    .c {
        width: 150vw;
        margin-top: -75vw;
        margin-left: -75vw;
    }

    .footer {
        font-size: 12px;
        padding: 8px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

/* Mobil cihazlar için düzenlemeler */
@media screen and (max-width: 768px) {
    #h {
        width: 212px;
        height: 292px;
        margin-top: -146px;
        margin-left: -106px;
    }

    .c {
        width: 1024px;
        height: 1024px;
        margin-top: -512px;
        margin-left: -512px;
    }
}

/* Daha küçük mobil cihazlar için düzenlemeler */
@media screen and (max-width: 480px) {
    #h {
        width: 170px;
        height: 234px;
        margin-top: -117px;
        margin-left: -85px;
    }

    .c {
        width: 800px;
        height: 800px;
        margin-top: -400px;
        margin-left: -400px;
    }

    .footer {
        font-size: 12px;
        padding: 8px;
    }
}
