/* ESTILO GRUNGE - anos 90/sujinho */
body {
    background-color: #111;
    color: #ccc;
    font-family: 'Courier New', monospace;
    background-image: url('grunge-bg.jpg');
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}

#container {
    max-width: 800px;
    margin: 20px auto;
    background-color: rgba(20, 5, 15, 0.85);
    border: 8px solid #333;
    border-image: url('grunge-border.png') 10 round;
    position: relative;
}

.grunge-border-top, .grunge-border-bottom {
    height: 15px;
    background-image: url('grunge-edge.png');
    background-repeat: repeat-x;
}

h1 {
    text-align: center;
    margin: 10px 0;
}

.title-image {
    max-width: 70%;
    filter: drop-shadow(0 0 5px #ff6600);
}

.nav {
    text-align: center;
    padding: 10px;
    background-color: #220022;
    border-top: 1px dashed #ff6600;
    border-bottom: 1px dashed #ff6600;
    margin-bottom: 20px;
}

.nav-link {
    color: #ff9900;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #fff;
    text-decoration: underline;
}

.content {
    padding: 20px;
    position: relative;
}

.sticker-left {
    position: absolute;
    left: -30px;
    top: 100px;
    transform: rotate(-15deg);
}

.sticker-right {
    position: absolute;
    right: -40px;
    bottom: 50px;
    transform: rotate(5deg);
}

h2 {
    color: #ff6600;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    text-shadow: 1px 1px 0 #000;
}

.grunge-list li {
    margin-bottom: 10px;
    list-style-type: none;
    padding-left: 20px;
    background: url('grunge-bullet.png') no-repeat left center;
}

.polaroid {
    background: #000;
    padding: 10px 10px 20px 10px;
    border: 1px solid #333;
    transform: rotate(2deg);
    margin: 20px auto;
    width: 60%;
    box-shadow: 0 0 10px rgba(255,100,0,0.3);
}

.polaroid img {
    width: 100%;
    border: 1px solid #444;
}

.polaroid p {
    text-align: center;
    font-style: italic;
    margin: 5px 0 0 0;
}

.footer {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #666;
    border-top: 1px solid #333;
}

/* Efeito de texto desgastado */
a {
    color: #ff9900;
    text-decoration: none;
    border-bottom: 1px dotted #ff6600;
}

a:hover {
    color: #fff;
    background-color: rgba(255,100,0,0.2);
}