@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
        
.punk-title {
    font-family: 'Permanent Marker', cursive;
}

.gradient-bg {
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
}

.neon-border {
    box-shadow: 0 0 10px #4ECDC4, 0 0 20px #4ECDC4, 0 0 30px #4ECDC4;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.footer {
    background-color: #f8f9fa;
    padding: 1rem 0;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer a {
    color: #4ECDC4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #FF6B6B;
}
