/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11rem 8% 8rem;
    background: radial-gradient(circle at 80% 20%, #1c325c 0%, #080f1b 100%);
    color: white;
    min-height: 95vh;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 25px 60px rgba(8, 15, 27, 0.25);
}

/* Exciting Grid & Glow Background on Hero */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(174, 138, 54, 0.22) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 10s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.3) translate(-30px, 30px);
        opacity: 0.8;
    }
}

.hero-content {
    z-index: 2;
    max-width: 650px;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h2 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--club-secondary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #ffffff 30%, #ffd479 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3.5rem;
    opacity: 0.85;
    font-weight: 400;
    line-height: 1.8;
    color: #cbd5e1;
}

.cta-button {
    display: inline-block;
    position: relative;
    z-index: 2;
    padding: 1.25rem 3rem;
    background: var(--club-secondary-gradient);
    color: white;
    text-decoration: none;
    font-weight: 800;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 12px 30px rgba(174, 138, 54, 0.4);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(174, 138, 54, 0.55);
    filter: brightness(1.15);
}

.hero-image {
    z-index: 2;
    position: relative;
    animation: float 6s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 480px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.5));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(1.5deg);
    }
}

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

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

/* Responsive Design Hero */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 10rem 1.5rem 6rem;
        min-height: auto;
        border-radius: 0 0 32px 32px;
    }

    .hero-content {
        margin-bottom: 4rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-image img {
        max-width: 300px;
    }
}

/* Values Section (Freshened & Unique) */
.values-section {
    padding: 9rem 8%;
    background-color: var(--color-bg-light);
    text-align: center;
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(29, 46, 76, 0.1), transparent);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--club-primary-color);
    letter-spacing: -1px;
}

.values-section .section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 5rem;
    font-weight: 500;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.value-card {
    background: white;
    padding: 4.5rem 3rem;
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(29, 46, 76, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(29, 46, 76, 0.03);
    position: relative;
    overflow: hidden;
    text-align: left;
}

/* Custom Number Overlay in Card */
.value-card::after {
    content: attr(data-number);
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(174, 138, 54, 0.04);
    pointer-events: none;
    z-index: 0;
}

.value-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(174, 138, 54, 0.1);
    border-radius: 20px;
    color: var(--club-secondary-color);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(29, 46, 76, 0.08);
    border-color: rgba(174, 138, 54, 0.25);
}

.value-card:hover .value-card-icon {
    background: var(--club-secondary-gradient);
    color: white;
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.75rem;
    color: var(--club-primary-color);
    margin-bottom: 1.25rem;
    font-weight: 800;
    z-index: 1;
    position: relative;
}

.value-card p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--color-text-muted);
    margin: 0;
    z-index: 1;
    position: relative;
}

/* Club Song Section (Dark Mode & Lyric Card Overlay) */
.club-song-section {
    padding: 9rem 8%;
    background: radial-gradient(circle at 50% 50%, #111e38 0%, #080f1b 100%);
    text-align: center;
    color: white;
    position: relative;
}

.club-song-section .section-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.melody-badge {
    display: inline-block;
    background: rgba(174, 138, 54, 0.15);
    color: #ffd479;
    border: 1px solid rgba(174, 138, 54, 0.3);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5rem;
    box-shadow: 0 4px 15px rgba(174, 138, 54, 0.1);
}

.song-container {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.song-column {
    background: rgba(17, 26, 46, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 4.5rem 3.5rem;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex: 1;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtle gold line on top of columns */
.song-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--club-secondary-gradient);
    border-radius: 0 0 10px 10px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.song-column:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(174, 138, 54, 0.35);
    box-shadow: 0 25px 60px rgba(174, 138, 54, 0.15);
}

.song-column:hover::before {
    opacity: 1;
    left: 0;
    right: 0;
}

.song-column h4 {
    color: var(--club-secondary-color);
    margin-bottom: 2.5rem;
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.song-column p {
    font-size: 1.15rem;
    line-height: 2;
    color: #e2e8f0;
    margin-bottom: 2rem;
    font-weight: 400;
}

.song-column p.refrein {
    font-weight: 600;
    color: #ffd479;
    background: rgba(174, 138, 54, 0.08);
    border-left: 4px solid var(--club-secondary-color);
    padding: 2.25rem 2rem;
    border-radius: 20px;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .song-container {
        flex-direction: row;
        align-items: stretch;
        gap: 3.5rem;
    }
}

/* History Section */
.history-section {
    padding: 9rem 8%;
    background-color: #0d1726;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.history-story {
    max-width: 850px;
    margin: 0 auto 5rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    padding: 4.5rem;
    border-radius: 36px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.history-story h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.75rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.history-story p {
    font-size: 1.20rem;
    color: #e2e8f0;
    line-height: 1.9;
    margin: 0;
}

/* Timeline Horizontal Scroll */
.history-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 3rem;
    padding: 2rem 1.5rem 4rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--club-secondary-color) transparent;
    position: relative;
}

.history-grid::-webkit-scrollbar {
    height: 6px;
}

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

.history-grid::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.history-grid.scrolling::-webkit-scrollbar-thumb,
.history-grid:hover::-webkit-scrollbar-thumb {
    background-color: var(--club-secondary-color);
}

.timeline-card {
    flex: 0 0 320px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    scroll-snap-align: start;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 10px;
}

.timeline-card::before {
    content: '';
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.25rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transform-origin: bottom center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 2rem;
    width: 100%;
    order: 1;
}

.timeline-card:hover .timeline-content {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(174, 138, 54, 0.15);
    border-color: rgba(174, 138, 54, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.timeline-content::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 2rem;
    width: 16px;
    height: 16px;
    background: #111a2a;
    transform: rotate(45deg);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 2;
}

.timeline-card:hover .timeline-content::after {
    border-right-color: rgba(174, 138, 54, 0.35);
    border-bottom-color: rgba(174, 138, 54, 0.35);
}

.timeline-content p {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
}

.timeline-year {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--club-secondary-color);
    position: relative;
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    order: 2;
    margin-top: auto;
    padding-left: 1.5rem;
}

.timeline-year::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 2rem;
    width: 14px;
    height: 14px;
    background-color: #0d1726;
    border: 3px solid var(--club-secondary-color);
    border-radius: 50%;
    z-index: 3;
    transition: all 0.3s ease;
}

.timeline-card:hover .timeline-year::before {
    background-color: var(--club-secondary-color);
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(174, 138, 54, 0.6);
}

@media (min-width: 1024px) {
    .history-section {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 4rem;
        padding: 9rem 8%;
        max-width: 1600px;
        margin: 0 auto;
    }

    .history-story {
        flex: 0 0 35%;
        max-width: 450px;
        margin: 0;
    }

    .history-grid {
        flex: 1;
        min-width: 0;
        width: 100%;
        padding-bottom: 2rem;
    }
}

/* Atmosphere Section */
.atmosphere-section {
    padding: 9rem 8%;
    background-color: white;
    text-align: center;
}

.atmosphere-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--club-secondary-gradient);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.atmosphere-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 5rem;
}

.atmosphere-card {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(29, 46, 76, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    aspect-ratio: 4 / 3;
    cursor: pointer;
    border: 1px solid rgba(29, 46, 76, 0.03);
}

.atmosphere-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(174, 138, 54, 0.15);
    border-color: rgba(174, 138, 54, 0.2);
}

.atmosphere-card .image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.atmosphere-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.atmosphere-card:hover img {
    transform: scale(1.1);
}

@media (max-width: 1023px) {
    .atmosphere-card:nth-child(n+4) {
        display: none;
    }
}

@media (min-width: 600px) and (max-width: 1023px) {
    .atmosphere-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 15, 27, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 85vw;
    max-height: 85vh;
    animation: zoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

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

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.close-lightbox {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.2s ease;
    line-height: 1;
}

.close-lightbox:hover {
    color: var(--club-secondary-color);
    transform: scale(1.15);
}

/* Lightbox Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1010;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
}

.lightbox-nav:hover {
    background: var(--club-secondary-gradient);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 25px rgba(174, 138, 54, 0.5);
    color: white;
}

.lightbox-nav svg {
    transition: transform 0.2s ease;
}

.lightbox-nav:hover svg {
    transform: scale(1.1);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* Responsive styles for lightbox navigation */
@media (max-width: 900px) {
    .lightbox-nav {
        width: 50px;
        height: 50px;
        background: rgba(8, 15, 27, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }
}

@media (max-width: 600px) {
    .lightbox-nav {
        width: 44px;
        height: 44px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* Sponsors Section */
.sponsor-section {
    padding: 9rem 8%;
    background-color: var(--color-bg-light);
    text-align: center;
}

.sponsors-header {
    margin-bottom: 5rem;
}

.sponsors-header h3 {
    font-size: 1.15rem;
    color: var(--club-secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.sponsors-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--club-primary-color);
    letter-spacing: -0.5px;
}

/* Responsive Overrides for Mobile & Tablet */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .values-section {
        padding: 5rem 6%;
    }

    .values-section .section-subtitle {
        margin-bottom: 3rem;
        font-size: 1.05rem;
    }

    .value-card {
        padding: 3rem 2rem;
        border-radius: 24px;
    }

    .value-card::after {
        font-size: 7rem;
    }

    .club-song-section {
        padding: 5rem 6%;
    }

    .song-column {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

    .song-column h4 {
        margin-bottom: 1.5rem;
        font-size: 1.15rem;
    }

    .song-column p {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .song-column p.refrein {
        padding: 1.5rem 1.25rem;
    }

    .history-section {
        padding: 5rem 6%;
    }

    .history-story {
        padding: 2.5rem 2rem;
        border-radius: 28px;
        margin-bottom: 3rem;
    }

    .history-story h2 {
        font-size: 2.2rem;
    }

    .history-story p {
        font-size: 1.08rem;
    }

    .timeline-card {
        flex: 0 0 275px;
    }

    .timeline-content {
        padding: 1.75rem 1.5rem;
        border-radius: 20px;
    }

    .timeline-content p {
        font-size: 0.98rem;
    }

    .atmosphere-section {
        padding: 5rem 6%;
    }

    .atmosphere-grid {
        margin-top: 3rem;
        gap: 1.25rem;
    }

    .atmosphere-card {
        border-radius: 20px;
    }

    .sponsor-section {
        padding: 5rem 6%;
    }

    .sponsors-header {
        margin-bottom: 3rem;
    }

    .sponsors-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero h2 {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 1.02rem;
        margin-bottom: 2.5rem;
        line-height: 1.7;
    }

    .cta-button {
        padding: 1rem 2.2rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   Praesidium Preview Section (Homepage)
   ================================================ */
.praesidium-preview-section {
    padding: 6rem 8%;
    background: linear-gradient(160deg, #080f1b 0%, #0d1d3a 60%, #1c325c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.praesidium-preview-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.praesidium-preview-section::after {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(174, 138, 54, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

.praesidium-preview-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.praesidium-preview-header .section-title {
    color: white;
    margin-bottom: 0.75rem;
}

.praesidium-preview-header .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
}

.praesidium-preview-header .section-subtitle strong {
    color: var(--club-primary-color, #ae8a36);
}

.praesidium-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.praesidium-preview-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.praesidium-preview-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.praesidium-preview-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.praesidium-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
    display: block;
}

.praesidium-preview-card:hover .praesidium-preview-img img {
    transform: scale(1.05);
}

.praesidium-preview-info {
    padding: 1rem 0.75rem;
}

.praesidium-preview-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.3rem;
}

.praesidium-preview-role {
    font-size: 0.78rem;
    color: var(--club-primary-color, #ae8a36);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.praesidium-preview-cta {
    text-align: center;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.cta-button-outline {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: 2px solid var(--club-primary-color, #ae8a36);
    color: var(--club-primary-color, #ae8a36);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.cta-button-outline:hover {
    background: var(--club-primary-color, #ae8a36);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .praesidium-preview-section {
        padding: 4rem 5%;
    }
    .praesidium-preview-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 1rem;
    }
}