body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: #f0f4f8;
    color: #333;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    margin-left: 12px;
    font-size: 1.8em;
    color: #fff;
}

.logo .icon-gamepad {
    font-size: 2.4em;
    color: #fff;
}

.download-btn {
    background-color: #fff;
    color: #2980b9;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.download-btn:hover {
    background-color: #e6f0f7;
    transform: scale(1.05);
}

.hero {
    background: linear-gradient(135deg, #16a085, #1abc9c);
    padding: 140px 0;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 35px;
}

.features-section {
    padding: 90px 0;
    background-color: #fff;
}

.features-section h2 {
    text-align: center;
    font-size: 2.4em;
    margin-bottom: 50px;
    color: #2980b9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature {
    padding: 30px;
    background-color: #f0f4f8;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.feature i {
    font-size: 2.8em;
    color: #16a085;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #2980b9;
}

.feature p {
    font-size: 1em;
    line-height: 1.7;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #3498db, #2980b9);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 2.6em;
    margin-bottom: 25px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 35px;
}

.cta-section .download-btn {
    font-size: 1.3em;
    padding: 14px 28px;
}

footer {
    background-color: #2c3e50;
    padding: 20px 0;
    text-align: center;
    color: #fff;
}

footer p {
    font-size: 1em;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.hero {
    background: linear-gradient(135deg, #16a085, #1abc9c);
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    z-index: 1;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-image {
    flex: 1;
    text-align: center;
    margin-right: 50px;
}

.hero-image img {
    width: 681px;
    height: 435px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.hero-image img:hover {
    transform: scale(1.05);
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-text p {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

 



@keyframes glowing {
    0% {
        box-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #16a085, 0 0 20px #16a085;
    }
    50% {
        box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #16a085, 0 0 40px #16a085;
    }
    100% {
        box-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #16a085, 0 0 20px #16a085;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-image {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .hero-text {
        text-align: center;
    }
}


  .hero-image {
    flex: 1;
    text-align: center;
    margin-right: 50px;
    perspective: 1000px;
}

.hero-image img {
    width: 681px;
    height: 435px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
    transform-style: preserve-3d;
    cursor: pointer;
}

.hero-image img:hover {
    transform: scale(1.1) rotateX(15deg) rotateY(-15deg);
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1) saturate(1.2);
}

.download-btn {
    background-color: #ffc107;
    color: #fff;
    font-size: 1.5em;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.05)
    );
    transform: rotate(-45deg);
    transition: transform 0.5s ease-in-out;
}

.download-btn:hover {
    background-color: #ff5722;
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.download-btn:hover::before {
    transform: rotate(-45deg) scale(2);
}