:root {
    --lime: #CCFF00;
    --purple: #B026FF;
    --black: #000000;
    --white: #FFFFFF;
    --border: 3px solid var(--black);
    --shadow: 6px 6px 0px var(--black);
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

/* Marquee */
.marquee-container {
    background-color: var(--black);
    color: var(--lime);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: var(--border);
}

.marquee {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.marquee span {
    margin-right: 50px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: var(--border);
    position: sticky;
    top: 0;
    background-color: var(--white);
    z-index: 100;
}

.logo {
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: -2px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    position: relative;
}

.nav-link:hover {
    text-decoration: underline;
    text-decoration-thickness: 3px;
}

.cart-btn {
    background-color: var(--lime);
    padding: 5px 15px;
    border: var(--border);
    box-shadow: 3px 3px 0px var(--black);
    transition: all 0.2s;
}

.cart-btn:active {
    transform: translate(3px, 3px);
    box-shadow: 0px 0px 0px var(--black);
}

/* Hero */
.hero {
    display: flex;
    min-height: 80vh;
    border-bottom: var(--border);
}

.hero-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: var(--border);
    background-color: var(--white);
}

.hero-text h1 {
    font-size: 8rem;
    line-height: 0.8;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    background-color: var(--black);
    color: var(--white);
    display: inline-block;
    padding: 5px 10px;
    align-self: flex-start;
}

.btn-primary {
    display: inline-block;
    background-color: var(--lime);
    color: var(--black);
    font-weight: 900;
    font-size: 1.5rem;
    padding: 20px 40px;
    text-decoration: none;
    border: var(--border);
    box-shadow: var(--shadow);
    text-transform: uppercase;
    align-self: flex-start;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: var(--purple);
    color: var(--white);
}

.btn-primary:active {
    transform: translate(6px, 6px);
    box-shadow: 0 0 0 var(--black);
}

.hero-img {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.sticker {
    position: absolute;
    top: 40px;
    right: 40px;
    background-color: var(--purple);
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    transform: rotate(15deg);
    border: var(--border);
    box-shadow: var(--shadow);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(15deg) translateY(0); }
    50% { transform: rotate(15deg) translateY(-10px); }
}

/* Menu */
.menu {
    padding: 80px 40px;
    background-color: var(--white);
    border-bottom: var(--border);
}

.section-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
    -webkit-text-stroke: 2px var(--black);
    color: transparent;
    text-shadow: 4px 4px 0px var(--lime);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    border: var(--border);
    box-shadow: var(--shadow);
    background-color: var(--white);
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px var(--black);
}

.card-header {
    padding: 15px;
    border-bottom: var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--black);
    color: var(--white);
}

.card-header h3 {
    font-weight: 900;
    font-size: 1.2rem;
}

.price {
    background-color: var(--lime);
    color: var(--black);
    padding: 2px 8px;
    font-weight: 900;
    border: 2px solid var(--white);
}

.card-img {
    height: 300px;
    overflow: hidden;
    border-bottom: var(--border);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.card-body {
    padding: 20px;
}

.card-body p {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-add {
    width: 100%;
    padding: 15px;
    background-color: var(--white);
    border: var(--border);
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s;
}

.btn-add:hover {
    background-color: var(--black);
    color: var(--white);
}

/* Construct */
.construct {
    background-color: var(--purple);
    border-bottom: var(--border);
    color: var(--white);
    padding: 80px 0;
}

.construct-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 40px;
}

.manifesto-text h2 {
    font-size: 5rem;
    line-height: 0.9;
    font-weight: 900;
    margin-bottom: 40px;
    text-shadow: 4px 4px 0px var(--black);
}

.manifesto-text ul {
    list-style: none;
}

.manifesto-text li {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.manifesto-text li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--lime);
}

.manifesto-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.big-circle {
    width: 300px;
    height: 300px;
    background-color: var(--lime);
    border-radius: 50%;
    border: var(--border);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: var(--black);
    transform: rotate(-10deg);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotate(-10deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-20px); }
}

.badge-info {
    width: 100%;
    padding: 15px;
    background-color: var(--white);
    border: var(--border);
    font-weight: 900;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
}

/* About */
.about {
    padding: 80px 40px;
    background-color: var(--lime);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 6rem;
    line-height: 0.9;
    font-weight: 900;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: var(--border);
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    font-weight: 900;
    font-size: 1.5rem;
}

.footer-right a {
    color: var(--lime);
    text-decoration: none;
    font-weight: 700;
    margin-left: 30px;
    font-size: 1.2rem;
}

.footer-right a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
    }
    
    .hero-text {
        border-right: none;
        border-bottom: var(--border);
        padding: 40px;
    }
    
    .hero-text h1 {
        font-size: 5rem;
    }
    
    .hero-img {
        height: 400px;
    }
    
    .construct-container {
        grid-template-columns: 1fr;
    }
    
    .about-content h2 {
        font-size: 4rem;
    }
}

@media (max-width: 600px) {
    .header {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-title {
        font-size: 3rem;
    }
}
