@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');
html {
    scroll-behavior: smooth
}
body {
    background-color: #000;
    color: rgb(136, 0, 255);
    font-family: 'VT323', monospace;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    background-image: 
        linear-gradient(rgba(0, 50, 0, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 50, 0, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    border-left: 1px dashed rgb(136, 0, 255);
    border-right: 1px dashed rgb(136, 0, 255);
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 60% 0;
    border-bottom: 1px dashed rgb(136, 0, 255);
    margin-bottom: 30px;
    line-height: 0.8;
}

h1, h2, h3, h4 {
    font-family: 'Press Start 2P', cursive;
    color: rgb(0, 221, 255);
    text-shadow: 0 0 5px #f00;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}


a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}


h2 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    border-bottom: 1px solid rgb(136, 0, 255);
    padding-bottom: 10px;
}

h3 {
    font-size: 1.4rem;
    color: rgb(136, 0, 255);
    text-shadow: 0 0 5px rgb(136, 0, 255);
    margin-top: 25px;
}

h4 {
    font-size: 1.2rem;
    color: rgb(200, 0, 255);
    margin: 15px 0 10px;
    
}

p {
    font-size: 1.1rem;
    color: rgb(200, 0, 255);
    margin: 15px 0 10px;
}

.intro {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-align: center;
    line-height: 0.6;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
       
}

.member-card {
    background: rgba(0, 30, 0, 0.7);
    border: 1px solid rgb(136, 0, 255);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s;
        
}

.member-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgb(136, 0, 255);
}

.card-link {
    text-decoration: none;
    display: block;
}

.card-link:hover .member-card {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgb(136, 0, 255);
    background: rgba(136, 0, 255, 0.1);
}

.member-details {
    margin-bottom: 50px;
    background: rgba(0, 20, 0, 0.5);
    padding: 20px;
    border-left: 3px solid rgb(0, 200, 255);
}

.car-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.car-specs div {
    padding: 5px;
    background: rgba(0, 40, 0, 0.3);
}

.contact-form {
    background: rgba(0, 20, 0, 0.5);
    padding: 20px;
    border: 1px solid rgb(136, 0, 255);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: rgb(136, 0, 255);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    background: rgba(0, 10, 0, 0.7);
    border: 1px solid rgb(136, 0, 255);
    color: rgb(136, 0, 255);
    font-family: 'VT323', monospace;
    font-size: 1.1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: #f00;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
     animation: glitch 0.9s linear infinite;
}

.submit-btn:hover {
    background: #ff3333;
}

footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px dashed rgb(136, 0, 255);
}

.qr-link {
    display: inline-block;
    text-decoration: none;
    color: rgb(136, 0, 255);
    margin: 20px 0;
}

.qr-code {
    background: #fff;
    padding: 10px;
    display: block;
    margin: 0 auto 10px;
    width: 150px;
    height: 150px;
}

.glitch {
    animation: glitch 0.9s linear infinite;
    margin-top: 50px;
}

@keyframes glitch {
    0% { text-shadow: 2px 0 rgb(136, 0, 255), -2px 0 #f00; }
    25% { text-shadow: -2px 0 rgb(136, 0, 255), 2px 0 #f00; }
    50% { text-shadow: 2px 0 #f00, -2px 0 rgb(136, 0, 255); }
    75% { text-shadow: -2px 0 #f00, 2px 0 rgb(47, 0, 255); }
    100% { text-shadow: 2px 0 rgb(136, 0, 255), -2px 0 #f00; }
}

.blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

