@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Lora:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
    background: #000000;
    color: #ff86ec;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Hot pink sidebars */
.sidebar-left {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(50% - 450px);
    min-width: 150px;
    height: 100vh;
    background: #ff86ec;
    z-index: 0;
    overflow: visible;
}

.sidebar-right {
    position: fixed;
    top: 0;
    right: 0;
    width: calc(50% - 450px);
    min-width: 150px;
    height: 100vh;
    background: #ff86ec;
    z-index: 0;
    overflow: visible;
}

body::before {
    z-index: -2;
}

/* Subtle starfield background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(1px 1px at 20px 30px, #9c80bb, transparent),
        radial-gradient(1px 1px at 60px 70px, #ff86ec, transparent),
        radial-gradient(1px 1px at 50px 50px, #9c80bb, transparent),
        radial-gradient(1px 1px at 80px 10px, #ff86ec, transparent),
        radial-gradient(1px 1px at 90px 40px, #9c80bb, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: starfield 20s linear infinite;
    opacity: 0.15;
    z-index: -1;
}

@keyframes starfield {
    from { transform: translateY(0); }
    to { transform: translateY(100px); }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #000000;
    border: 3px solid #9c80bb;
}

header h1 {
    font-size: 2.5em;
    color: #ff86ec;
    text-shadow: 2px 2px 0px #000000;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-link {
    display: inline-block;
    padding: 10px 20px;
    background: #9c80bb;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #ff86ec;
    text-transform: uppercase;
    transition: all 0.3s;
}

.nav-link:hover {
    background: #ff86ec;
    color: #000000;
    border-color: #9c80bb;
}

main {
    margin: 30px 0;
    position: relative;
}

/* Cat images styling */
.cat-decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
    max-width: 120px;
    height: auto;
}

/* Cat size variations */
.cat-small {
    max-width: 80px;
}

.cat-medium {
    max-width: 120px;
}

.cat-large {
    max-width: 160px;
}

.cat-extra-large {
    max-width: 200px;
}

.sidebar-left .cat-decoration {
    position: absolute;
    left: 0;
}

.sidebar-right .cat-decoration {
    position: absolute;
    right: 0;
}

/* Siamese animated GIF in top right */
.siamese-gif {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
    max-width: 150px;
    height: auto;
}

/* 90s Pixelated Cloud styling */
.pixel-cloud {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
    width: 0;
    height: 0;
}

/* Create pixelated cloud using CSS - blocky 90s style with border */
.pixel-cloud::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #d3d3d3;
    border: 1px solid #000000;
    border-radius: 0;
    box-shadow: 
        /* Bottom row */
        8px 0 0 0 #d3d3d3,
        16px 0 0 0 #d3d3d3,
        24px 0 0 0 #d3d3d3,
        32px 0 0 0 #d3d3d3,
        40px 0 0 0 #d3d3d3,
        48px 0 0 0 #d3d3d3,
        /* Second row */
        4px -8px 0 0 #d3d3d3,
        12px -8px 0 0 #d3d3d3,
        20px -8px 0 0 #d3d3d3,
        28px -8px 0 0 #d3d3d3,
        36px -8px 0 0 #d3d3d3,
        44px -8px 0 0 #d3d3d3,
        52px -8px 0 0 #d3d3d3,
        /* Third row */
        0 -16px 0 0 #d3d3d3,
        8px -16px 0 0 #d3d3d3,
        16px -16px 0 0 #d3d3d3,
        24px -16px 0 0 #d3d3d3,
        32px -16px 0 0 #d3d3d3,
        40px -16px 0 0 #d3d3d3,
        48px -16px 0 0 #d3d3d3,
        56px -16px 0 0 #d3d3d3,
        /* Top row */
        4px -24px 0 0 #d3d3d3,
        12px -24px 0 0 #d3d3d3,
        20px -24px 0 0 #d3d3d3,
        28px -24px 0 0 #d3d3d3,
        36px -24px 0 0 #d3d3d3,
        44px -24px 0 0 #d3d3d3,
        52px -24px 0 0 #d3d3d3;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Border for cloud pixels */
.pixel-cloud::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 1px solid #000000;
    box-shadow: 
        /* Bottom row borders */
        8px 0 0 0 #000000,
        16px 0 0 0 #000000,
        24px 0 0 0 #000000,
        32px 0 0 0 #000000,
        40px 0 0 0 #000000,
        48px 0 0 0 #000000,
        /* Second row borders */
        4px -8px 0 0 #000000,
        12px -8px 0 0 #000000,
        20px -8px 0 0 #000000,
        28px -8px 0 0 #000000,
        36px -8px 0 0 #000000,
        44px -8px 0 0 #000000,
        52px -8px 0 0 #000000,
        /* Third row borders */
        0 -16px 0 0 #000000,
        8px -16px 0 0 #000000,
        16px -16px 0 0 #000000,
        24px -16px 0 0 #000000,
        32px -16px 0 0 #000000,
        40px -16px 0 0 #000000,
        48px -16px 0 0 #000000,
        56px -16px 0 0 #000000,
        /* Top row borders */
        4px -24px 0 0 #000000,
        12px -24px 0 0 #000000,
        20px -24px 0 0 #000000,
        28px -24px 0 0 #000000,
        36px -24px 0 0 #000000,
        44px -24px 0 0 #000000,
        52px -24px 0 0 #000000;
    pointer-events: none;
}

/* Gray color variations */
.pixel-cloud-gray-light::before {
    background: #e8e8e8;
    box-shadow: 
        8px 0 0 0 #e8e8e8, 16px 0 0 0 #e8e8e8, 24px 0 0 0 #e8e8e8, 32px 0 0 0 #e8e8e8, 40px 0 0 0 #e8e8e8, 48px 0 0 0 #e8e8e8,
        4px -8px 0 0 #e8e8e8, 12px -8px 0 0 #e8e8e8, 20px -8px 0 0 #e8e8e8, 28px -8px 0 0 #e8e8e8, 36px -8px 0 0 #e8e8e8, 44px -8px 0 0 #e8e8e8, 52px -8px 0 0 #e8e8e8,
        0 -16px 0 0 #e8e8e8, 8px -16px 0 0 #e8e8e8, 16px -16px 0 0 #e8e8e8, 24px -16px 0 0 #e8e8e8, 32px -16px 0 0 #e8e8e8, 40px -16px 0 0 #e8e8e8, 48px -16px 0 0 #e8e8e8, 56px -16px 0 0 #e8e8e8,
        4px -24px 0 0 #e8e8e8, 12px -24px 0 0 #e8e8e8, 20px -24px 0 0 #e8e8e8, 28px -24px 0 0 #e8e8e8, 36px -24px 0 0 #e8e8e8, 44px -24px 0 0 #e8e8e8, 52px -24px 0 0 #e8e8e8;
}

.pixel-cloud-gray-medium::before {
    background: #b8b8b8;
    box-shadow: 
        8px 0 0 0 #b8b8b8, 16px 0 0 0 #b8b8b8, 24px 0 0 0 #b8b8b8, 32px 0 0 0 #b8b8b8, 40px 0 0 0 #b8b8b8, 48px 0 0 0 #b8b8b8,
        4px -8px 0 0 #b8b8b8, 12px -8px 0 0 #b8b8b8, 20px -8px 0 0 #b8b8b8, 28px -8px 0 0 #b8b8b8, 36px -8px 0 0 #b8b8b8, 44px -8px 0 0 #b8b8b8, 52px -8px 0 0 #b8b8b8,
        0 -16px 0 0 #b8b8b8, 8px -16px 0 0 #b8b8b8, 16px -16px 0 0 #b8b8b8, 24px -16px 0 0 #b8b8b8, 32px -16px 0 0 #b8b8b8, 40px -16px 0 0 #b8b8b8, 48px -16px 0 0 #b8b8b8, 56px -16px 0 0 #b8b8b8,
        4px -24px 0 0 #b8b8b8, 12px -24px 0 0 #b8b8b8, 20px -24px 0 0 #b8b8b8, 28px -24px 0 0 #b8b8b8, 36px -24px 0 0 #b8b8b8, 44px -24px 0 0 #b8b8b8, 52px -24px 0 0 #b8b8b8;
}

.pixel-cloud-gray-dark::before {
    background: #888888;
    box-shadow: 
        8px 0 0 0 #888888, 16px 0 0 0 #888888, 24px 0 0 0 #888888, 32px 0 0 0 #888888, 40px 0 0 0 #888888, 48px 0 0 0 #888888,
        4px -8px 0 0 #888888, 12px -8px 0 0 #888888, 20px -8px 0 0 #888888, 28px -8px 0 0 #888888, 36px -8px 0 0 #888888, 44px -8px 0 0 #888888, 52px -8px 0 0 #888888,
        0 -16px 0 0 #888888, 8px -16px 0 0 #888888, 16px -16px 0 0 #888888, 24px -16px 0 0 #888888, 32px -16px 0 0 #888888, 40px -16px 0 0 #888888, 48px -16px 0 0 #888888, 56px -16px 0 0 #888888,
        4px -24px 0 0 #888888, 12px -24px 0 0 #888888, 20px -24px 0 0 #888888, 28px -24px 0 0 #888888, 36px -24px 0 0 #888888, 44px -24px 0 0 #888888, 52px -24px 0 0 #888888;
}

.pixel-cloud-small::before,
.pixel-cloud-small::after {
    transform: scale(0.5);
}

.pixel-cloud-medium::before,
.pixel-cloud-medium::after {
    transform: scale(0.7);
}

.pixel-cloud-large::before,
.pixel-cloud-large::after {
    transform: scale(1);
}

/* Book cover styling */
.book-cover-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 20px 0;
    flex-wrap: wrap;
}

.book-cover {
    max-width: 300px;
    width: 100%;
    height: auto;
    border: 3px solid #9c80bb;
    box-shadow: 0 0 10px rgba(156, 128, 187, 0.5);
    flex-shrink: 0;
}

.book-description-box {
    flex: 1;
    min-width: 250px;
    background: #000000;
    border: 3px solid #9c80bb;
    padding: 25px;
    font-family: 'Merriweather', 'Lora', 'Georgia', serif;
}

.book-description-box h3 {
    font-family: 'Merriweather', 'Lora', 'Georgia', serif;
    font-weight: 700;
    color: #ff86ec;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.book-description-box p {
    font-family: 'Merriweather', 'Lora', 'Georgia', serif;
    font-size: 1.15em;
    line-height: 1.9;
    color: #ff86ec;
    margin: 15px 0;
}

.content-box {
    background: #000000;
    border: 3px solid #9c80bb;
    padding: 30px;
    margin-bottom: 20px;
}

h2 {
    font-size: 2em;
    color: #ff86ec;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0px #000000;
    border-bottom: 2px dashed #9c80bb;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.5em;
    color: #9c80bb;
    margin: 20px 0 10px 0;
}

p {
    line-height: 1.8;
    margin: 15px 0;
    font-size: 1.1em;
}

strong {
    color: #ff86ec;
}

/* Blinking text animation */
.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.blink-slow {
    animation: blinkSlow 2s infinite;
}

@keyframes blinkSlow {
    0%, 70% { opacity: 1; }
    71%, 100% { opacity: 0.5; }
}

/* Marquee styling */
.marquee {
    margin: 20px 0;
    padding: 15px;
    background: #9c80bb;
    border: 2px solid #ff86ec;
    overflow: hidden;
}

.marquee marquee {
    color: #000000;
    font-weight: bold;
    font-size: 1.2em;
}

/* Animated text */
.animated-text {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: #000000;
    border: 2px solid #9c80bb;
}

.animated-text p {
    color: #ff86ec;
    font-weight: bold;
    text-shadow: 1px 1px 0px #000000;
    margin: 0;
}

/* Author copies section */
.author-copies-section {
    margin: 30px 0;
}

.author-copies-text {
    font-family: 'Merriweather', 'Lora', 'Georgia', serif;
    margin-bottom: 20px;
}

.author-copies-text h3 {
    font-family: 'Merriweather', 'Lora', 'Georgia', serif;
    font-weight: 700;
    font-size: 1.8em;
    color: #ff86ec;
    text-shadow: 2px 2px 0px #000000;
    margin: 0;
}

.author-copies-images {
    display: flex;
    gap: 20px;
    align-items: stretch;
    flex-wrap: wrap;
}

.author-copies-img-wrapper {
    width: calc(33.333% - 14px);
    min-width: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
}

.author-copies-photo {
    width: 100%;
    height: 100%;
    border: 3px solid #9c80bb;
    box-shadow: 0 0 10px rgba(156, 128, 187, 0.5);
    object-fit: cover;
}

.author-copies-photo-first {
    object-fit: cover;
}

/* Visitor counter */
.visitor-counter {
    text-align: center;
    margin: 20px 0;
    padding: 10px;
    background: #000000;
    border: 2px dashed #9c80bb;
}

.visitor-counter p {
    color: #ff86ec;
    font-weight: bold;
}

#counter {
    color: #9c80bb;
    font-size: 1.3em;
}

/* Bio section */
.bio-section {
    background: rgba(156, 128, 187, 0.05);
    padding: 20px;
    border-left: 3px solid #9c80bb;
    margin: 20px 0;
    font-family: 'Merriweather', 'Lora', 'Georgia', serif;
}

.bio-section p {
    font-family: 'Merriweather', 'Lora', 'Georgia', serif;
    font-size: 1.15em;
    line-height: 1.9;
}

.bio-section h3 {
    font-family: 'Merriweather', 'Lora', 'Georgia', serif;
    font-weight: 700;
}

.bio-text {
    font-family: 'Merriweather', 'Lora', 'Georgia', serif;
    font-size: 1.15em;
    line-height: 1.9;
    color: #000000;
}

.email-box .bio-text {
    color: #ff86ec;
}

.bio-text-black {
    color: #000000 !important;
}

/* Contact section */
.contact-section {
    text-align: center;
}

.email-box {
    background: #9c80bb;
    border: 3px solid #ff86ec;
    padding: 25px;
    margin: 30px 0;
}

.email-box ul {
    color: #000000;
}

.email-box li {
    margin: 8px 0;
    line-height: 1.6;
}

.bio-section ul {
    color: #ff86ec;
}

.bio-section li {
    margin: 8px 0;
    line-height: 1.6;
}

.author-bio-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 20px 0;
    flex-wrap: wrap;
}

.author-bio-text {
    flex: 3;
    min-width: 250px;
}

.author-photo-container {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.author-photo {
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 3px solid #9c80bb;
    box-shadow: 0 0 10px rgba(156, 128, 187, 0.5);
}

.taylor-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 30px 0;
    flex-wrap: wrap;
}

.taylor-photo {
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 3px solid #9c80bb;
    box-shadow: 0 0 10px rgba(156, 128, 187, 0.5);
}

.taylor-photo-wrapper {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.taylor-text {
    flex: 3;
    min-width: 250px;
}

.taylor-text p {
    font-family: 'Merriweather', 'Lora', 'Georgia', serif;
    font-size: 1.15em;
    line-height: 1.9;
    color: #ff86ec;
    margin: 0;
}

.instagram-link {
    color: #ff86ec;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #9c80bb;
    transition: all 0.3s;
}

.instagram-link:hover {
    color: #9c80bb;
    border-bottom-color: #ff86ec;
}

@media (max-width: 768px) {
    .author-bio-container {
        flex-direction: column;
    }
    
    .author-bio-text {
        width: 100%;
    }
    
    .author-photo-container {
        width: 100%;
    }
    
    .taylor-container {
        flex-direction: column;
        align-items: center;
    }
    
    .taylor-photo {
        margin: 0 auto;
    }
    
    .taylor-text {
        width: 100%;
    }
}

.email-link-container {
    margin: 15px 0;
}

.email-box h3 {
    color: #000000;
    margin-bottom: 15px;
    text-shadow: none;
}

.email-address {
    margin: 15px 0;
}

.email-link {
    color: #000000;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    background: #ff86ec;
    border: 2px solid #9c80bb;
    display: inline-block;
    transition: all 0.3s;
}

.email-link:hover {
    background: #9c80bb;
    color: #000000;
    border-color: #ff86ec;
}

.small-text {
    font-size: 0.9em;
    color: #000000;
    margin-top: 10px;
}

.contact-info {
    margin: 30px 0;
    padding: 20px;
    background: rgba(156, 128, 187, 0.1);
    border: 2px dashed #9c80bb;
}

/* Coming soon section */
.coming-soon-section {
    text-align: center;
}

.coming-soon-banner {
    background: #000000;
    padding: 30px;
    margin: 20px 0;
    border: 3px solid #9c80bb;
}

.coming-soon-banner h3 {
    color: #ff86ec;
    text-shadow: 2px 2px 0px #000000;
    margin: 10px 0;
}

.release-date {
    font-size: 2em !important;
    color: #9c80bb !important;
    text-shadow: 2px 2px 0px #000000 !important;
}

.book-info {
    margin: 30px 0;
    padding: 20px;
    background: rgba(156, 128, 187, 0.1);
    border: 2px solid #9c80bb;
}

.book-blurb {
    font-family: 'Merriweather', 'Lora', 'Georgia', serif;
    margin-top: 20px;
}

.book-blurb p {
    font-family: 'Merriweather', 'Lora', 'Georgia', serif;
    font-size: 1.15em;
    line-height: 1.9;
    color: #ff86ec;
    margin: 15px 0;
}

.book-blurb p strong {
    color: #ff86ec;
    font-size: 1.2em;
    display: block;
    margin-bottom: 20px;
}

.under-construction {
    background: #9c80bb;
    color: #000000;
    padding: 20px;
    margin: 30px 0;
    border: 3px solid #ff86ec;
    font-weight: bold;
}

.under-construction p {
    margin: 10px 0;
    font-size: 1.2em;
}

.welcome-text {
    margin: 30px 0;
    padding: 20px;
    background: rgba(156, 128, 187, 0.05);
    border: 2px dashed #9c80bb;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 2px dashed #9c80bb;
    color: #ff86ec;
}

footer p {
    margin: 10px 0;
    font-size: 0.9em;
}

#date {
    color: #9c80bb;
}

/* Music Controls */
.music-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.music-btn {
    background: #9c80bb;
    color: #000000;
    border: 5px solid #ff86ec;
    padding: 20px 25px;
    font-size: 3.5em;
    cursor: pointer;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 0 25px rgba(255, 134, 236, 0.9), 0 0 40px rgba(156, 128, 187, 0.7);
    animation: pulse 2s infinite;
}

.music-btn:hover {
    background: #ff86ec;
    border-color: #9c80bb;
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(255, 134, 236, 1), 0 0 40px rgba(156, 128, 187, 0.8);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 134, 236, 0.8), 0 0 30px rgba(156, 128, 187, 0.6);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 134, 236, 1), 0 0 40px rgba(156, 128, 187, 0.8);
    }
}

.music-btn.muted {
    opacity: 0.6;
}

#background-music {
    display: none;
}

/* Responsive design */
@media (max-width: 1200px) {
    .sidebar-left {
        width: calc(50% - 450px);
        min-width: 100px;
    }
    
    .sidebar-right {
        width: calc(50% - 450px);
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .sidebar-left,
    .sidebar-right {
        display: none;
    }
    
    header h1 {
        font-size: 1.8em;
    }
    
    .nav-link {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    
    .content-box {
        padding: 20px;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    .cat-decoration {
        max-width: 80px;
    }
    
    .book-cover-container {
        flex-direction: column;
        align-items: center;
    }
    
    .book-cover {
        margin: 0 auto;
    }
    
    .book-description-box {
        width: 100%;
    }
    
    .author-copies-text {
        text-align: center;
    }
    
    .author-copies-images {
        flex-direction: column;
        align-items: center;
    }
    
    .author-copies-img-wrapper {
        width: 100%;
    }
    
    .author-copies-photo {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

