/* -- RESET -- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fdfdfd;
    overflow-x: hidden;
}

/* -- THE LIVE COUNTER -- */
.visitor-counter {
    background: #000;
    color: #0f0;
    text-align: center;
    padding: 2.5rem 1rem;
    border-bottom: 5px solid #ff00ff;
}

.visitor-counter p {
    font-family: "Impact", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

#count {
    font-family: 'Courier New', Courier, monospace;
    font-size: 5.5rem;
    font-weight: bold;
    color: #0f0;
    text-shadow: 0 0 15px #0f0, 0 0 30px #0f0; /* Neon Glow */
    display: block;
}

/* -- HEADER & PHOTO -- */
.main-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: left;
}

.profile-pic {
    width: 250px;
    height: auto;
    background-color: #fff;
    padding: 15px 15px 60px 15px; /* Polaroid Style */
    border: 1px solid #ddd;
    box-shadow: 5px 10px 20px rgba(0,0,0,0.2);
    transform: rotate(-3deg);
    filter: sepia(0.2) contrast(1.1) brightness(0.9);
    transition: transform 0.3s ease;
}

.profile-pic:hover {
    transform: rotate(0deg) scale(1.05);
    filter: none;
}

h1 { font-size: 3.5rem; text-transform: uppercase; letter-spacing: -2px; }

/* -- MAIN CONTENT -- */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.funny-gif {
    display: block;
    max-width: 100%;
    margin: 2rem 0;
    border: 3px solid black;
    box-shadow: 10px 10px 0px #000;
}

.main-footer {
    text-align: center;
    padding: 4rem 2rem;
    background: #f4f4f4;
    border-top: 2px solid #ccc;
}

.cat-button {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 1.5rem 3rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

/* -- MOBILE TWEAKS -- */
@media (max-width: 600px) {
    .visitor-counter p { font-size: 1.2rem; }
    #count { font-size: 3.5rem; }
    .profile-pic { width: 200px; }
    h1 { font-size: 2.5rem; }
}