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

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a1a1a;
    color: #fff;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

.container {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: clamp(20px, 5vw, 40px);
    background: linear-gradient(135deg, #2b2b2b, #1f1f1f);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #f5c107;
    width: 90%;
    max-width: 900px;
    margin: clamp(10px, 2vw, 20px);
}

.construction-text {
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    position: relative;
    width: 100%;
}

.construction-text h1 {
    font-family: 'Impact', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 10vw, 5rem);
    color: #f5c107;
    text-transform: uppercase;
    letter-spacing: clamp(2px, 1vw, 4px);
    -webkit-text-stroke: clamp(1px, 0.3vw, 2px) #333;
    text-stroke: clamp(1px, 0.3vw, 2px) #333;
    background: linear-gradient(to bottom, rgba(245, 193, 7, 0.2), transparent);
    padding: clamp(0.1em, 0.5vw, 0.2em) clamp(0.3em, 1vw, 0.5em);
    border-bottom: clamp(2px, 0.5vw, 4px) solid #d49e06;
    transform: skew(-10deg);
    line-height: 1.1;
}

.construction-text p {
    font-family: 'Courier New', monospace;
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: clamp(1.5px, 0.8vw, 3px);
    background: rgba(245, 193, 7, 0.1);
    padding: clamp(0.2em, 0.5vw, 0.3em) clamp(0.6em, 1vw, 1em);
    border-radius: 5px;
    margin-top: clamp(0.5rem, 2vw, 1rem);
    line-height: 1.3;
}

.construction-text::before {
    content: '';
    position: absolute;
    top: clamp(-5px, -1vw, -10px);
    left: 50%;
    width: 80%;
    height: 120%;
    background: repeating-linear-gradient(
        45deg,
        rgba(245, 193, 7, 0.2),
        rgba(245, 193, 7, 0.2) 10px,
        transparent 10px,
        transparent 20px
    );
    transform: translateX(-50%) rotate(-5deg);
    z-index: -1;
    opacity: 0.7;
}

.gif-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.tractor-animation {
    width: 100%;
    height: auto;
    max-width: 381px;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    .construction-text::before {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .container {
        width: 98%;
        margin: 5px;
    }
    .construction-text::before {
        width: 100%;
        height: 110%;
    }
}