/* Trending Shoppers - Viral Social UI */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;500;700;900&family=Inter:wght@400;600&display=swap');

:root {
    --bg-gradient: linear-gradient(135deg, #FF00CC 0%, #333399 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --accent-color: #00FFFF; /* Cyan */
    --hot-color: #FF0055;
    --card-radius: 24px;
}

body {
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    padding: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    background: linear-gradient(to right, #fff, #00FFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
    padding: 8px 16px !important;
    border-radius: 20px;
    transition: all 0.3s;
}

.nav-link:hover, .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

/* Buttons */
.btn-trend {
    background: linear-gradient(45deg, #FF00CC, #333399);
    border: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 0, 204, 0.4);
    transition: all 0.3s;
}

.btn-trend:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 0, 204, 0.6);
    color: #fff;
}

.btn-trend-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-trend-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 0, 204, 0.5);
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-img-container {
    position: relative;
}

.hero-img-container::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00FFFF, #FF00CC);
    border-radius: var(--card-radius);
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
}

.hero-img {
    border-radius: var(--card-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Cards */
.trend-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.coupon-code {
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 16px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.coupon-code:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Section Headers */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* New Sections Styling */
.stat-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.stat-circle::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #00FFFF;
    border-bottom-color: #FF00CC;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.avatar-group {
    display: flex;
    justify-content: center;
}

.avatar-group img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -15px;
    transition: transform 0.3s;
}

.avatar-group img:hover {
    transform: translateY(-5px);
    z-index: 2;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    padding: 5rem 0 2rem;
    margin-top: 5rem;
    border-top: 1px solid var(--glass-border);
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 12px;
}

.footer-link:hover {
    color: #00FFFF;
    padding-left: 5px;
}

.social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-btn:hover {
    background: #fff;
    color: #FF00CC;
    transform: rotate(15deg);
}
