:root {
    --primary-color: #f8fafc;
    --text-color: #e2e8f0;
    --glass-bg: rgba(8, 15, 30, 0.72);
    --glass-border: rgba(255, 255, 255, 0.16);
    --glass-shadow: 0 12px 40px rgba(34, 211, 238, 0.16);
    --accent: #22d3ee;
    --accent-2: #8b5cf6;
    --accent-3: #fb7185;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #030712 0%, #0f172a 45%, #1e1b4b 100%);
    color: var(--primary-color);
    overflow-x: hidden;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Smooth, Modern Animated Gradient Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(135deg, #030712, #111827, #312e81, #7c3aed);
    background-size: 300% 300%;
    animation: gradientBG 12s ease infinite;
    opacity: 0.95;
}

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

/* Header Container */
.main-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 8vh;
    margin-bottom: 2rem;
}

/* Huge Title */
.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    background: linear-gradient(135deg, var(--accent) 0%, #ffffff 35%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 25px rgba(34, 211, 238, 0.22);
    margin-bottom: 3rem;
    animation: slideDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Glassmorphism Menu Bar */
.glass-menu {
    background: rgba(8, 15, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: 999px;
    padding: 0.8rem 1.25rem;
    box-shadow: 0 10px 35px rgba(34, 211, 238, 0.18);
    position: sticky;
    top: 20px;
    z-index: 100;
    transition: all 0.4s ease;
    width: fit-content;
    max-width: 94%;
}

.glass-menu:hover {
    background: rgba(14, 24, 46, 0.95);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.28);
    transform: translateY(-2px);
}

.glass-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.glass-menu li a {
    text-decoration: none;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    position: relative;
    padding: 0.45rem 0.7rem;
    display: inline-block;
    border-radius: 999px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.glass-menu li a:hover {
    background: rgba(34, 211, 238, 0.14);
    color: var(--accent);
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.45);
}

/* Smooth underline transition on hover */
.glass-menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #cbd5e1;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-menu li a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.45);
}

.glass-menu li a:hover::after {
    width: 100%;
}

/* Sample Content Area styling */
.content {
    margin: 2rem auto 4rem auto;
    padding: 4rem;
    max-width: 1000px;
    background: rgba(8, 15, 30, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    box-shadow: 0 16px 50px rgba(7, 12, 24, 0.35);
    text-align: center;
    animation: fadeIn 1.5s ease-out forwards;
}

.content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #ffffff 0%, var(--accent) 50%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.content h3 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #f8fafc;
    text-shadow: 0 0 12px rgba(34, 211, 238, 0.16);
}

.content-section {
    margin-top: 2rem;
    padding: 1.5rem 1.75rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-align: left;
}

.content-section h3 {
    margin: 0 0 1rem;
    font-size: 1.8rem;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.9rem;
}

.section-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin-top: 1rem;
}

.section-list li {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #f8fafc;
}

.contact-card {
    margin-top: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.blog-post {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.blog-post__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.blog-post__text {
    flex: 1;
}

.blog-post__image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.blog-post:hover {
    transform: translateY(-3px);
    background: rgba(34, 211, 238, 0.12);
    border-color: rgba(34, 211, 238, 0.35);
}

.blog-post h4 {
    margin-bottom: 0.35rem;
    color: #ffffff;
}

.blog-post__meta {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.disclaimer-box {
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.disclaimer-box h4 {
    margin-bottom: 0.6rem;
    color: #fbbf24;
}

.news-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 0 2rem;
}

.news-section__header {
    margin-bottom: 0.25rem;
}

.latest-news {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(251, 113, 133, 0.18), rgba(34, 211, 238, 0.14));
    border: 1px solid rgba(251, 113, 133, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.latest-news:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(34, 211, 238, 0.16);
    border-color: rgba(34, 211, 238, 0.45);
}

.latest-news--older {
    opacity: 0.9;
}

.latest-news__content {
    flex: 1;
}

.latest-news__label {
    display: inline-block;
    width: fit-content;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(248, 113, 133, 0.2);
    color: #fecdd3;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.latest-news__meta {
    margin: 0.6rem 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #cbd5e1;
    letter-spacing: 0.04em;
}

.latest-news h4 {
    margin: 0.55rem 0 0.45rem;
    font-size: 1.15rem;
    color: #ffffff;
}

.latest-news p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #fef2f2;
}

.latest-news__image {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .latest-news {
        flex-direction: column;
        align-items: flex-start;
    }

    .latest-news__image {
        width: 100%;
        height: 160px;
    }

    .blog-post__body {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-post__image {
        width: 100%;
        height: 160px;
    }
}

.acquaintances-section {
    padding: 3rem 2rem;
    margin-top: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.acquaintances-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.2rem;
}

.acquaintances-section .image-container {
    margin-top: 3.5rem;
    margin-bottom: 2.5rem;
}

.acquaintances-section .featured-image {
    margin-top: 0.5rem;
}

.dylan-paragraph {
    margin-top: 2rem;
}

.reviews-section {
    margin-top: 3rem;
    padding: 1.2rem 0 0.2rem;
}

.reviews-section h3 {
    margin-bottom: 1.5rem;
}

.reviews-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.6rem 0.25rem 1rem;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    white-space: nowrap;
}

.reviews-carousel::-webkit-scrollbar {
    height: 8px;
}

.reviews-carousel::-webkit-scrollbar-thumb {
    background: rgba(34, 211, 238, 0.35);
    border-radius: 999px;
}

.review-card {
    min-width: 280px;
    max-width: 280px;
    min-height: 180px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(139, 92, 246, 0.14));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    white-space: normal;
}

.review-card span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.6rem;
}

.highlight-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .glass-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    
    .glass-menu {
        border-radius: 20px;
        padding: 1.5rem;
    }
}

/* Image Container and Styling */
.image-container {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.video-link-card {
    margin: 1.5rem 0 2.5rem;
    padding: 1.25rem 1.4rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(139, 92, 246, 0.16));
    border: 1px solid rgba(34, 211, 238, 0.28);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.video-link-card__label {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #67e8f9;
}

.video-embed-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(2, 6, 23, 0.7);
}

.video-embed-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.image-caption {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
    font-style: normal;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.18);
}

.disclaimer-box {
    margin: 1.75rem auto 2.5rem;
    padding: 1.2rem 1.4rem;
    border: 2px solid rgba(34, 211, 238, 0.4);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(139, 92, 246, 0.12));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    max-width: 760px;
}

.disclaimer-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.45rem;
    color: #f8fafc;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.disclaimer-box p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: #f8fafc;
}

.featured-image {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(34, 211, 238, 0.24);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    cursor: zoom-in;
}

.featured-image:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 30px 60px rgba(34, 211, 238, 0.2);
    cursor: pointer;
}

.image-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
    cursor: zoom-out;
}

.image-overlay.open {
    display: flex;
}

.image-overlay img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.blog-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 2rem;
}

.blog-overlay.open {
    display: flex;
}

.blog-overlay__content {
    width: min(700px, 100%);
    max-height: 80vh;
    overflow-y: auto;
    background: rgba(8, 15, 30, 0.95);
    border: 1px solid rgba(34, 211, 238, 0.25);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.blog-overlay__close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
}

.blog-overlay__content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.blog-overlay__content p {
    font-size: 1rem;
    line-height: 1.8;
    white-space: pre-wrap;
}
