@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Quicksand:wght@400;500;600;700&display=swap');

/* --- CUSTOM DESIGN SYSTEM VARIABLES --- */
:root {
    --bg-gradient: linear-gradient(135deg, #FAF7F2 0%, #F3ECE6 100%);
    --card-bg: #ffffff;
    --primary-color: #C25034;
    /* Soft warm terracotta */
    --primary-hover: #A03C24;
    --secondary-color: #E29C35;
    /* Soft warm amber */
    --secondary-hover: #C58428;
    --text-main: #3C302B;
    /* Dark chocolate/charcoal */
    --text-muted: #72625D;
    --text-light: #A39691;
    --accent-green: #7AA248;
    /* Premium herbal green */
    --accent-blue: #5C8FB3;
    /* Soft premium sky blue */
    --accent-red: #D64545;
    /* YouTube branded red */
    --accent-zoom: #2D8CFF;
    /* Zoom branded blue */

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 4px 10px rgba(93, 64, 55, 0.04);
    --shadow-md: 0 10px 25px rgba(93, 64, 55, 0.08);
    --shadow-lg: 0 20px 45px rgba(93, 64, 55, 0.12);
    --shadow-glow: 0 8px 24px rgba(194, 80, 52, 0.35);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    padding: 40px 20px;
}

/* Page Container wrapper */
.container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* --- LOGO ROTATE ACCENT --- */
.logo-container {
    position: relative;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

@keyframes rotateRing {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-full);
    border: 4px solid var(--card-bg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

/* --- NEW GLASSMORPHIC HEADER --- */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 30px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

/* Subtle gold reflection line */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-green));
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.header-text h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- VISIT YOUTUBE CTA --- */
.cta-button {
    background: linear-gradient(135deg, var(--accent-red) 0%, #BD1E1E 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(214, 69, 69, 0.3);
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.cta-button i {
    font-size: 1.3rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(214, 69, 69, 0.45);
    background: linear-gradient(135deg, #E62A2A 0%, #A31212 100%);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* --- MAIN CONTAINER CONTENT --- */
main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

section {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 50px 48px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* --- INTRO SECTION --- */
.intro {
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
}

.intro-text-block {
    max-width: 850px;
}

.intro h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.conclusion {
    font-size: 1.25rem;
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.6;
}

/* --- PILLARS GRID REDESIGN --- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 15px 0;
}

.pillar-card {
    background: #FAF8F5;
    border-radius: var(--radius-md);
    padding: 24px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.pillar-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--accent-green);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    transition: width var(--transition-fast);
}

/* Customized left border colors per pillar */
.pillar-card.pillar-shlokas::after {
    background: var(--secondary-color);
}

.pillar-card.pillar-devotion::after {
    background: var(--primary-color);
}

.pillar-card.pillar-service::after {
    background: var(--accent-green);
}

.pillar-card.pillar-peace::after {
    background: var(--accent-blue);
}

.pillar-card.pillar-charity::after {
    background: var(--accent-green);
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: #FFFFFF;
}

.pillar-card:hover::after {
    width: 8px;
}

.pillar-icon-box {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.pillar-shlokas .pillar-icon-box {
    background: #FFF6E5;
    color: var(--secondary-color);
}

.pillar-devotion .pillar-icon-box {
    background: #FFF0ED;
    color: var(--primary-color);
}

.pillar-service .pillar-icon-box {
    background: #F0F7E6;
    color: var(--accent-green);
}

.pillar-peace .pillar-icon-box {
    background: #EEF5FA;
    color: var(--accent-blue);
}

.pillar-charity .pillar-icon-box {
    background: #F0F7E6;
    color: var(--accent-green);
}

.pillar-content-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pillar-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
}

.pillar-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- EMAIL INQUIRY CARD --- */
.contact-row {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.contact-card {
    background: #EDF4F9;
    border: 1.5px dashed rgba(92, 143, 179, 0.4);
    padding: 24px 40px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    transition: all var(--transition-normal);
}

.contact-card:hover {
    transform: scale(1.02);
    border-color: var(--accent-blue);
    background: #EAF4FA;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--accent-blue);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(92, 143, 179, 0.1);
}

.contact-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.email-link {
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: color var(--transition-fast);
}

.email-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-blue);
    transform-origin: bottom right;
    transition: transform var(--transition-normal);
}

.email-link:hover {
    color: #437190;
}

.email-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* --- INTRO CONTENT SPACING & OUTRO --- */
.intro-text-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.intro-welcome {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-main);
    font-weight: 500;
}

.intro-aim {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.intro-outro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    max-width: 850px;
    margin: 40px auto 20px;
    padding: 24px;
    background: #FFFDF9;
    border-radius: var(--radius-md);
    border: 1px solid rgba(194, 80, 52, 0.1);
    box-shadow: var(--shadow-sm);
}

/* --- INTERACTIVE LIVE SCHEDULE SECTION --- */
.live-schedule {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.live-schedule h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 4px;
}

.schedule-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.schedule-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.schedule-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    background: #FFFFFF;
}

.schedule-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

/* =========================================
   1. SUNDAY CLASS - ZOOM BLUE THEME
========================================= */

.sunday-class .schedule-accent-bar {
    background: linear-gradient(90deg, #2D8CFF, #85BFFF);
}

.sunday-class .schedule-badge {
    color: #2D8CFF;
    background: rgba(45, 140, 255, 0.08);
}

.sunday-class .schedule-icon-header {
    background: #EAF3FF;
    color: #2D8CFF;
}

.sunday-class .schedule-time {
    border-left: 4px solid #2D8CFF;
}

.sunday-class .schedule-time i {
    color: #2D8CFF;
}

.sunday-class .schedule-btn-link {
    background: linear-gradient(135deg, #2D8CFF 0%, #0b5cce 100%);
    box-shadow: 0 4px 15px rgba(45, 140, 255, 0.2);
}

.sunday-class .schedule-btn-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 140, 255, 0.4);
    background: linear-gradient(135deg, #4da1ff 0%, #0947a1 100%);
}

/* =========================================
   2. GAYATRI SADHANA - YOUTUBE RED THEME 
========================================= */

.gayatri-sadhana .schedule-accent-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.schedule-badge {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    align-self: flex-start;
    letter-spacing: 0.5px;
}

.gayatri-sadhana .schedule-badge {
    color: var(--primary-color);
    background: rgba(194, 80, 52, 0.08);
    /* Light red background */
}

.schedule-icon-header {
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    margin-bottom: 4px;
}

.gayatri-sadhana .schedule-icon-header {
    background: #FFF0ED;
    color: var(--primary-color);
}

.schedule-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-main);
}

.schedule-time {
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 600;
    background: #FAF8F5;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    line-height: 1.7;
}

.gayatri-sadhana .schedule-time {
    border-left: 4px solid var(--primary-color);
}

.schedule-time i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.gayatri-sadhana .schedule-time i {
    color: var(--primary-color);
}

.schedule-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.schedule-btn-link {
    text-decoration: none;
    text-align: center;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-weight: 600;
    transition: all var(--transition-normal);
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.gayatri-sadhana .schedule-btn-link {
    background: linear-gradient(135deg, var(--primary-color) 0%, #A03C24 100%);
    box-shadow: 0 4px 15px rgba(194, 80, 52, 0.2);
}

.gayatri-sadhana .schedule-btn-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 80, 52, 0.35);
    background: linear-gradient(135deg, #DF5332 0%, #87311B 100%);
}

/* --- FEATURED VIDEOS GRID REDESIGN --- */
.featured-videos h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

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

.video-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Container to enforce exact 16:9 aspect ratio */
.video-thumbnail-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
    overflow: hidden;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.video-card:hover .video-thumbnail {
    transform: scale(1.08);
}

/* Dark overlay and glass play screen */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 30, 26, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-normal);
}

.video-card:hover .video-overlay {
    background: rgba(43, 30, 26, 0.45);
}

.play-btn-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-normal);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transform: scale(0.9);
    opacity: 0.95;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Shift play triangle slightly right to center it visually */
.play-btn-circle i {
    transform: translateX(2px);
}

.video-card:hover .play-btn-circle {
    transform: scale(1.1);
    background: #FFFFFF;
    color: var(--accent-red);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8), 0 0 10px var(--accent-red);
}

.video-info {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.video-info h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 48px;
    /* Restrict height to align buttons */
}

.watch-on-yt-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    transition: color var(--transition-fast);
    margin-top: auto;
}

.video-card:hover .watch-on-yt-link {
    color: var(--primary-hover);
}

.watch-on-yt-link i {
    font-size: 0.9rem;
    transition: transform var(--transition-fast);
}

.video-card:hover .watch-on-yt-link i {
    transform: translateX(4px);
}

/* --- FOOTER & SOCIAL JOURNEY --- */
footer {
    background: var(--text-main);
    color: #FAF6F0;
    padding: 50px 30px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

footer h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.social-btn {
    text-decoration: none;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: #FAF6F0;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-btn i {
    font-size: 1.25rem;
}

/* Custom brand actions on hover */
.social-btn.yt:hover {
    background: var(--accent-red);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(214, 69, 69, 0.4);
}

.social-btn.x:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border-color: #333333;
}

.social-btn.ig:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4);
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-block;
    padding-top: 25px;
    width: calc(100% - 40px);
    max-width: 600px;
}

/* --- LIGHTBOX MODAL OVERLAY --- */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 17, 15, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
    padding: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    width: 100%;
    max-width: 900px;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal.active .modal-content {
    transform: scale(1);
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.modal-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 2.2rem;
    cursor: pointer;
    transition: color var(--transition-fast), transform var(--transition-fast);
    outline: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    body {
        padding: 20px 10px;
    }

    header {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
        gap: 24px;
    }

    .header-left {
        flex-direction: column;
        gap: 20px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    section {
        padding: 35px 24px;
    }

    .header-text h1 {
        font-size: 2.3rem;
    }

    .tagline {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        padding: 25px 20px;
    }

    .email-link {
        font-size: 1.15rem;
    }

    .modal-close-btn {
        top: 15px;
        right: 15px;
        background: rgba(0, 0, 0, 0.6);
        border-radius: var(--radius-full);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
}