/* CYBATWUCK - Ultimate Toy Website Styles */

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

body {
    font-family: 'Comic Neue', cursive;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
    background-size: 400% 400%;
    animation: rainbowBackground 8s ease infinite;
    overflow-x: hidden;
}

@keyframes rainbowBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-bottom: 8px solid #fff;
}

.logo {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 4px 4px 0px #ff3742, 8px 8px 0px #000;
    letter-spacing: 4px;
    transform: rotate(-2deg);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px 0px #000;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: radial-gradient(circle, #ffd93d, #6bcf7f);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23fff" opacity="0.8"><animate attributeName="opacity" values="0.8;0.2;0.8" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="%23fff" opacity="0.6"><animate attributeName="opacity" values="0.6;0.1;0.6" dur="3s" repeatCount="indefinite"/></circle><circle cx="40" cy="70" r="1" fill="%23fff" opacity="0.7"><animate attributeName="opacity" values="0.7;0.2;0.7" dur="1.5s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: sparkle 4s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    color: #2d3436;
    font-weight: 700;
    text-shadow: 3px 3px 0px #fff, 6px 6px 0px #ddd;
    margin-bottom: 20px;
    line-height: 1.1;
}

.mega-title {
    font-size: 4.5rem;
    color: #ff4757;
    display: block;
    transform: rotate(-1deg);
    text-shadow: 4px 4px 0px #fff, 8px 8px 0px #000;
}

.starburst {
    display: inline-block;
    background: radial-gradient(circle, #ffeb3b, #ff9800);
    color: #000;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 15px 25px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 20px rgba(255,235,59,0.8);
    position: relative;
    animation: bounce 2s infinite;
    margin: 20px 0;
    transform: rotate(15deg);
}

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

.starburst::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: conic-gradient(#ff9800, #ffeb3b, #ff9800, #ffeb3b);
    border-radius: 50%;
    z-index: -1;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-description {
    font-size: 1.3rem;
    color: #2d3436;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 1px 1px 0px #fff;
}

.cta-button {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 8px 0px #008d6a, 0 12px 20px rgba(0,0,0,0.3);
    transition: all 0.1s ease;
    font-family: 'Comic Neue', cursive;
}

.cta-button:hover {
    transform: translateY(4px);
    box-shadow: 0 4px 0px #008d6a, 0 8px 15px rgba(0,0,0,0.3);
}

.cta-button:active {
    transform: translateY(8px);
    box-shadow: 0 0px 0px #008d6a, 0 4px 10px rgba(0,0,0,0.3);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.image-container {
    position: relative;
    display: inline-block;
}

.main-truck {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 8px solid #fff;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
    filter: saturate(1.5) contrast(1.2) brightness(1.1);
    animation: float 3s ease-in-out infinite;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 60px;
    text-shadow: 4px 4px 0px #000;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 5px solid #fff;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.feature-card:nth-child(even) {
    transform: rotate(1deg);
}

.feature-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.feature-card h3 {
    font-size: 1.8rem;
    color: #2d3436;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0px #ddd;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 1.1rem;
    color: #636e72;
    font-weight: 400;
    line-height: 1.4;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #fd79a8, #e84393);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 4px solid #fff;
    transform: rotate(-2deg);
}

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

.testimonial p {
    font-size: 1.2rem;
    color: #2d3436;
    font-weight: 700;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial span {
    font-size: 1rem;
    color: #636e72;
    font-weight: 400;
}

/* Call to Action */
.call-to-action {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    color: #2d3436;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0px #fff;
    text-transform: uppercase;
}

.cta-text {
    font-size: 1.5rem;
    color: #2d3436;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 1px 1px 0px #fff;
}

.cta-button.mega {
    font-size: 2rem;
    padding: 20px 40px;
    background: linear-gradient(135deg, #e17055, #d63031);
    box-shadow: 0 10px 0px #b71c1c, 0 15px 25px rgba(0,0,0,0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.warning {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #636e72;
    font-style: italic;
}

/* Footer */
.footer {
    background: #2d3436;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .mega-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        transform: rotate(0deg);
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}