/* DZ7 SHOP - Modern Gaming Marketplace CSS */
:root {
    --primary: #bc13fe;
    --primary-glow: rgba(188, 19, 254, 0.4);
    --secondary: #7000ff;
    --accent: #00f2ff;
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-dim: #9ca3af;
    --font-main: 'Inter', sans-serif;
    --font-bold: 'Montserrat', sans-serif;
    --grad-main: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --nav-h: 80px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Animated Background Elements */
.bg-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
}

.sphere-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation: float 20s infinite alternate;
}

.sphere-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -150px;
    left: -100px;
    animation: float 15s infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.noise-overlay {
    position: fixed;
    inset: 0;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-h);
    z-index: 1000;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: 0.3s;
}

.main-nav.scrolled {
    height: 70px;
    background: rgba(5, 5, 5, 0.9);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo {
    height: 42px;
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.brand-name {
    font-family: var(--font-bold);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #fff;
}

.brand-name span {
    color: var(--primary);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.nav-list a:hover:not(.btn-nav) {
    color: #fff;
}

.btn-nav {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    color: #fff !important;
}

.btn-nav:hover {
    background: var(--grad-main);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--primary), 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    padding-top: calc(var(--nav-h) + 4rem);
    padding-bottom: 6rem;
    position: relative;
}

.hero-inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(188, 19, 254, 0.1);
    border: 1px solid rgba(188, 19, 254, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-title {
    font-family: var(--font-bold);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-title .highlight {
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-inline: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.btn-main {
    text-decoration: none;
    background: var(--grad-main);
    color: #fff;
    padding: 1.25rem 3rem;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1rem;
    font-family: var(--font-bold);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 15px 30px rgba(188, 19, 254, 0.3);
}

.btn-main:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(188, 19, 254, 0.4);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat .num {
    font-family: var(--font-bold);
    font-size: 1.5rem;
    font-weight: 800;
}

.hero-stat .lab {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-sep {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Sections General */
.section-shop, .section-reviews, .section-utility {
    padding: 6rem 0;
    transition: padding 0.5s ease;
}

/* Compact section when store is collapsed */
.section-shop.collapsed {
    padding: 3rem 0;
}

.title-section {
    font-family: var(--font-bold);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.subtitle-section {
    color: var(--text-dim);
    font-size: 1.1rem;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    gap: 2rem;
    flex-wrap: wrap;
    transition: margin 0.5s ease;
}

.section-shop.collapsed .section-head {
    margin-bottom: 1.5rem;
}

.centered {
    text-align: center;
}

/* Shop Filter */
.shop-filter {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.filter-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-dim);
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.filter-pill.active, .filter-pill:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Products Grid with Animation */
.grid-products {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    pointer-events: none;
}

.grid-products.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Staggered Animation for cards */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 1.25rem;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: scale(0.95);
}

.grid-products.active .product-card {
    opacity: 1;
    transform: scale(1);
    animation: cardAppear 0.6s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes cardAppear {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Store Placeholder - Modern Banner Style */
.store-placeholder {
    background: linear-gradient(90deg, rgba(188, 19, 254, 0.05) 0%, rgba(112, 0, 255, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(188, 19, 254, 0.1), transparent 70%);
    pointer-events: none;
}

.placeholder-text {
    flex: 1;
    z-index: 1;
}

.store-placeholder.hidden {
    display: none;
}

.placeholder-icon {
    font-size: 3rem;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 0 15px var(--primary-glow));
}

.btn-explore {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    border-radius: 12px;
    cursor: pointer;
    background: #fff;
    color: #000;
    border: none;
    font-family: var(--font-bold);
    transition: 0.3s;
    white-space: nowrap;
    z-index: 1;
}

.btn-explore:hover {
    background: var(--grad-main);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--primary-glow);
}

/* Mobile adjustments for placeholder */
@media (max-width: 768px) {
    .store-placeholder {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
        gap: 2rem;
    }
}

.product-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(188, 19, 254, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-img-wrapper {
    position: relative;
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
    background: #111;
    margin-bottom: 1.25rem;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.stock-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--accent);
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.stock-badge.out {
    color: #ff4747;
    border-color: rgba(255, 71, 71, 0.2);
}

.product-info {
    flex-grow: 1;
}

.product-category {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.product-name {
    font-family: var(--font-bold);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.product-price {
    font-family: var(--font-bold);
    font-size: 1.5rem;
    font-weight: 900;
}

.currency {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-left: 0.25rem;
}

.btn-buy {
    text-decoration: none;
    background: #fff;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-buy:hover {
    background: var(--grad-main);
    color: #fff;
    transform: translateX(5px);
}

/* Skeleton */
.card-skeleton {
    height: 400px;
    background: linear-gradient(90deg, #0a0a0a 25%, #151515 50%, #0a0a0a 75%);
    background-size: 200% 100%;
    animation: skeleton-load 1.5s infinite;
    border-radius: 24px;
}

@keyframes skeleton-load {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Utility Box */
.utility-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.utility-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(188, 19, 254, 0.05), transparent 70%);
    pointer-events: none;
}

.utility-tag {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.utility-title {
    font-family: var(--font-bold);
    font-size: 2.8rem;
    font-weight: 900;
    margin: 1rem 0;
}

.utility-desc {
    color: var(--text-dim);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.utility-footer {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-clean {
    text-decoration: none;
    background: #fff;
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: 0.3s;
}

.btn-clean:hover {
    transform: scale(1.05);
}

.file-info {
    font-size: 0.85rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.file-info i {
    color: #27c93f;
}

.mock-terminal {
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.term-top {
    background: #111;
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.term-controls {
    display: flex;
    gap: 6px;
}

.term-controls span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.term-controls span:nth-child(1) { background: #ff5f56; }
.term-controls span:nth-child(2) { background: #ffbd2e; }
.term-controls span:nth-child(3) { background: #27c93f; }

.term-title {
    font-size: 0.7rem;
    color: var(--text-dim);
    font-family: monospace;
}

.term-content {
    padding: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
}

.term-content .line {
    margin-bottom: 0.5rem;
}

.cmd {
    color: var(--primary);
    font-weight: 700;
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Reviews */
.grid-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 28px;
    transition: 0.3s;
}

.review-card:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
}

.rev-stars {
    color: #fbbf24;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.rev-text {
    font-style: italic;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.rev-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rev-avatar {
    width: 44px;
    height: 44px;
    background: var(--grad-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.rev-name {
    font-weight: 700;
    font-size: 0.95rem;
}

/* Footer */
.main-footer {
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--border);
    background: linear-gradient(to bottom, transparent, rgba(188, 19, 254, 0.02));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col.brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.brand-desc {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
}

.footer-col h4 {
    font-family: var(--font-bold);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 1rem;
}

.footer-col a {
    color: var(--text-dim);
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* Audio Control Bar */
.audio-control-bar {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    z-index: 999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.ctrl-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--grad-main);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--primary-glow);
}

.audio-info {
    display: flex;
    flex-direction: column;
}

.track-label {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary);
}

.track-name {
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Mobile Nav Styles */
@media (max-width: 1024px) {
    .utility-box { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-list { display: none; }
    .nav-toggle { display: flex; }
    
    .hero-title { font-size: 3rem; }
    .hero-actions { gap: 2rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    
    .audio-control-bar {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        justify-content: center;
    }
}

/* Mobile Menu Active */
.nav-menu.active {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    padding: 2rem;
    border-bottom: 1px solid var(--border);
    display: block !important;
}

.nav-menu.active .nav-list {
    flex-direction: column;
    gap: 1.5rem;
}

/* TikTok Showcase & iPhone Mockup */
.section-social {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.social-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 4rem;
    backdrop-filter: blur(20px);
}

.social-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #000;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-tag i { color: #ff0050; }

.social-title {
    font-size: 3.5rem;
    font-family: var(--font-bold);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.social-desc {
    color: var(--text-dim);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 500px;
}

.btn-tiktok {
    background: #fff;
    color: #000;
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.btn-tiktok:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* iPhone 17 Pro Max Mockup */
.iphone-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iphone-17 {
    position: relative;
    width: 320px;
    height: 660px;
    background: #000;
    border-radius: 54px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.iphone-17:hover {
    transform: rotateY(-10deg) rotateX(5deg) translateY(-20px);
}

/* Side buttons */
.iphone-17::before, .iphone-17::after {
    content: '';
    position: absolute;
    width: 3px;
    background: #222;
    border-radius: 2px;
}
.iphone-17::before { height: 60px; left: -3px; top: 120px; box-shadow: 0 80px 0 #222; } /* Volume & Action */
.iphone-17::after { height: 80px; right: -3px; top: 180px; } /* Power button */

.iphone-bezel {
    position: relative;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    border-radius: 44px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
}

.iphone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
}

.dynamic-island {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.05);
}

.iphone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 5;
    border-radius: 54px;
}

.mockup-glow {
    position: absolute;
    width: 120%;
    height: 80%;
    background: var(--primary);
    filter: blur(120px);
    opacity: 0.2;
    z-index: 1;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    from { opacity: 0.1; transform: scale(0.9); }
    to { opacity: 0.3; transform: scale(1.1); }
}

@media (max-width: 1100px) {
    .social-box { grid-template-columns: 1fr; text-align: center; }
    .social-desc { margin-left: auto; margin-right: auto; }
}
