/* Neo-Brutalist Design with Hard Shadows */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f0;
    color: #0a0a0a;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section - Hard Shadow */
.hero {
    position: relative;
    margin-bottom: 80px;
    padding: 80px 60px;
    border: 4px solid #0a0a0a;
    background: #ffffff;
    box-shadow: 12px 12px 0 #ff006e;
    transform: rotate(-1deg);
}

.hero-content {
    transform: rotate(1deg);
    text-align: center;
}

.hero h1 {
    transform: rotate(-1deg);
    font-size: clamp(3rem, 8vw, 8rem);
    color: #ff006e;
    text-shadow: 5px 4px #000, 10px 8px #ffed00;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1;
}

.hero p {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.profile-section {
    grid-column: 1 / 6;
    background: #ffffff;
    padding: 40px;
    border: 4px solid #0a0a0a;
    transform: rotate(0.5deg);
    box-shadow: 10px 10px 0 #00d9ff;
}

.profile-section h2 {
    font-size: 2.5rem;
    color: #0a0a0a;
    margin-bottom: 30px;
    border-bottom: 4px solid #00d9ff;
    padding-bottom: 15px;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 0;
    border: 4px solid #0a0a0a;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 6px 6px 0 #ff006e;
    transform: rotate(-3deg);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #ff006e;
    text-transform: uppercase;
}

.profile-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.stats {
    background: #0a0a0a;
    color: #ffffff;
    padding: 15px;
    margin-top: 15px;
    font-weight: 700;
    text-align: center;
    border: 3px solid #0a0a0a;
    transform: rotate(-1deg);
}

.stats:nth-child(7) {
    box-shadow: 5px 5px 0 #ff006e;
}

.stats:nth-child(8) {
    box-shadow: 5px 5px 0 #ffed00;
}

/* Showcase Section */
.showcase-section {
    grid-column: 6 / 13;
    position: relative;
}

.showcase-section h2 {
    font-size: 2.5rem;
    color: #0a0a0a;
    margin-bottom: 30px;
    transform: rotate(-0.5deg);
    display: inline-block;
    background: #ffed00;
    padding: 10px 20px;
    border: 4px solid #0a0a0a;
    box-shadow: 6px 6px 0 #ff006e;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    border: 4px solid #0a0a0a;
    cursor: pointer;
    transition: all 0.2s ease;
    transform: rotate(-2deg);
    box-shadow: 6px 6px 0 #0a0a0a;
}

.showcase-item:nth-child(even) {
    transform: rotate(2deg);
}

.showcase-item:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 8px 8px 0 #ff006e;
}

.showcase-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

/* Products Section */
.products-section {
    grid-column: 1 / 13;
    margin-top: 60px;
}

.products-section h2 {
    font-size: 3rem;
    color: #0a0a0a;
    text-align: center;
    margin-bottom: 50px;
    display: inline-block;
    background: #ffffff;
    padding: 20px 40px;
    border: 4px solid #0a0a0a;
    box-shadow: 10px 10px 0 #ffed00;
    transform: rotate(-1deg);
    width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: #ffffff;
    padding: 40px;
    border: 4px solid #0a0a0a;
    position: relative;
    transition: all 0.2s ease;
    box-shadow: 8px 8px 0 #0a0a0a;
}

.product-card:nth-child(1) {
    transform: rotate(-1deg);
    box-shadow: 8px 8px 0 #ff006e;
}

.product-card:nth-child(2) {
    transform: rotate(1deg);
    box-shadow: 8px 8px 0 #00d9ff;
}

.product-card:nth-child(3) {
    transform: rotate(-1deg);
    box-shadow: 8px 8px 0 #ffed00;
}

.product-card:hover {
    transform: rotate(0deg) translateY(-6px);
}

.product-card:nth-child(1):hover {
    box-shadow: 12px 12px 0 #ff006e;
}

.product-card:nth-child(2):hover {
    box-shadow: 12px 12px 0 #00d9ff;
}

.product-card:nth-child(3):hover {
    box-shadow: 12px 12px 0 #ffed00;
}

.product-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #0a0a0a;
}

.product-card p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #2a2a2a;
    line-height: 1.7;
}

.product-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ff006e;
    margin-bottom: 25px;
    font-family: 'Space Grotesk', sans-serif;
}

.product-card:nth-child(2) .product-price {
    color: #00d9ff;
}

.product-card:nth-child(3) .product-price {
    color: #0a0a0a;
}

.contact-btn {
    background: #0a0a0a;
    color: #ffffff;
    border: 3px solid #0a0a0a;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 4px 4px 0 #ff006e;
    width: 100%;
}

.product-card:nth-child(2) .contact-btn {
    box-shadow: 4px 4px 0 #00d9ff;
}

.product-card:nth-child(3) .contact-btn {
    box-shadow: 4px 4px 0 #ffed00;
}

.contact-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #ff006e;
}

.product-card:nth-child(2) .contact-btn:hover {
    box-shadow: 2px 2px 0 #00d9ff;
}

.product-card:nth-child(3) .contact-btn:hover {
    box-shadow: 2px 2px 0 #ffed00;
}

.contact-btn:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 #ff006e;
}

/* Video Popup - Clean without border/shadow */
.video-popup {
    position: fixed;
    display: none;
    z-index: 99999;
    pointer-events: none;
}

.video-popup video {
    width: 640px !important;
    height: 360px !important;
    max-width: 90vw;
    max-height: 90vh;
    display: block;
    object-fit: cover;
}

.copy-popup {
    position: absolute;
    background: #ffed00;
    color: #0a0a0a;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 1000;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    border: 3px solid #0a0a0a;
    box-shadow: 4px 4px 0 #ff006e;
}

@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .profile-section,
    .showcase-section,
    .products-section {
        grid-column: 1 / -1;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero {
        transform: rotate(0deg);
        box-shadow: 8px 8px 0 #ff006e;
    }

    .product-card,
    .stats,
    .showcase-item {
        transform: rotate(0deg);
    }
}
