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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

.app-container {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.background-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #030014, rgba(88, 28, 135, 0.3), #030014);
}

.background-orbs {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.orb {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(60px);
}

.orb-1 {
    top: 25%;
    left: 25%;
    background: rgba(147, 51, 234, 0.2);
    animation: pulse 4s ease-in-out infinite;
}

.orb-2 {
    bottom: 25%;
    right: 25%;
    background: rgba(217, 119, 6, 0.2);
    animation: pulse 4s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(1.2);
    }
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-screen {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.8s ease-out;
}

.logo-screen.fade-out {
    animation: fadeOut 0.8s ease-out forwards;
}

.logo-content {
    text-align: center;
}

.main-logo-image {
    width: 12rem;
    height: auto;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 15px rgba(147, 51, 234, 0.6));
}

.logo-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: white;
    letter-spacing: 0.1em;
    animation: textPulse 2s ease-in-out infinite;
    margin-bottom: 0.5rem;
}

.logo-subtitle {
    color: #e5e7eb;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    max-width: 32rem;
    margin: 0 auto;
    opacity: 0.8;
}

.main-content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.5s forwards;
}

.main-content.hidden {
    display: none;
}

.header {
    padding: 2rem 1.5rem 0;
    text-align: center;
}

.header-content {
    max-width: 100%;
}

.main-title {
    font-size: 1.875rem;
    font-weight: 300;
    background: linear-gradient(to right, #c084fc, #fbbf24, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
}

.subtitle {
    color: #d1d5db;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    font-style: italic;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .subtitle {
        font-size: 1rem;
    }
}

.main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.container {
    max-width: 72rem;
    width: 100%;
}

.view {
    width: 100%;
}

.view.hidden {
    display: none;
}

.card-initial {
    max-width: 42rem;
    margin: 0 auto;
    position: relative;
    backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 25px 50px -12px rgba(88, 28, 135, 0.5);
    animation: slideUp 1s ease-out;
}

@media (min-width: 768px) {
    .card-initial {
        padding: 3rem;
    }
}

.card-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(147, 51, 234, 0.1), rgba(217, 119, 6, 0.1));
    border-radius: 1.5rem;
}

.card-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.card-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    background: linear-gradient(to right, rgba(147, 51, 234, 0.3), rgba(217, 119, 6, 0.3));
    border: 1px solid rgba(168, 85, 247, 0.3);
    margin-bottom: 1.5rem;
}

.card-badge span {
    color: #fcd34d;
    font-size: 1.25rem;
    font-weight: 300;
}

.card-image-container {
    width: 100%;
    max-width: 28rem;
    height: 31.25rem;
    margin: 0 auto 2rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.4), rgba(120, 53, 15, 0.4));
    border: 1px solid rgba(168, 85, 247, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    display: none;
}

.card-image.show {
    display: block;
}

.card-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(147, 51, 234, 0.2), rgba(217, 119, 6, 0.2));
}

.placeholder-icon {
    font-size: 6rem;
    position: relative;
    z-index: 10;
    opacity: 0.5;
}

.card-title {
    font-size: 1.875rem;
    font-weight: 300;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .card-title {
        font-size: 2.25rem;
    }
}

.card-subtitle-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    background: rgba(147, 51, 234, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    margin-bottom: 1.5rem;
}

.card-subtitle-badge span {
    color: #d8b4fe;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.card-description {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.75;
    font-weight: 300;
    max-width: 36rem;
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .card-description {
        font-size: 1.25rem;
    }
}

.loading-text {
    color: #fbbf24;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    animation: textPulse 2s ease-in-out infinite;
}

.gallery-container {
    width: 100%;
    backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 25px 50px -12px rgba(88, 28, 135, 0.5);
    animation: slideUp 0.3s ease-out;
}

@media (min-width: 768px) {
    .gallery-container {
        padding: 2rem;
    }
}

.gallery-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: white;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .gallery-title {
        font-size: 1.875rem;
    }
}

.gallery-subtitle {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    /* max-height removed to allow full page scroll */
    /* overflow-y removed */
    padding-right: 0;
}

.random-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, #9333ea, #db2777);
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-top: 1rem;
}

.random-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(147, 51, 234, 0.4);
    filter: brightness(1.1);
}

.random-header-btn .icon {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-grid::-webkit-scrollbar {
    width: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: rgba(168, 85, 247, 0.3);
    border-radius: 4px;
}

.gallery-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(168, 85, 247, 0.5);
}

.gallery-card {
    position: relative;
    padding: 1rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.4), rgba(120, 53, 15, 0.4));
    border: 1px solid rgba(168, 85, 247, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.3s ease-out forwards;
}

.gallery-card:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 10px 25px -5px rgba(147, 51, 234, 0.3);
}

.gallery-card-content {
    text-align: center;
}

.gallery-card-id {
    color: #fcd34d;
    font-size: 1.125rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
}

.gallery-card-image-container {
    width: 100%;
    aspect-ratio: 2/3;
    margin: 0 auto 1rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, rgba(147, 51, 234, 0.3), rgba(217, 119, 6, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(168, 85, 247, 0.2);
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

.gallery-card:hover .gallery-card-image-container {
    border-color: rgba(251, 191, 36, 0.4);
}

.gallery-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.gallery-card-image.show {
    display: block;
}

.gallery-card-placeholder {
    font-size: 2.25rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-card-placeholder {
    opacity: 0.8;
}

.gallery-card-title {
    color: #e5e7eb;
    font-size: 0.875rem;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.gallery-card-subtitle {
    color: #d8b4fe;
    font-size: 0.75rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.detail-container {
    max-width: 42rem;
    margin: 0 auto;
}

.detail-card {
    position: relative;
    backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 25px 50px -12px rgba(88, 28, 135, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 768px) {
    .detail-card {
        padding: 3rem;
    }
}

.detail-card:hover {
    transform: scale(1.02);
    border-color: rgba(168, 85, 247, 0.4);
}

.detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #d8b4fe;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 300;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(168, 85, 247, 0.5);
    transform: scale(1.05) translateX(-5px);
}

.back-button .icon {
    width: 1rem;
    height: 1rem;
}

.card-counter {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 300;
}

.detail-body {
    text-align: center;
}

.detail-image-container {
    width: 100%;
    max-width: 32rem;
    height: 34.375rem;
    margin: 0 auto 2rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.4), rgba(120, 53, 15, 0.4));
    border: 1px solid rgba(168, 85, 247, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.detail-image-container:hover .detail-image {
    transform: scale(1.05);
}

.detail-image-container:hover .zoom-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.detail-image-container:hover .zoom-icon {
    opacity: 1;
}

.detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.5s ease;
    display: none;
}

.detail-image.show {
    display: block;
}

.detail-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-image-placeholder .placeholder-gradient {
    transition: transform 0.5s ease;
}

.detail-image-placeholder .placeholder-icon {
    transition: opacity 0.5s ease;
}

.detail-image-container:hover .placeholder-gradient {
    transform: scale(1.1);
}

.detail-image-container:hover .placeholder-icon {
    opacity: 0.7;
}

.zoom-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-icon {
    width: 3rem;
    height: 3rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.extended-content {
    text-align: left;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.extended-section {
    margin-bottom: 2rem;
}

.intro-text {
    color: #fcd34d;
    font-size: 1.125rem;
    line-height: 1.75;
    font-weight: 300;
    font-style: italic;
    border-left: 4px solid rgba(245, 158, 11, 0.5);
    padding-left: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.video-container {
    text-align: center;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #ea580c;
    color: white;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.video-link:hover {
    background: #c2410c;
    box-shadow: 0 10px 25px -5px rgba(234, 88, 12, 0.5);
}

.theme-section {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fcd34d;
    margin-bottom: 1rem;
}

.section-content {
    color: #e5e7eb;
    line-height: 1.75;
}

.section-content p {
    margin-bottom: 1rem;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.collapsible-section {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 1rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
    overflow: hidden;
}

.collapsible-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    color: white;
}

.collapsible-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.chevron-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #fcd34d;
    transition: transform 0.3s ease;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.collapsible-header.open .chevron-icon {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.collapsible-content.open {
    max-height: 5000px;
}

.collapsible-body {
    padding: 0 1.5rem 1.5rem;
}

.detail-item {
    border-left: 2px solid rgba(245, 158, 11, 0.4);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-title {
    font-size: 1.125rem;
    font-weight: 400;
    color: #fde68a;
    margin-bottom: 0.5rem;
}

.detail-content {
    color: #e5e7eb;
    line-height: 1.75;
    font-size: 0.875rem;
}

.activity-item {
    border-left: 2px solid rgba(168, 85, 247, 0.4);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.activity-item:last-child {
    margin-bottom: 0;
}

.activity-title {
    font-size: 1.125rem;
    font-weight: 400;
    color: #e9d5ff;
    margin-bottom: 0.5rem;
}

.activity-content {
    color: #e5e7eb;
    line-height: 1.75;
    font-size: 0.875rem;
}

.questions-list {
    list-style: none;
}

.question-item {
    display: flex;
    gap: 0.75rem;
    color: #e5e7eb;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.question-bullet {
    color: #fbbf24;
    flex-shrink: 0;
}

.conclusion-section {
    background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.5), rgba(120, 53, 15, 0.5));
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.conclusion-content {
    color: #f3f4f6;
    line-height: 1.75;
}

.conclusion-content p {
    margin-bottom: 1rem;
}

.conclusion-content p:last-child {
    margin-bottom: 0;
}

.affirmation {
    color: #fde68a;
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(245, 158, 11, 0.4);
}

.navigation-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.nav-button {
    padding: 0.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(168, 85, 247, 0.5);
    transform: scale(1.1);
}

.nav-button:active {
    transform: scale(0.9);
}

#random-btn:hover {
    transform: scale(1.1) rotate(180deg);
}

.nav-button .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #c084fc;
}

#random-btn .icon {
    color: #fbbf24;
}

.cta-container {
    text-align: center;
}

.cta-button {
    position: relative;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #9333ea, #d97706);
    color: white;
    border-radius: 9999px;
    font-weight: 300;
    letter-spacing: 0.05em;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    box-shadow: 0 25px 50px -12px rgba(147, 51, 234, 0.5);
    transform: scale(1.05);
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #d97706, #9333ea);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-text {
    position: relative;
    z-index: 10;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .cta-text {
        font-size: 1rem;
    }
}

.cta-note {
    color: #6b7280;
    font-size: 0.75rem;
    margin-top: 1rem;
}

.footer {
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s ease-out 3s forwards;
}

.footer-content {
    max-width: 64rem;
    margin: 0 auto;
}

.footer-center {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-link {
    display: inline-block;
    transition: opacity 0.3s ease;
    margin-bottom: 1.5rem;
}

.logo-link:hover {
    opacity: 0.8;
}

.footer-logo {
    height: 6rem;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .footer-logo {
        height: 8rem;
    }
}

.author-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.portrait-link {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.portrait-link:hover {
    opacity: 0.9;
}

.portrait {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .portrait {
        width: 10rem;
        height: 10rem;
    }
}

.bio-link {
    display: inline-block;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.bio-link:hover {
    opacity: 0.8;
}

.author-bio {
    color: #e5e7eb;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .author-bio {
        font-size: 1rem;
    }
}

.author-name {
    color: #fcd34d;
    font-weight: 400;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: block;
}

.author-description {
    color: #d1d5db;
    font-size: 0.75rem;
    display: block;
}

.footer-tagline {
    margin-bottom: 1.5rem;
}

.tagline-title {
    color: #fcd34d;
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .tagline-title {
        font-size: 1.25rem;
    }
}

.tagline-text {
    color: #d1d5db;
    font-size: 0.875rem;
    font-weight: 300;
    font-style: italic;
    max-width: 32rem;
    margin: 0.5rem auto 0;
}

@media (min-width: 768px) {
    .tagline-text {
        font-size: 1rem;
    }
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #d1d5db;
    font-size: 0.875rem;
    font-weight: 300;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(168, 85, 247, 0.5);
    transform: scale(1.05);
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #c084fc;
    transition: color 0.3s ease;
}

.social-link:hover .social-icon {
    color: #d8b4fe;
}

.footer-bottom {
    text-align: center;
}

.site-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, #9333ea, #d97706);
    color: white;
    border-radius: 9999px;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    margin-bottom: 1rem;
}

.site-link:hover {
    box-shadow: 0 10px 25px -5px rgba(147, 51, 234, 0.5);
    transform: scale(1.05);
}

.copyright {
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.image-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

.image-modal.hidden {
    display: none;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

.close-modal .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: fadeIn 0.3s ease-out 0.1s both;
}

.hidden {
    display: none !important;
}

/* Floating Social Sidebar */
.social-sidebar {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.8s ease-out 2.8s forwards;
    opacity: 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    color: #d1d5db;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    color: #fcd34d;
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(251, 191, 36, 0.4);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.3);
}

.sidebar-icon {
    width: 1.5rem;
    height: 1.5rem;
}

@media (max-width: 768px) {
    .social-sidebar {
        right: 0.5rem;
        padding: 0.75rem 0.25rem;
        gap: 0.75rem;
    }

    .sidebar-link {
        width: 2.5rem;
        height: 2.5rem;
    }

    .sidebar-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}