@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background:#0d0f12;
    font-family: 'Poppins', sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-title {
    margin-top: 30px;
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00F5FF, #37FF8B);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px #00F5FF80,
                 0 0 30px #37FF8B60;
}

.middle-section {
    margin-top: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.shop-title {
    font-size: 2 rem;
    font-weight: 400;
    background: linear-gradient(90deg, #00CFFF, #7B61FF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px #00CFFF80,
                 0 0 30px #7B61FF60;
    margin-bottom: 80px;
}

.maintain-text {
    font-size: 1rem;
    color: #e4ffe1;
    max-width: 300px;
}

.pro-btn {
    display: inline-block;
    margin-top: 90px;
    padding: 10px 22px;
    background: #4F46E5;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: 0.25s ease;
}

.pro-btn:hover {
    background: #4338CA;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.22);
}

.pro-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

a{
    text-decoration: none;
}

.footer {
    margin-top: auto;
    padding-bottom: 20px;
    text-align: center;
    width: 100%;
    color: #cfcfcf;
}