/* dont make it obvious ur vibe coding */
body {

    background-color: #fcfbb6; 
    background-image: repeating-linear-gradient(45deg, #fefdd3 25%, transparent 25%, transparent 75%, #fefdd3 75%, #fefdd3), repeating-linear-gradient(45deg, #fefdd3 25%, #fcfbb6 25%, #fcfbb6 75%, #fefdd3 75%, #fefdd3);
    background-position: 0 0, 10px 10px;
    background-size: 25px 25px;

    font-family: "Comic Sans MS", "Comic Sans", cursive;
    color: #000;
    margin: 0;
    padding: 20px;
    cursor: default;
}

.container {
    width: 800px;
    margin: 0 auto;
    position: relative;
}

h1 {
    text-align: center;
    color: #ff00ff;
    text-shadow: 2px 2px 0px #00ffff;
    margin-bottom: 5px;
}

.box {
    border-width: 4px;
    border-style: outset;
    padding: 5px;
    margin-bottom: 10px;
    background-color: #fff;
}

.box-inset { border-style: inset; border-color: #aaa; }
.box-ridge { border-style: ridge; border-width: 6px; border-color: #4CAF50;}

.welcome-marquee {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #ff00ff;
    text-shadow: 2px 2px 0px #00ffff;
    margin-bottom: 20px;
    border: 4px groove #ff00ff;
    background: #000;
    padding: 5px;
}

.layout-grid {
    display: grid;
    grid-template-columns: 225px 1fr 225px;
    gap: 15px;
}

.nav-menu {
    background-color: #e0f7fa;
    border-color: #00bcd4;
    text-align: center;
}
.nav-menu a {
    display: block;
    margin: 5px 0;
    color: #0000ee;
    text-decoration: underline;
    border: 2px outset #ccc;
    background-color: #eee;
    padding: 4px;
    font-size: 14px;
    font-weight: bold;
}
.nav-menu a:hover { color: #ff0000; background-color: #ffff00; border-style: inset; }

.music-box {
    background-color: #ffcc00;
    color: #000;
    text-align: center;
    border-color: #ff9900;
    padding: 10px 5px;
}

.hello-box {
    background-color: #ff6666;
    color: #fff;
    border-color: #ff0000;
    font-size: 13px;
}

.intro-box {
    background-color: #ccffcc;
    border-color: #00ff00;
    min-height: 150px;
}

.bulletin-box {
    background-color: #e6e6fa;
    border-color: #9370db;
}

.status-box {
    background-color: #ffcc99;
    border-color: #ff9900;
    text-align: center;
    padding: 15px;
}

.guestbook-btn {
    display: inline-block; 
    border: 3px outset #ccc; 
    background: #eee; 
    padding: 8px; 
    text-decoration: none; 
    color: #ff00ff; 
    font-weight: bold;
    font-size: 16px;
}
.guestbook-btn:active {
    border-style: inset;
}

.counter {
    background: transparent;
    display: inline-block;
    padding: 2px 8px;
    
}
.counter img {
    margin: 0 1px; 
}

.profile-box {
    border-color: #ff33cc;
    background-color: #ffe6f9;
}
.profile-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.profile-table th, .profile-table td {
    border: 2px inset #ff33cc;
    padding: 4px;
}
.profile-table th { background-color: #ff99e6; text-align: left; }

.webring-box {
    background-color: #000080;
    border: 5px ridge #c0c0c0;
    text-align: center;
    padding: 10px;
    color: #fff;
}

.buttons-section {
    background-color: #cceeff;
    border-color: #66ccff;
    text-align: center;
    padding: 15px;
    margin-top: 15px;
}

.guestbook-frontend {
    background-color: #ffe4e1;
    border-color: #ffb6c1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.floating-girl-right {
    position: absolute;
    right: -250px;
    bottom: 350px;
    height: 350px;
}

.floating-girl-left {
    position: absolute;
    left: -250px;
    bottom: 600px;
    height: 350px;
}

.blink { animation: blinker 1s linear infinite; }
@keyframes blinker { 50% { opacity: 0; } }