/* Deferred styles - loaded after critical content */

/* Enhanced body styles with animations */
body.animations-loaded {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 25%, #330066 50%, #1a0033 75%, #0a0a0a 100%);
    animation: body-breathe 8s ease-in-out infinite;
    font-family: 'Comfortaa', sans-serif;
    height: 100vh;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

@keyframes body-breathe {
    0%, 100% { filter: hue-rotate(0deg) saturate(1); }
    50% {
        opacity: 1;
        transform: translateY(-3px);
        filter: hue-rotate(15deg);
    }
}

/* Clean starfield background */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    min-height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, #000814 0%, #1a0033 25%, #330066 50%, #1a0033 75%, #000814 100%);
    opacity: 1;
}

.starfield::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #fff, transparent),
        radial-gradient(1px 1px at 90px 40px, #00ff7f, transparent),
        radial-gradient(1px 1px at 130px 80px, #8a2be2, transparent),
        radial-gradient(1px 1px at 160px 30px, #00bfff, transparent);
    background-size: 200px 100px, 250px 120px, 180px 90px, 220px 110px;
    animation: simple-stars 60s linear infinite;
    opacity: 0.4;
}

@keyframes simple-stars {
    0% { background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px; }
    100% { background-position: -200px 40px, 80px 60px, -60px 100px, 160px -40px; }
}

/* Enhanced logo animations */
.logo {
    filter: drop-shadow(0 0 30px rgba(255, 105, 180, 0.6));
    animation: liquid-logo-alive 4s ease-in-out infinite;
}

@keyframes liquid-logo-alive {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        filter: drop-shadow(0 0 30px rgba(255, 105, 180, 0.6));
    }
    50% { 
        transform: translateY(-15px) scale(1.03);
        filter: drop-shadow(0 0 50px rgba(255, 105, 180, 0.9));
    }
}

@keyframes beat-pulse {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    50% { 
        transform: translateY(-5px) scale(1.05);
    }
}

/* Enhanced brand text */
.brand-text {
    background: linear-gradient(45deg, #ff69b4 0%, #00ff7f 15%, #8a2be2 30%, #ff1493 45%, #00bfff 60%, #ff69b4 75%, #00ff7f 90%, #8a2be2 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: liquid-text-alive 6s ease-in-out infinite;
    font-family: 'Anton', sans-serif;
}

@keyframes liquid-text-alive {
    0%, 100% { 
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% {
        background-position: 100% 50%;
        transform: scale(1.02);
    }
}

/* Subtitle animations */
.subtitle {
    animation: subtitle-breathe 5s ease-in-out infinite;
}

@keyframes subtitle-breathe {
    0%, 100% { 
        opacity: 0.8;
        transform: translateY(0px);
    }
    50% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

/* Product section styles */
.product-section {
    padding: 0;
    background: transparent !important;
    position: relative;
    margin: 0;
}

.hoodie-gallery {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    background: transparent !important;
}

.hoodie-container {
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 1000px;
    margin-bottom: 30px;
    background: none;
}

.hoodie-flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    cursor: pointer;
}

.hoodie-flipper.flipped {
    transform: rotateY(180deg);
}

.hoodie-side {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hoodie-back {
    transform: rotateY(180deg);
}

.hoodie-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    transform: scale(1.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hoodie-side img:not(.lazy-load) {
    opacity: 1;
}

.flip-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.flip-btn {
    padding: 12px 24px;
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 25px;
    color: #ff69b4;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.flip-btn:hover {
    background: rgba(255, 105, 180, 0.2);
    border-color: #ff69b4;
    transform: translateY(-2px);
}

.flip-btn.active {
    background: #ff69b4;
    color: #000;
}

.product-info h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 40px;
    font-family: 'Anton', sans-serif;
    background: linear-gradient(90deg, #ff69b4 0%, #00ff7f 25%, #8a2be2 50%, #ff1493 75%, #00bfff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
    background-clip: text;
    animation: heading-flow 4s ease-in-out infinite;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

@keyframes heading-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Buy section */
.buy-section {
    margin-top: 50px;
    text-align: center;
    padding: 0 20px;
}

.quantum-button {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ff69b4 0%, #8a2be2 50%, #00ff7f 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 40px;
    color: #ffffff;
    cursor: pointer;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 22px 45px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
    animation: btn-breathe 4s ease-in-out infinite;
    min-height: 70px;
    line-height: 1.2;
    gap: 6px;
}

.quantum-button:hover {
    transform: translateY(-3px) scale(1.05);
    background-position: 100% 0%;
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.5);
}

.btn-text {
    display: block;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.2;
    padding: 0;
    font-weight: 700;
}

.amazon-text {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    background: linear-gradient(90deg, #ff69b4, #8a2be2, #00ff7f, #ff1493);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 4px 0 0 0;
    animation: gradient-flow 3s ease-in-out infinite;
    line-height: 1.2;
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes btn-breathe {
    0%, 100% { box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3); }
    50% { box-shadow: 0 15px 40px rgba(255, 105, 180, 0.4); }
}

/* Newsletter section */
.newsletter {
    padding: 0;
    text-align: center;
    background: transparent !important;
    margin: 0;
}

.newsletter h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.newsletter p {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.email-form {
    display: flex;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    padding: 20px;
    border-radius: 60px;
    transition: all 0.3s ease;
}

.email-input {
    flex: 1;
    min-width: 280px;
    padding: 15px 25px;
    border: 2px solid rgba(0, 255, 127, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: #666;
}

.email-input:focus {
    outline: none;
    border-color: #00ff7f;
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.2);
}

.email-button {
    padding: 15px 35px;
    background: #00ff7f;
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.email-button:hover {
    background: #8a2be2;
    color: #fff;
    transform: translateY(-2px);
}

/* Audio controls */
#audioWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    width: 100%;
}

.vibe-in-button {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 1rem;
    color: #fff;
    font-family: 'Comfortaa', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(127, 90, 240, 0.2);
    animation: cosmicPulse 5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes cosmicPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.92; }
}

/* Footer */
footer {
    padding: 0;
    text-align: center;
    color: #666;
    border: none;
    margin: 0;
    background: transparent !important;
}

/* Fade-in animations */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-delay-1 { transition-delay: 0.2s; }
.fade-in-delay-2 { transition-delay: 0.4s; }
.fade-in-delay-3 { transition-delay: 0.6s; }

/* Mobile responsive */
@media (max-width: 768px) {
    .hero { padding: 40px 0; }
    .product-section { padding: 80px 0; }
    .newsletter { padding: 80px 0; margin: 60px 20px; }
    .email-form { flex-direction: column; align-items: center; }
    .email-input { min-width: auto; width: 100%; max-width: 400px; }
    .main-logo { width: clamp(300px, 80vw, 600px); }
    .brand-text { font-size: clamp(2.5rem, 8vw, 4.5rem); }
}
```
.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    padding: 0;
    margin: 0;
    background: none;
}

/* Force all containers to have no background */
.container, .product-section .container, .newsletter .container, footer .container, 
.product-section, .newsletter, footer, .hoodie-gallery, .email-form,
section, div, main, article {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Form message styles */
.form-message {
    margin-top: 20px;
    padding: 15px 25px;
    border-radius: 30px;
    text-align: center;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message.success {
    background: rgba(0, 255, 127, 0.1);
    border: 2px solid rgba(0, 255, 127, 0.3);
    color: #00ff7f;
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.2);
}

.form-message.error {
    background: rgba(255, 105, 180, 0.1);
    border: 2px solid rgba(255, 105, 180, 0.3);
    color: #ff69b4;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.2);
}

.form-message.loading {
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.3);
    color: #8a2be2;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
}
