/* URLVibe - OG Internet Aesthetics */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 20px;
    font-family: 'Comic Sans MS', 'Courier New', monospace, Arial, sans-serif;
    background: #c0c0c0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.05) 10px, rgba(255,255,255,.05) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0,0,0,.03) 10px, rgba(0,0,0,.03) 20px);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border: 3px solid #000;
    box-shadow: 8px 8px 0px rgba(0,0,0,0.3);
}

h1 {
    color: #ff00ff;
    text-align: center;
    font-size: 36px;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px #00ffff;
}

h2 {
    color: #0066cc;
    border-bottom: 2px dotted #000;
    padding-bottom: 5px;
}

h3 {
    color: #009900;
}

.tagline {
    text-align: center;
    font-style: italic;
    color: #666;
    margin: 0 0 20px 0;
}

.box {
    background: #f5f5f5;
    border: 2px solid #333;
    padding: 20px;
    margin: 20px 0;
}

/* Forms */
form {
    margin: 20px 0;
}

label {
    display: block;
    margin: 15px 0 5px 0;
    font-weight: bold;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"],
textarea {
    width: 100%;
    padding: 8px;
    border: 2px solid #666;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    outline: none;
    border-color: #0066cc;
    background: #ffffcc;
}

button {
    background: #ff6600;
    color: white;
    border: 2px solid #000;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 3px 3px 0px #000;
    font-family: inherit;
}

button:hover {
    background: #ff8833;
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0px #000;
}

button:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0px #000;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: underline;
}

a:hover {
    color: #ff00ff;
}

a:visited {
    color: #660099;
}

.link {
    text-align: center;
    margin: 15px 0;
}

/* Messages */
.error {
    background: #ffcccc;
    border: 2px solid #cc0000;
    padding: 10px;
    margin: 15px 0;
    color: #cc0000;
    font-weight: bold;
}

.success {
    background: #ccffcc;
    border: 2px solid #009900;
    padding: 10px;
    margin: 15px 0;
    color: #009900;
    font-weight: bold;
}

/* Code/monospace */
code {
    background: #333;
    color: #0f0;
    padding: 2px 6px;
    font-family: 'Courier New', monospace;
    border: 1px solid #000;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 15px;
        box-shadow: 4px 4px 0px rgba(0,0,0,0.3);
    }

    h1 {
        font-size: 28px;
    }

    .box {
        padding: 15px;
    }
}

/* Fun OG decorations */
hr {
    border: none;
    border-top: 2px dashed #666;
    margin: 20px 0;
}

/* Blink effect for truly authentic experience (but subtle) */
@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.blink {
    animation: blink 1s infinite;
}

/* Under construction vibes */
.construction {
    background: repeating-linear-gradient(
        45deg,
        #ffff00,
        #ffff00 10px,
        #000 10px,
        #000 20px
    );
    padding: 10px;
    text-align: center;
    font-weight: bold;
}