body {
    margin: 0;
    font-family: 'Merriweather', serif;
    background: linear-gradient(135deg, #021024, #052659, #0e6ba8);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite; /* Slower background animation */
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h3 {
    margin-top: 0px;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.5);
    backdrop-filter: blur(10px);
}

.profile-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #1e90ff;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease;
    box-shadow: 0 0 30px #1e90ff;
}

.book-cover {
    width: 100px !important;
    height: 140px !important;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    flex-shrink: 0;
  }
  

.book-content {
    text-align: left;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
}

h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px #00bfff;
}

p {
    margin-top: 0;
    font-size: 1.2rem;
    color: #dce3ed;
}

.button {
    background: linear-gradient(90deg, #4edee7, #288dff);
    color: white;
    padding: 1rem;
    margin: 1rem 0;
    border: none;
    border-radius: 16px;
    font-size: 1.2rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px #4edee7, 0 0 20px #288dff; /* Reduced button shadow */
}

.button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #4edee7, 0 0 30px #288dff; /* Reduced hover shadow */
}

  .book-list {
    display: none;
    animation: fadeIn 0.6s ease forwards;
  }

.book {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 1rem;
    margin: 1.5rem 0;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.book:hover {
    transform: translateY(-8px);
}

.book h3 {
    color: #fff;
    text-shadow: 0 0 8px #4edee7;
}

.book p {
    color: #dce3ed;
}

.book a {
    display: inline-block;
    margin: 0.5rem 0.75rem;
    color: #ffa500;
    font-weight: bold;
    text-decoration: none;
}

.book a:hover {
    text-decoration: underline;
}

.stores {
    margin-top: 2rem;
}

.stores p {
    color: #ffffff;
    font-weight: bold;
}

.stores a {
    background: linear-gradient(135deg, #1e90ff, #288dff);
    color: white;
    margin: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px #288dff;
}

.stores a:hover {
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #00bfff;
    transform: scale(1.1);
}