@import url('common.css');

.hero {
    padding: 120px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 0.6s ease-in-out;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.hero h1 span {
    color: #ffaa00;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btn-new {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #121212;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 6px 15px rgba(255, 204, 0, 0.4);
    border: none;
}

.btn-new:hover {
    background: linear-gradient(135deg, #ff9900, #e67e00);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.5);
    transform: scale(1.05);
}

.btn-new:active {
    transform: scale(0.95);
}

.store-icon-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 260px;
    height: 64px;
    background: #121212;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(255, 204, 0, 0.4);
    transition: all 0.3s ease-in-out;
}

.store-icon-btn:hover {
    background: #2a2a2a;
    transform: scale(1.05);
}

.store-icon-btn img {
    max-height: 40px;
    width: auto;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 60px 20px;
    gap: 20px;
}

.feature {
    width: 30%;
    text-align: center;
    background: #1e1e1e;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
}

.feature:hover {
    transform: scale(1.05);
}

.feature h2 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature p {
    font-size: 16px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 90%;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
        padding: 0 10px;
    }

    .btn-new {
        padding: 15px 35px;
        font-size: 18px;
    }
}

