.gifts-container {
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.gifts-header {
    margin-bottom: 4rem;
    text-align: center;
}

.gifts-header h1 {
    font-size: 2.8rem;
    color: var(--pink);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.gifts-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Store Stats / Balance */
.store-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--container-bg);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-card i {
    color: var(--primary);
    font-size: 1.2rem;
}

.stat-card .value {
    font-weight: 800;
    color: white;
}

/* Gift Grid Styling */
.gift-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
}

.gift-card {
    background: var(--container-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-container);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.gift-card:hover {
    transform: translateY(-10px);
    border-color: var(--pink);
    box-shadow: 0 15px 40px rgba(255, 142, 171, 0.15);
}

.gift-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 142, 171, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.gift-card:hover::before {
    opacity: 1;
}

.gift-icon-container {
    font-size: 4rem;
    color: var(--pink);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 142, 171, 0.3));
    transition: var(--transition);
}

.gift-card:hover .gift-icon-container {
    transform: scale(1.1) rotate(5deg);
}

.gift-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    color: white;
}

.gift-card .price {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2rem;
}

.btn-buy {
    background: var(--pink);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: var(--transition);
}

.btn-buy:hover {
    background: #e07d96;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 142, 171, 0.3);
}

.btn-buy:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .gifts-header h1 { font-size: 2.2rem; }
    .gift-grid { grid-template-columns: 1fr; }
}

/* Founder Promo Section */
.founder-promo {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #e5e5e5;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}

.founder-promo::before {
    content: 'LIMITED';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
}

.founder-content {
    position: relative;
    z-index: 1;
    max-width: 60%;
}

.founder-content h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.founder-content h2 i {
    color: #e5e5e5;
}

.founder-content p {
    color: #aaaaaa;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.founder-stats {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.founder-stats .slots-count {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.founder-stats .slots-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-founder {
    background: #e5e5e5;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-founder:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .founder-promo { flex-direction: column; text-align: center; gap: 2rem; padding: 2rem; }
    .founder-content { max-width: 100%; }
}

