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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
}

.container {
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 20px;
}

.content {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.icon-container {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

/* Traffic Cone CSS */
.traffic-cone {
    width: 120px;
    height: 150px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s ease-in-out infinite;
}

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

.cone-top {
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 50px solid #ff6b35;
    position: relative;
}

.cone-stripe {
    width: 70px;
    height: 15px;
    background: white;
    margin: 5px 0;
    border-radius: 2px;
}

.cone-stripe:nth-child(2) {
    width: 80px;
}

.cone-stripe:nth-child(3) {
    width: 90px;
}

.cone-base {
    width: 110px;
    height: 15px;
    background: #333;
    border-radius: 50%;
    margin-top: 5px;
}

h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.shadow {
    width: 150px;
    height: 8px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.3) 0%, transparent 70%);
    margin: 30px auto 40px;
    border-radius: 50%;
}

.info-section {
    margin-top: 40px;
}

.info-section h2 {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
    font-weight: 500;
}

.links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.link-button {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.link-button:active {
    transform: translateY(-1px);
}

footer {
    color: white;
    font-size: 0.9rem;
    text-align: center;
}

footer p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 600px) {
    .content {
        padding: 40px 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .info-section h2 {
        font-size: 1.1rem;
    }
    
    .links {
        flex-direction: column;
        gap: 10px;
    }
    
    .link-button {
        width: 100%;
        max-width: 250px;
    }
    
    .traffic-cone {
        transform: scale(0.8);
    }
}
