:root {
    --primary: #00f7ff;
    --secondary: #7b2cff;
    --dark: #0b0f1a;
}
 body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: var(--dark);
    color: white;
}

/* HOME PAGE STYLES */

/* Animated Gradient Background */
.home-page {
    min-height: 100vh;
    background: linear-gradient(270deg, #0b0f1a, #111a33, #1a0f33);
    background-size: 600% 600%;
    animation: gradientMove 12s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glass Card */
.glass-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 50px rgba(0,255,255,0.15);
}

/* Logo */
.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: auto;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 0 30px var(--primary);
    animation: pulse 2s infinite;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes pulse {
    0% { box-shadow: 0 0 20px var(--primary); }
    50% { box-shadow: 0 0 40px var(--secondary); }
    100% { box-shadow: 0 0 20px var(--primary); }
}

/* Title */
.store-title {
    margin-top: 1.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--secondary));

    /* Standard property */
    background-clip: text;

    /* WebKit fallback */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.store-subtitle {
    opacity: 0.8;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Neon Button */
.shop-button.neon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(0,255,255,0.5);
    transition: 0.3s;
}

.shop-button.neon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(123,44,255,0.8);
}

/* Social */
.social-links {
    margin-top: 3rem;
}

.social-links h6 {
    opacity: 0.7;
    margin-bottom: 1.2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    margin-bottom: 12px;
    background: rgba(255,255,255,0.05);
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
    transform: translateX(8px);
    box-shadow: 0 0 20px rgba(0,255,255,0.4);
}
/* Platform colors */
.facebook:hover { box-shadow: 0 0 25px #1877f2; }
.instagram:hover { box-shadow: 0 0 25px #e1306c; }
.threads:hover { box-shadow: 0 0 25px #ffffff; }
.pinterest:hover { box-shadow: 0 0 25px #e60023; }
