:root {
    --velvet-burgundy: #421218;
    --soft-ivory: #f7f5ec;
    --black-cherry: #240d10;
    --charcoal-black: #050505;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    --accent-gold: rgba(212, 175, 55, 0.8);
}

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

body {
    font-family: 'Cairo', 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--black-cherry) 0%, var(--velvet-burgundy) 50%, var(--charcoal-black) 100%);
    min-height: 100vh;
    color: var(--soft-ivory);
    overflow-x: hidden;
    position: relative;
}

.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Elegant gold accent glow */
        radial-gradient(ellipse at 30% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 100%, rgba(212, 175, 55, 0.06) 0%, transparent 35%),
        /* Soft light beams */
        conic-gradient(from 180deg at 50% 120%, transparent 0deg, rgba(247, 245, 236, 0.03) 60deg, transparent 120deg),
        /* Deep burgundy radials */
        radial-gradient(ellipse at 15% 20%, rgba(80, 25, 35, 0.7) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 75%, rgba(60, 20, 28, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(66, 18, 24, 0.4) 0%, transparent 60%),
        /* Rich base gradient */
        linear-gradient(160deg, 
            rgba(36, 13, 16, 1) 0%, 
            rgba(66, 18, 24, 0.95) 30%, 
            rgba(50, 15, 20, 1) 60%, 
            rgba(20, 8, 10, 1) 100%);
    z-index: -2;
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    right: 30%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(-10px, 10px) rotate(-5deg); }
    75% { transform: translate(15px, 15px) rotate(3deg); }
}

.nav-glass {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(36, 13, 16, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 2rem;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--soft-ivory);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.slide-counter {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    opacity: 0.8;
}

.presentation-container {
    padding: 75px 5% 50px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
}

@media (min-width: 1600px) {
    .presentation-container {
        padding: 75px 8% 50px;
    }
}

@media (min-width: 1920px) {
    .presentation-container {
        max-width: 1400px;
        padding: 75px 10% 50px;
    }
}

.slide {
    display: none;
    opacity: 0;
    transform: scale(0.92) translateY(30px);
    transition: none;
}

.slide.active {
    display: block;
    animation: cinematicEnter 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide.exit-left {
    display: block;
    animation: cinematicExitLeft 0.6s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}

.slide.exit-right {
    display: block;
    animation: cinematicExitRight 0.6s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}

@keyframes cinematicEnter {
    0% { 
        opacity: 0; 
        transform: scale(0.85) translateY(60px);
        filter: blur(10px);
    }
    40% {
        opacity: 0.6;
        filter: blur(3px);
    }
    100% { 
        opacity: 1; 
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

@keyframes cinematicExitLeft {
    0% { 
        opacity: 1; 
        transform: scale(1) translateX(0);
        filter: blur(0);
    }
    100% { 
        opacity: 0; 
        transform: scale(0.9) translateX(-100px);
        filter: blur(8px);
    }
}

@keyframes cinematicExitRight {
    0% { 
        opacity: 1; 
        transform: scale(1) translateX(0);
        filter: blur(0);
    }
    100% { 
        opacity: 0; 
        transform: scale(0.9) translateX(100px);
        filter: blur(8px);
    }
}

.slide.active .glass-card {
    animation: cardReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    opacity: 0;
}

@keyframes cardReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.slide.active .slide-header {
    animation: headerSlide 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

@keyframes headerSlide {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide.active .slide-content {
    animation: contentFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
}

@keyframes contentFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    /* 16:9 aspect ratio for desktop */
    width: 100%;
    max-width: 1280px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    overflow-y: auto;
}

@media (max-width: 1024px) {
    .glass-card {
        aspect-ratio: unset;
        min-height: calc(100vh - 160px);
        max-width: 100%;
    }
}

.glass-card-hero {
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(66, 18, 24, 0.3), rgba(255, 255, 255, 0.05));
}

.glass-inner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.glass-inner:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-content .badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--velvet-burgundy), rgba(66, 18, 24, 0.8));
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--soft-ivory), rgba(247, 245, 236, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.hero-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--soft-ivory), transparent);
    margin: 0.8rem auto;
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.8;
    opacity: 0.8;
}

.slide-header {
    margin-bottom: 1rem;
    text-align: center;
}

.slide-number {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.5;
    display: block;
    margin-bottom: 0.5rem;
}

.slide-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.slide-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    opacity: 0.6;
    letter-spacing: 2px;
}

.slide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(66, 18, 24, 0.4), rgba(255, 255, 255, 0.05));
    padding: 2rem;
    border-radius: 16px;
    border-right: 4px solid var(--velvet-burgundy);
    font-size: 1.1rem;
    line-height: 1.8;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.principle-card {
    text-align: center;
    padding: 2rem;
}

.principle-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.principle-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.principle-card p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 0.5rem;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.org-connector {
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.6), rgba(212, 175, 55, 0.3));
}

.org-top .team-member {
    border: 2px solid rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 255, 255, 0.05));
}

.org-middle .team-member {
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.org-bottom {
    position: relative;
}

.org-bottom::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.team-member {
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.member-avatar {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.member-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--soft-ivory);
    letter-spacing: 1px;
}

.team-member h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    color: var(--soft-ivory);
}

.member-role {
    display: block;
    font-size: 0.8rem;
    color: rgba(212, 175, 55, 0.9);
    margin-bottom: 0.2rem;
}

.team-member small {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    opacity: 0.6;
}

.team-company {
    margin-top: 1rem;
    text-align: center;
    padding: 1rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.05));
}

.team-company h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.powered-by {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    display: block;
    margin-bottom: 0.3rem;
}

.strike-logo {
    max-height: 50px;
    margin-bottom: 0.5rem;
    filter: brightness(1.1);
}

.team-company p {
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .org-level {
        gap: 0.8rem;
    }
    
    .org-connector {
        height: 15px;
    }
    
    .team-member {
        padding: 0.6rem;
    }
    
    .member-avatar {
        font-size: 1.3rem;
    }
    
    .team-member h4 {
        font-size: 0.75rem;
    }
    
    .member-role {
        font-size: 0.65rem;
    }
    
    .team-member small {
        font-size: 0.55rem;
    }
    
    .team-company {
        padding: 0.8rem;
    }
    
    .team-company h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .org-level {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .org-bottom {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .team-member {
        padding: 0.5rem;
    }
    
    .member-avatar {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .team-member h4 {
        font-size: 0.7rem;
    }
    
    .member-role {
        font-size: 0.6rem;
    }
    
    .team-member small {
        display: none;
    }
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.project-logo-card {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.5) translateY(30px);
}

.slide.active .project-logo-card {
    animation: logoReveal 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide.active .project-logo-card:nth-child(1) { animation-delay: 0.4s; }
.slide.active .project-logo-card:nth-child(2) { animation-delay: 0.6s; }
.slide.active .project-logo-card:nth-child(3) { animation-delay: 0.8s; }
.slide.active .project-logo-card:nth-child(4) { animation-delay: 1.0s; }
.slide.active .project-logo-card:nth-child(5) { animation-delay: 1.2s; }
.slide.active .project-logo-card:nth-child(6) { animation-delay: 1.4s; }
.slide.active .project-logo-card:nth-child(7) { animation-delay: 1.6s; }
.slide.active .project-logo-card:nth-child(8) { animation-delay: 1.8s; }
.slide.active .project-logo-card:nth-child(9) { animation-delay: 2.0s; }
.slide.active .project-logo-card:nth-child(10) { animation-delay: 2.2s; }

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(25px);
        filter: blur(8px);
    }
    60% {
        opacity: 0.8;
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

.project-logo-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.12);
}

.project-type-badge {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.32rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: transparent;
    border: none;
    color: #fff;
}

.project-type-badge.residential {
    color: #fff;
}

.project-type-badge.commercial {
    color: #fff;
}

.project-location {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    color: rgba(247, 245, 236, 0.7);
    white-space: nowrap;
}

.project-logo-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(1.1);
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .project-logo-card {
        min-height: 90px;
        padding: 1rem;
    }
    
    .project-logo-card img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .project-logo-card {
        min-height: 70px;
        padding: 0.8rem;
    }
    
    .project-logo-card img {
        max-height: 45px;
    }
}

.principles-detailed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.principle-card-detailed {
    padding: 1.5rem;
}

.principle-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.principle-header .principle-icon {
    font-size: 2rem;
    margin-bottom: 0;
}

.principle-titles {
    display: flex;
    flex-direction: column;
}

.principle-titles h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin: 0;
}

.principle-titles span {
    font-size: 0.85rem;
    opacity: 0.7;
}

.principle-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
    padding-right: 3.5rem;
}

@media (max-width: 768px) {
    .principle-desc {
        padding-right: 0;
    }
}

.objectives-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.objective-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 1.5rem;
}

.objective-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.4;
    min-width: 50px;
}

.objective-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.strategic-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.strategic-question span {
    font-size: 1.5rem;
}

.strategic-question p {
    font-style: italic;
    opacity: 0.9;
}

.ops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.ops-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.ops-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ops-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.ops-card p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.5rem;
    align-items: start;
    position: relative;
}

.timeline-month {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--soft-ivory);
    padding-top: 0.5rem;
}

.timeline-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #c9a227, #d4af37);
    color: var(--charcoal-black);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.timeline-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.timeline-content li {
    font-size: 0.9rem;
    opacity: 0.8;
    padding-right: 1rem;
    position: relative;
}

.timeline-content li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: var(--velvet-burgundy);
}

.highlight-ramadan {
    border: 1px solid rgba(201, 162, 39, 0.3);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(255, 255, 255, 0.05));
}

.timeline-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.2rem 1.5rem;
}

.timeline-row.highlight {
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.month-range {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    min-width: 140px;
}

.events {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.event-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.event-tag.special {
    background: linear-gradient(135deg, var(--velvet-burgundy), rgba(66, 18, 24, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.platforms h4, .frequency h4, .content-types h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.platform-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.platform {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.freq-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.freq-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--soft-ivory);
    min-width: 50px;
}

.content-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.content-tags span {
    background: linear-gradient(135deg, var(--velvet-burgundy), rgba(66, 18, 24, 0.6));
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.dual-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.content-card {
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header .icon {
    font-size: 2rem;
}

.card-header h3 {
    font-size: 1.2rem;
}

.card-header.ramadan {
    border-bottom-color: rgba(201, 162, 39, 0.3);
}

.card-body .philosophy {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.card-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-body li {
    font-size: 0.9rem;
    opacity: 0.8;
    padding-right: 1.2rem;
    position: relative;
}

.card-body li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: rgba(212, 175, 55, 0.8);
}

.vr-vision {
    text-align: center;
    padding: 2rem;
}

.vr-vision h3 {
    font-size: 1rem;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.vr-vision p {
    font-size: 1.2rem;
}

.vr-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.vr-item {
    text-align: center;
    padding: 1.5rem;
}

.vr-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.8rem;
}

.vr-item h4 {
    font-size: 0.9rem;
}

.vr-results {
    margin-top: auto;
}

.vr-results h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.result-tags span {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.budget-philosophy {
    text-align: center;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-style: italic;
}

.budget-table {
    padding: 0;
    overflow: hidden;
}

.budget-row {
    display: grid;
    grid-template-columns: 1fr 150px;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.budget-row.header {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.7;
}

.budget-row.total {
    background: linear-gradient(135deg, var(--velvet-burgundy), rgba(66, 18, 24, 0.6));
    font-weight: 700;
    font-size: 1.1rem;
}

.budget-row span:last-child {
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

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

.kpi-card {
    text-align: center;
    padding: 1.5rem;
}

.kpi-arrow {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.kpi-arrow.down {
    color: #4ade80;
}

.kpi-arrow.up {
    color: #60a5fa;
}

.kpi-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.kpi-target {
    font-size: 0.8rem;
    opacity: 0.7;
}

.governance {
    margin-top: 1rem;
}

.governance h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.governance ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.governance li {
    font-size: 0.9rem;
    opacity: 0.8;
    padding-right: 1.5rem;
    position: relative;
}

.governance li::before {
    content: "→";
    position: absolute;
    right: 0;
}

.golden-rule {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 255, 255, 0.05));
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.golden-rule span {
    font-size: 1.5rem;
}

.golden-rule p {
    font-weight: 600;
}

/* Detailed Slides Styles */
.ops-detailed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ops-item {
    padding: 1.2rem;
}

.ops-item .ops-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.ops-item .ops-header .ops-icon {
    font-size: 1.5rem;
}

.ops-item .ops-header h4 {
    font-size: 1.1rem;
    margin: 0;
}

.ops-item > p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.ops-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ops-tags span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Timeline Detailed */
.timeline-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
}

.timeline-month-card {
    padding: 1.5rem;
    position: relative;
}

.timeline-month-card.ramadan-card {
    border: 1px solid rgba(201, 162, 39, 0.3);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(255, 255, 255, 0.05));
}

.ramadan-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #c9a227, #d4af37);
    color: var(--charcoal-black);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.month-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.month-name {
    font-size: 1.3rem;
    font-weight: 700;
}

.month-en {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    opacity: 0.5;
}

.month-project h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.project-location {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 1rem;
}

.month-activities {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.activity {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
}

.activity-icon {
    font-size: 1rem;
}

/* H2 Grid */
.h2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.h2-card {
    padding: 1.2rem;
}

.h2-card.featured {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(66, 18, 24, 0.3), rgba(255, 255, 255, 0.05));
}

.h2-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.h2-months {
    font-weight: 700;
    font-size: 1.1rem;
}

.h2-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
}

.h2-badge.summer {
    background: linear-gradient(135deg, rgba(255, 200, 100, 0.3), rgba(255, 150, 50, 0.2));
}

.h2-badge.cityscape {
    background: linear-gradient(135deg, rgba(100, 150, 255, 0.3), rgba(50, 100, 200, 0.2));
}

.h2-badge.finale {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.3), rgba(255, 200, 100, 0.2));
}

.h2-project strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.h2-project ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.h2-project li {
    font-size: 0.85rem;
    opacity: 0.8;
    padding-right: 1rem;
    position: relative;
    margin-bottom: 0.3rem;
}

.h2-project li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: var(--velvet-burgundy);
}

.h2-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.h2-activities span {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
}

/* Social Detailed */
.social-detailed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-section {
    padding: 1.2rem;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.platform-icon {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.platform-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.platform-use {
    font-size: 0.7rem;
    opacity: 0.6;
}

.social-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric-card {
    text-align: center;
    padding: 1rem;
}

.metric-num {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--soft-ivory);
}

.metric-label {
    font-size: 0.8rem;
    opacity: 0.7;
}

.content-strategy {
    padding: 1.2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.content-type {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.content-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.content-type strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.content-type p {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Brand Content Detailed */
.brand-content-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.brand-card {
    padding: 1.5rem;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.brand-icon {
    font-size: 2rem;
}

.brand-title h3 {
    font-size: 1.2rem;
    margin: 0;
}

.brand-budget {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    opacity: 0.7;
}

.brand-philosophy {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-style: italic;
}

.brand-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-section h5 {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.detail-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-section li {
    font-size: 0.85rem;
    padding-right: 1rem;
    position: relative;
    margin-bottom: 0.3rem;
}

.detail-section li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: rgba(201, 162, 39, 0.8);
}

.detail-section p {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.5;
}

.distribution-tags, .usage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.distribution-tags span, .usage-tags span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* VR Detailed */
.vr-detailed {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.vr-vision-box {
    text-align: center;
    padding: 1.5rem;
}

.vision-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.vision-icon {
    font-size: 1.5rem;
}

.vr-vision-box p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.vision-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--velvet-burgundy), rgba(66, 18, 24, 0.6));
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.vr-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.vr-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
}

.feature-icon {
    font-size: 1.8rem;
}

.feature-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.feature-content p {
    font-size: 0.8rem;
    opacity: 0.7;
}

.vr-outcomes {
    padding: 1.2rem;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.outcome {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.outcome-icon {
    font-size: 1.2rem;
}

/* AI Consultant Detailed */
.ai-consultant-detailed {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.ai-vision-box {
    text-align: center;
    padding: 1.5rem;
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.ai-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
}

.ai-benefits {
    padding: 1.2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.benefit-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .ai-features {
        grid-template-columns: 1fr;
    }
}

/* Financial Detailed */
.financial-detailed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.financial-philosophy {
    padding: 1.2rem;
}

.philosophy-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.philosophy-header span {
    font-size: 1.5rem;
}

.financial-philosophy > p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.spend-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.spend-cat {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

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

.budget-section {
    padding: 1.2rem;
}

.budget-section h5 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.budget-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.budget-item.featured {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), transparent);
    padding: 0.8rem;
    border-radius: 10px;
    margin-top: 0.5rem;
}

.item-info span {
    display: block;
    font-size: 0.9rem;
}

.item-info small {
    font-size: 0.75rem;
    opacity: 0.6;
}

.item-amount {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.budget-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, var(--velvet-burgundy), rgba(66, 18, 24, 0.6));
}

.budget-total span:first-child {
    font-size: 1.1rem;
    font-weight: 600;
}

.total-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.cash-flow-policy {
    margin-top: 1.5rem;
    padding: 1.5rem;
}

.policy-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.policy-icon {
    font-size: 1.8rem;
}

.cash-flow-policy h5 {
    font-size: 1.2rem;
    margin: 0;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-intro {
    margin-bottom: 1.2rem;
    opacity: 0.8;
    text-align: center;
    font-size: 0.9rem;
}

.policy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.policy-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-radius: 12px;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    flex: 1 1 auto;
    min-width: 200px;
}

.policy-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.policy-card.wide {
    flex-basis: 100%;
}

.policy-card-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.policy-card-content {
    flex: 1;
    text-align: right;
}

.policy-card-title {
    font-weight: 600;
    color: #d4af37;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.policy-card-subtitle {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-bottom: 0.3rem;
}

.policy-card-note {
    font-size: 0.7rem;
    opacity: 0.7;
}

.flow-circle.compact {
    width: 40px;
    height: 40px;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.policy-card-flow {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    margin: 0;
    flex-shrink: 0;
}

.policy-card-flow.timeline {
    gap: 0;
}

.flow-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
}

.flow-step span {
    font-size: 0.65rem;
    opacity: 0.8;
    white-space: nowrap;
}

.flow-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
    border: 2px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.6rem;
    color: #d4af37;
    flex-shrink: 0;
}

.flow-connector {
    width: 15px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, rgba(212, 175, 55, 0.5));
    margin: 0 2px;
}

.policy-card-note {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .policy-grid {
        flex-direction: column;
    }
    
    .policy-card {
        min-width: auto;
        flex-wrap: wrap;
    }
    
    .policy-card.wide {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .flow-circle {
        width: 28px;
        height: 28px;
        font-size: 0.55rem;
    }
    
    .flow-connector {
        width: 10px;
    }
    
    .flow-step span {
        font-size: 0.55rem;
    }
}

/* Content Pillars */
.pillars-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.pillar-card {
    flex: 1 1 180px;
    max-width: 220px;
    position: relative;
    padding: 1.2rem 1rem;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
}

.pillar-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f5d76e);
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.pillar-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 0.2rem;
}

.pillar-ar {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-bottom: 0.8rem;
}

.pillar-details {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8rem 0;
    text-align: right;
}

.pillar-details li {
    font-size: 0.7rem;
    opacity: 0.85;
    padding: 0.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pillar-details li:last-child {
    border-bottom: none;
}

.pillar-percent {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
    border: 2px solid #d4af37;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 41px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #d4af37;
}

@media (max-width: 768px) {
    .pillars-container {
        gap: 0.5rem;
    }
    
    .pillar-card {
        flex: 1 1 100px;
        max-width: none;
        padding: 0.5rem 0.4rem;
    }
    
    .pillar-icon {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .pillar-card h4 {
        font-size: 0.55rem;
    }
    
    .pillar-ar {
        font-size: 0.5rem;
        margin-bottom: 0.3rem;
    }
    
    .pillar-details {
        margin-bottom: 0.4rem;
    }
    
    .pillar-details li {
        font-size: 0.45rem;
        padding: 0.1rem 0;
    }
    
    .pillar-percent {
        width: 25px;
        height: 25px;
        line-height: 21px;
        font-size: 0.5rem;
    }
}

/* KPI Detailed */
.kpi-detailed {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.kpi-section {
    padding: 1.2rem;
}

.kpi-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.kpi-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.kpi-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.kpi-visual .kpi-arrow {
    font-size: 1.5rem;
    font-weight: 700;
}

.kpi-visual.down .kpi-arrow {
    color: #4ade80;
}

.kpi-visual.up .kpi-arrow {
    color: #60a5fa;
}

.kpi-visual.brand .kpi-arrow {
    color: #d4af37;
}

.kpi-percent {
    font-size: 0.75rem;
    opacity: 0.7;
}

.kpi-info strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.kpi-info p {
    font-size: 0.75rem;
    opacity: 0.7;
    margin: 0;
}

.governance-section {
    padding: 1.2rem;
}

.governance-rules {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1rem 0;
}

.gov-rule {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.gov-icon {
    font-size: 1.2rem;
}

.golden-rule-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 255, 255, 0.05));
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-top: 1rem;
}

.golden-icon {
    font-size: 2rem;
}

.golden-content strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.golden-content p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}

/* Mobile Responsive for new components */
@media (max-width: 768px) {
    .timeline-detailed {
        grid-template-columns: 1fr;
    }
    
    .h2-grid {
        grid-template-columns: 1fr;
    }
    
    .social-metrics {
        grid-template-columns: 1fr;
    }
    
    .brand-content-detailed {
        grid-template-columns: 1fr;
    }
    
    .vr-features {
        grid-template-columns: 1fr;
    }
    
    .budget-breakdown {
        grid-template-columns: 1fr;
    }
    
    .kpi-cards {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
}

.slide-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: rgba(36, 13, 16, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-left: 1px solid var(--glass-border);
    z-index: 200;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.slide-menu.open {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.menu-header h3 {
    font-size: 1.2rem;
}

.close-menu {
    background: none;
    border: none;
    color: var(--soft-ivory);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.close-menu:hover {
    opacity: 1;
}

.menu-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--soft-ivory);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    text-align: right;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.menu-item.active {
    background: var(--velvet-burgundy);
    border-color: rgba(255, 255, 255, 0.2);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

body.fullscreen-mode .nav-glass,
body.fullscreen-mode .footer-glass {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

body.fullscreen-mode:hover .nav-glass,
body.fullscreen-mode:hover .footer-glass {
    opacity: 1;
    pointer-events: auto;
}

body.fullscreen-mode .presentation-container {
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-glass {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(36, 13, 16, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 0.8rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-glass p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    opacity: 0.6;
    margin: 0;
}

.footer-powered {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-powered span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
}

.footer-strike-logo {
    height: 22px;
    opacity: 0.8;
}

/* Mobile First Responsive Design */
@media (max-width: 768px) {
    .nav-glass {
        padding: 0.8rem 1rem;
    }

    .logo-img {
        height: 35px;
    }

    .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .presentation-container {
        padding: 65px 4% 50px;
    }

    .glass-card {
        padding: 1.2rem;
        border-radius: 20px;
        min-height: calc(100vh - 140px);
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .slide-header h2 {
        font-size: 1.6rem;
    }

    .slide-subtitle {
        font-size: 0.85rem;
    }

    .highlight-box {
        padding: 1.2rem;
        font-size: 0.95rem;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .principle-card {
        padding: 1.2rem;
    }

    .principle-icon {
        font-size: 2rem;
    }

    .objective-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem;
    }

    .objective-num {
        font-size: 1.2rem;
    }

    .objective-item p {
        font-size: 0.9rem;
    }

    .ops-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .ops-card {
        padding: 1.2rem 1rem;
    }

    .ops-icon {
        font-size: 1.5rem;
    }

    .ops-card h4 {
        font-size: 0.85rem;
    }

    .ops-card p {
        font-size: 0.75rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .timeline-month {
        font-size: 1rem;
        padding-top: 0;
    }

    .timeline-badge {
        position: static;
        display: inline-block;
        margin-bottom: 0.5rem;
    }

    .timeline-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1rem;
    }

    .month-range {
        min-width: auto;
        font-size: 1rem;
    }

    .event-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

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

    .dual-cards {
        grid-template-columns: 1fr;
    }

    .vr-components {
        grid-template-columns: repeat(2, 1fr);
    }

    .vr-item {
        padding: 1rem;
    }

    .vr-icon {
        font-size: 1.5rem;
    }

    .vr-item h4 {
        font-size: 0.8rem;
    }

    .budget-row {
        grid-template-columns: 1fr 100px;
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .budget-row.total {
        font-size: 0.95rem;
    }

    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kpi-card {
        padding: 1rem;
    }

    .kpi-arrow {
        font-size: 1.5rem;
    }

    .kpi-card h4 {
        font-size: 0.75rem;
    }

    .golden-rule {
        padding: 0.8rem 1rem;
    }

    .golden-rule p {
        font-size: 0.85rem;
    }

    .footer-glass {
        padding: 0.8rem 1rem;
    }

    .footer-glass p {
        font-size: 0.7rem;
    }

    .shape-1 { width: 200px; height: 200px; }
    .shape-2 { width: 150px; height: 150px; }
    .shape-3 { width: 100px; height: 100px; }
    .shape-4 { width: 120px; height: 120px; }
}

@media (max-width: 480px) {
    .presentation-container {
        padding: 75px 5% 65px;
    }

    .glass-card {
        padding: 1.2rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .slide-header h2 {
        font-size: 1.4rem;
    }

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

    .vr-components {
        grid-template-columns: 1fr;
    }

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

    .result-tags {
        flex-direction: column;
        align-items: center;
    }

    .nav-controls {
        gap: 0.5rem;
    }

    .slide-counter {
        font-size: 0.8rem;
    }
}

/* Business Outcomes Map Styles */
.outcomes-map-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.outcomes-core-idea {
    padding: 1.2rem;
    text-align: center;
    border: 1px solid var(--accent-gold);
}

.core-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.core-icon {
    font-size: 1.8rem;
}

.core-header h3 {
    font-size: 1.3rem;
    color: var(--soft-ivory);
    margin: 0;
}

.core-philosophy {
    font-size: 0.95rem;
    color: rgba(247, 245, 236, 0.85);
    line-height: 1.6;
}

.conversion-map {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.conversion-path {
    padding: 1rem;
}

.path-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.path-icon {
    font-size: 1.5rem;
}

.path-title h4 {
    font-size: 0.95rem;
    color: var(--soft-ivory);
    margin: 0;
}

.path-budget {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--black-cherry);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.3rem;
}

.path-flow {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.flow-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(247, 245, 236, 0.8);
    padding: 0.3rem 0;
}

.flow-arrow {
    color: var(--accent-gold);
    font-weight: bold;
}

.flow-item.final {
    color: var(--soft-ivory);
    font-weight: 600;
    background: rgba(212, 175, 55, 0.15);
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    margin-top: 0.3rem;
}

.governance-principle {
    padding: 1.2rem;
    text-align: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--accent-gold);
}

.principle-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--black-cherry);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.governance-principle p {
    font-size: 1rem;
    color: var(--soft-ivory);
    line-height: 1.6;
}

.governance-principle strong {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .conversion-map {
        grid-template-columns: 1fr;
    }
    
    .core-header h3 {
        font-size: 1.1rem;
    }
    
    .path-title h4 {
        font-size: 0.85rem;
    }
}

/* Project Prioritization Styles */
.prioritization-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.priority-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    text-align: center;
}

.priority-icon {
    font-size: 2rem;
}

.priority-intro h3 {
    font-size: 1.4rem;
    color: var(--soft-ivory);
    margin: 0;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.tier-card {
    padding: 1.2rem;
    position: relative;
    overflow: hidden;
}

.tier-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tier-a-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
}

.tier-b-badge {
    background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
    color: #1a1a1a;
}

.tier-c-badge {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
    color: #fff;
}

.tier-header h4 {
    font-size: 1.1rem;
    color: var(--soft-ivory);
    margin: 0;
}

.tier-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tier-desc, .tier-goal, .tier-priority {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tier-label {
    font-size: 0.75rem;
    color: rgba(247, 245, 236, 0.6);
}

.tier-desc p, .tier-goal p, .tier-priority p {
    font-size: 0.9rem;
    color: var(--soft-ivory);
    margin: 0;
}

.tier-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.tier-indicator.high {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.tier-indicator.medium {
    background: linear-gradient(90deg, #C0C0C0, #A0A0A0);
}

.tier-indicator.low {
    background: linear-gradient(90deg, #CD7F32, #8B4513);
}

@media (max-width: 768px) {
    .tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .priority-intro h3 {
        font-size: 1.1rem;
    }
}

/* Mega Event Styles */
.mega-event-card {
    position: relative;
    overflow: hidden;
}

.mega-event-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.mega-event-card .slide-header,
.mega-event-card .slide-content {
    position: relative;
    z-index: 1;
}

.mega-event-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-location {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-gold);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-icon {
    font-size: 2rem;
}

.location-info h3 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin: 0;
}

.location-info p {
    font-size: 0.85rem;
    color: rgba(247, 245, 236, 0.7);
    margin: 0.3rem 0 0;
}

.event-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.8rem;
}

.highlight-icon {
    font-size: 1.3rem;
}

.highlight-content h4 {
    font-size: 0.85rem;
    color: var(--soft-ivory);
    margin: 0 0 0.3rem;
}

.highlight-content p {
    font-size: 0.7rem;
    color: rgba(247, 245, 236, 0.7);
    margin: 0;
}

/* VR Demo Button */
.vr-demo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(66, 18, 24, 0.9), rgba(36, 13, 16, 0.95));
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    text-decoration: none;
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.vr-demo-btn:hover {
    background: linear-gradient(135deg, var(--accent-gold), #c4a030);
    color: var(--black-cherry);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.demo-icon {
    font-size: 1.3rem;
}

.demo-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.vr-demo-btn:hover .demo-arrow {
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .vr-demo-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* YouTuber Collaboration Styles */
.youtuber-collab {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.youtuber-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.youtuber-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.youtube-icon {
    color: white;
    font-size: 1.8rem;
}

.youtuber-info h3 {
    font-size: 1.1rem;
    color: var(--soft-ivory);
    margin: 0 0 0.3rem;
}

.youtube-link {
    color: #ff4444;
    font-size: 0.85rem;
    text-decoration: none;
    direction: ltr;
    display: inline-block;
}

.youtube-link:hover {
    text-decoration: underline;
}

.collab-content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.collab-card {
    padding: 1rem;
    text-align: center;
}

.collab-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.collab-card h4 {
    font-size: 0.85rem;
    color: var(--soft-ivory);
    margin: 0 0 0.3rem;
}

.collab-card p {
    font-size: 0.7rem;
    color: rgba(247, 245, 236, 0.7);
    margin: 0;
}

.collab-benefits {
    padding: 1rem;
    text-align: center;
}

.collab-benefits h4 {
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin: 0 0 0.8rem;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.benefit-tag {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .collab-content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .youtuber-avatar {
        width: 55px;
        height: 55px;
    }
    
    .youtuber-info h3 {
        font-size: 0.95rem;
    }
}

.performer-budget-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.star-performer {
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.performer-image-wrapper {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
}

.performer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.performer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
}

.star-badge {
    display: inline-block;
    width: fit-content;
    background: var(--accent-gold);
    color: var(--black-cherry);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.performer-info h3 {
    font-size: 1.2rem;
    color: var(--soft-ivory);
    margin: 0;
}

.performer-info p {
    font-size: 0.8rem;
    color: rgba(247, 245, 236, 0.7);
    margin: 0.2rem 0 0;
}

.event-budget {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-gold);
    text-align: center;
}

.budget-icon {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.budget-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.budget-label {
    font-size: 0.75rem;
    color: rgba(247, 245, 236, 0.7);
}

.budget-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .event-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .performer-budget-row {
        grid-template-columns: 1fr;
    }
    
    .performer-image-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .performer-info h3 {
        font-size: 1rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .glass-inner:hover {
        transform: none;
    }

    .nav-btn:hover {
        transform: none;
    }

    .nav-btn:active {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(0.95);
    }

    .glass-inner:active {
        background: rgba(255, 255, 255, 0.1);
    }
}
