body {
background-image: url('images/app-background.webp');
font-family: Arial, sans-serif;
color: #333;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
min-height: 100vh;
margin-bottom: 70px;
margin-left: auto;
margin-right: auto;
width: 97%;
}
.buddhist-container {
width: 96%;
max-width: 900px;
background: #D8FFDB;
border: 2px solid #60FF6B;
border-radius: 12px;
box-shadow: 0 0px 3px 3px rgba(255, 255, 255, 0.7);
padding: 2%;
text-align: center;
animation: fadeIn 1s ease-in-out;
}
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        h1 {
            font-size: 2em;
            background: linear-gradient(45deg, #FF6B35, #F7931E, #FFD23F, #06D6A0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 300% 300%;
            animation: gradientShift 7s ease infinite;
            margin-bottom: 15px;
            margin-top: 0px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .intro-section {
            background: #FFF3E0;
            border: 2px solid #FFB74D;
            border-radius: 10px;
            padding: 12px;
            margin: 20px 0;
            text-align: left;
        }
        
        .intro-section h2 {
            color: #E65100;
            font-size: 1.3em;
            margin-bottom: 15px;
            margin-top: 10px;
            text-align: center;
        }
        
        .intro-section p {
            font-size: 1em;
            line-height: 1.6;
            color: #424242;
            margin-bottom: 15px;
        }
        
        .video-container {
            background: #FFFFFF;
            border: 2px solid #FF9800;
            border-radius: 10px;
            padding: 10px 12px;
            margin: 20px 0;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .video-container h2 {
            color: #E65100;
            font-size: 1.4em;
            margin-bottom: 20px;
            margin-top: 10px;
        }
        
        .video-wrapper {
            position: relative;
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
        }

        .video-wrapper video {
            width: 99%;
            height: auto;
            border-radius: 8px;
            border: 2px solid #C0C0C0;
        }
        
        .video-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin: 15px 0 5px 0;
            flex-wrap: wrap;
        }
        
        .video-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #FF0000;
            color: white;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.95em;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .video-link:hover {
            background: #CC0000;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .video-link svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }
        
        .transcript-container {
            background: #F3E5F5;
            border: 2px solid #9C27B0;
            border-radius: 10px;
            padding: 10px;
            margin: 20px 0;
            text-align: left;
        }
        
        .transcript-container h2 {
            color: #6A1B9A;
            font-size: 1.3em;
            margin-bottom: 20px;
             margin-top: 10px;
            text-align: center;
        }
        
        .transcript-section {
            background: #FAFAFA;
            padding: 12px 12px;
            margin: 20px 0;
            border-radius: 8px;
        }
        
        .transcript-section h3 {
            color: #4A148C;
            font-size: 1.2em;
            margin-bottom: 10px;
            margin-top: 10px;
            display: flex;
            align-items: center;
        }
        
        .transcript-section h3::before {
            content: "🧘";
            margin-right: 8px;
            font-size: 1.1em;
        }
        
        .transcript-section p {
            font-size: 1em;
            line-height: 1.7;
            color: #424242;
            margin-bottom: 15px;
            text-align: justify;
        }
        
        .highlight-quote {
            background: #E8F5E8;
            border-left: 3px solid #4CAF50;
            padding: 12px;
            margin: 20px 0;
            font-style: italic;
            font-size: 1.05em;
            color: #2E7D32;
            border-radius: 0 8px 8px 0;
        }
        
        .key-concepts {
            background: #E3F2FD;
            border: 2px solid #2196F3;
            border-radius: 10px;
            padding: 12px;
            margin-bottom: 14px;
        }
        
        .key-concepts h3 {
            color: #0D47A1;
            font-size: 1.3em;
            margin-bottom: 15px;
             margin-top: 10px;
            text-align: center;
        }
        
        .concept-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }
        
        .concept-card {
            background: #FFFFFF;
            border: 1px solid #64B5F6;
            border-radius: 8px;
            padding: 12px;
            text-align: left;
        }
        
        .concept-card h4 {
            color: #1565C0;
            font-size: 1.1em;
            margin-top: 4px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .concept-card h4::before {
            content: "🌟";
            margin-right: 8px;
        }
        
        .concept-card p {
            font-size: 0.95em;
            color: #424242;
            margin: 0;
        }
        
        .practical-tips {
            background: #E8F5E8;
            border: 2px solid #4CAF50;
            border-radius: 10px;
            padding: 10px;
            margin: 20px 0;
        }
        
        .practical-tips h3 {
            color: #2E7D32;
            font-size: 1.3em;
            margin-bottom: 15px;
            margin-top: 10px;
            text-align: center;
        }
        
        .tips-list {
            text-align: left;
        }
        
        .tip-item {
            background: #FFFFFF;
            border-left: 3px solid #4CAF50;
            padding: 1px 10px 1px 10px;
            margin: 12px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .tip-item h4 {
            color: #388E3C;
            font-size: 1.1em;
            margin-bottom: 5px;
            margin-top: 15px;
        }
        
        .tip-item p {
            font-size: 1em;
            color: #424242;
        }
        
        .toggle-button {
            background: #0076FF;
            color: #fff;
            border: none;
            border-radius: 5px;
            padding: 10px 20px;
            font-size: 1.1em;
            cursor: pointer;
            transition: background 0.3s ease;
            margin: 10px 5px;
        }
        
        .toggle-button:hover {
            background: #5838E0;
        }
        
        .expandable-content {
            display: none;
            margin-top: 15px;
        }
        
        .show {
            display: block;
        }
        
        @media (max-width: 768px) {
            .container {
                width: 91%;
                padding: 12px;
            }
            
            h1 {
                font-size: 2em;
            }
            
            .concept-grid {
                grid-template-columns: 1fr;
            }
            
            .video-links {
                flex-direction: column;
                gap: 10px;
            }
        }
        
.top-menu-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 4px;
    position: relative;
}
.language-menu-wrapper {
    margin-right: auto;
    padding-left: 3%;
}
.mobile-menu {
    order: 2;
    margin-left: auto;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1000;
    padding-right: 1%;
    padding-bottom: 3px;
}
.gtranslate_wrapper {
    background-color: #FFFFFF;
    padding: 6px 6px;
    border: 1px solid #ADADAD;
    border-radius: 5px;
    box-shadow: 0 0px 2px 2px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
}
    .menu-icon {
    font-size: 2.4em;
    cursor: pointer;
    color: #FFFFFF;
    }
.menu-items {
    list-style: none;
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 48px;
    padding-left: 0;
    padding-right: 0;
    width: 95%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1001;
    max-height: 80vh;
    overflow-y: auto;
}
.menu-items.show {
    display: flex;
}
    .menu-items li {
        padding: 15px;
        text-align: center;
        border-bottom: 1px dashed #8C8C8C;
    }
    .menu-items li a {
        color: white;
        text-decoration: none;
        font-size: 1.3em;
    }
    .close-menu {
        text-align: center;
        padding: 10px;
        background: red;
        color: white;
        cursor: pointer;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.video-wrapper video {
    width: 99%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #C0C0C0;
}

/* Cookie Consent Banner */
#cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c1810, #4a2c1a);
    color: #f4f1eb;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    font-family: 'Georgia', serif;
    border-top: 3px solid #d4af37;
    transition: opacity 0.3s ease;
}

#cookie-consent-banner > div {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

#cookie-consent-banner > div > div:first-child {
    flex: 1;
    min-width: 300px;
}

#cookie-consent-banner h3 {
    margin: 0 0 8px 0;
    color: #d4af37;
    font-size: 18px;
    font-weight: bold;
}

#cookie-consent-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #e8e1d6;
}

#cookie-consent-banner .button-container {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

#cookie-consent-banner button {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

#cookie-consent-banner button.necessary-only {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
}

#cookie-consent-banner button.necessary-only:hover {
    background: #d4af37;
    color: #2c1810;
}

#cookie-consent-banner button.accept-all {
    background: #d4af37;
    border: 2px solid #d4af37;
    color: #2c1810;
}

#cookie-consent-banner button.accept-all:hover {
    background: #e6c757;
    border-color: #e6c757;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    #cookie-consent-banner > div {
        flex-direction: column;
        text-align: center;
    }
    
    #cookie-consent-banner h3 {
        font-size: 16px;
    }
    
    #cookie-consent-banner p {
        font-size: 13px;
    }
    
    #cookie-consent-banner button {
        font-size: 13px;
        padding: 8px 16px;
    }
}