* {
    margin: 0;
    padding: 3;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;

}
body, html {
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 100px;
    background-color: #000000;
    width: 100%;
}

header .logo img {
    height: 100px;
    width: auto;
}

header .nav ul {
    list-style-type: none;
    display: flex;
}

header .nav ul li {
    margin: 0 20px;
}

header .nav ul li a {
    color: #7a28a0;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s ease;
}

header .nav ul li a:hover {
    color: #f39c12;
}

.hero {
    background: url('https://shared.fastly.steamstatic.com/store_item_assets/steam/apps/1133870/ss_b3af661038d56bc68e0a17a85da23c244215a900.1920x1080.jpg?t=1738002497') no-repeat center center/cover;
    color: #ffffff;
    padding: 100px 50px;
    text-align: center;
    font-weight: 200px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #ffffff;

}

.cta-button {
    display: inline-block;
    padding: 20px 30px;
    font-size: 25px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    background: linear-gradient(45deg, #ff0000, #2600ff, #8400ff); 
    background-size: 300% 300%; 
    border-radius: 50px; 
    border: none;
    cursor: pointer;
    transition: background-position 0.5s ease, transform 0.2s ease;
    animation: rgb-animation 5s infinite alternate; 

}

.rgb-button:hover {
    background-position: 100% 100%; 
    transform: scale(1.05); 
}

@keyframes rgb-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}




/* Özellikler Bölümü */
.features {
    padding: 30px 20px;
    text-align: center;
    background-size: 400% 500%; 
    transform: scale(1.05); 
    line-height: 1.3;
    background-size: 200% 100%; 
    background: linear-gradient(2deg, #000000, #000000, #4336af);
    animation: rgb-background-animation 10s infinite alternate;

}

@keyframes rgb-background-animation {
    0% {
        background-position: 0% 100%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 22px;
    border-radius: 100px;
    font-size: 40px;
    color: #fff;

}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    
}

.card {
    background-color: hwb(0 49% 51% / 0.74);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s ease;
    background-color:#5f55ec;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    font-size: 1.8rem;
    margin: 20px 0 10px;
}

.card p {
    padding: 0 20px 20px;
    font-size: 1.3rem;
    color: #000000;
}

footer {
    background-color: #ffffff;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

.download-section {
    padding: 100px 400px;
    text-align: center;
    background: url(https://shared.fastly.steamstatic.com/store_item_assets/steam/apps/1133870/ss_283097f14260d7c0d3bb2f4c606032bc1cc651ea.1920x1080.jpg?t=1738338034);
    background-size: cover;
    background-repeat: no-repeat;
    font-weight: bold;
    background-size: 300% 400%; 
    animation: rgb-background-animation 10s infinite alternate; 

    

}
@keyframes rgb-background-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.download-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.download-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #ffffff;
}

.download-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.download-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.download-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.download-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000000;
}

.download-card p {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 20px;
}

.download-button {
    background-color: #007BFF;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 220px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #0056b3;
}

footer {
    margin-top: 0px;
    font-family: Arial, sans-serif;
    color: #ffffff;
    background-color: #000000;
    line-height: 1.3;
    background-size: 200% 100%; 
    background: linear-gradient(180deg, #000000, #000000, #4336af);
    animation: rgb-background-animation 10s infinite alternate;
}



.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 10px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #00a2ff;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #6f00ff;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #ffffff;
}


.cross-section {
    padding: 50px 20px;
    text-align: center;
    width: 100%;
    height: auto;
    background-color: #000000;
}
    

.cross-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #ffffff;
}

.cross-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cross-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cross-item.reverse {
    flex-direction: row-reverse;
}

.cross-item img {
    width: 50%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cross-text {
    width: 50%;
    text-align: left;
}

.cross-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.cross-text p {
    font-size: 1rem;
    color: #ffffff;
}   


@media (max-width: 768px) {
    header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    header .nav ul {
        flex-direction: column;
        gap: 10px;
    }

    header .nav ul li {
        margin: 0;
    }

    header .logo img {
        height: 50px; 
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 50px;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.5rem;
    }

    .cta-button {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .feature-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .cross-item {
        flex-direction: column;
        gap: 20px;
    }

    .cross-item.reverse {
        flex-direction: column;
    }

    .cross-item img {
        width: 100%;
    }

    .cross-text {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    .features h2 {
        font-size: 2rem;
    }

    .cross-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px; /* Mobilde padding'i azalt */
    }

    footer {
        padding: 20px 10px; /* Mobilde padding'i azalt */
    }

    
}
