/*
Theme Name: Pshina Digital Home
Theme URI: https://www.pshina.net
Author: Pshina Team
Author URI: https://www.pshina.net
Description: Epic cinematic premium WordPress theme built specifically for Pshina.net – The Digital Home for Circassian Culture. Features integrated support for Circassian Video streaming, Music player, Global Business Directory, Kids interactive learning area, and mobile app showcases. Beautiful RTL Arabic design with authentic golden Circassian ornaments.
Version: 1.0.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pshina
Domain Path: /languages
Tags: dark-mode, rtl-language-support, entertainment, custom-colors, custom-logo, custom-menu, e-commerce, featured-images, full-width-template, grid-layout, news, portfolio, theme-options, translation-ready, video-streaming, music-player, business-directory
*/

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

:root {
    --bg-dark: #070B12;
    --bg-card: #111827;
    --bg-card-hover: #1F2937;
    --bg-glass: rgba(17, 24, 39, 0.8);
    --gold-primary: #D4AF37;
    --gold-light: #FCE694;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --circassian-green: #046A38;
    --circassian-green-dark: #023D20;
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    --border-color: rgba(212, 175, 55, 0.2);
    --border-gold: #D4AF37;
    --shadow-cinematic: 0 10px 30px -5px rgba(0, 0, 0, 0.7);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.25);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-arabic: 'Cairo', sans-serif;
    --font-epic: 'Cinzel', serif;
}

/* Base Reset & Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-arabic);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-family: var(--font-arabic);
}

.epic-heading {
    font-family: var(--font-epic);
}

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--gold-light);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.relative { position: relative; }
.z-10 { z-index: 10; }

/* Header & Navigation */
.pshina-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(7, 11, 18, 0.95) 0%, rgba(7, 11, 18, 0.75) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.pshina-header.scrolled {
    padding: 0.5rem 0;
    background: rgba(7, 11, 18, 0.98);
    box-shadow: var(--shadow-gold);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: var(--transition-smooth);
}

.pshina-header.scrolled .header-inner {
    height: 70px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo img {
    height: 55px;
    width: auto;
    transition: var(--transition-smooth);
}

.brand-logo-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.main-navigation ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-navigation a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gold-primary), #B8860B);
    color: #000;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
    border: 1px solid var(--gold-light);
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: #000;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--gold-primary);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--gold-primary);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: #000;
    box-shadow: var(--shadow-gold);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 1.75rem;
    cursor: pointer;
}

/* Site Content */
.site-content {
    flex: 1;
    margin-top: 90px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 30%, #131E32 0%, #070B12 80%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1544885935-98dd03b09034?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.hero-ornament-sky {
    position: absolute;
    top: -10%; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px;
    pointer-events: none;
    animation: rotateSlow 60s linear infinite;
}

@keyframes rotateSlow {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cultural-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-gold);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .gold-text {
    display: block;
    font-size: 2.75rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-arabic);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Ecosystem Banner */
.ecosystem-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-cinematic);
}

.eco-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: right;
}

.eco-icon {
    font-size: 2.25rem;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    width: 60px; height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.eco-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.eco-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Core Pillar Sections */
.section-pad {
    padding: 6rem 0;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-subtitle {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--text-main);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-desc { max-width: 750px; margin: 1rem auto 0; color: var(--text-muted); font-size: 1.15rem; }

/* Streaming Section */
.streaming-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-arabic);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

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

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-cinematic), var(--shadow-gold);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1E293B;
}

.video-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1E293B, #0F172A);
    position: relative;
}

.bg-cinematic-dance1 { background: linear-gradient(135deg, #046A38, #070B12); }
.bg-cinematic-doc1 { background: linear-gradient(135deg, #854D0E, #070B12); }
.bg-cinematic-wedding1 { background: linear-gradient(135deg, #9F1239, #070B12); }
.bg-cinematic-fest1 { background: linear-gradient(135deg, #3730A3, #070B12); }
.bg-cinematic-youth1 { background: linear-gradient(135deg, #065F46, #070B12); }
.bg-cinematic-dance2 { background: linear-gradient(135deg, #B45309, #070B12); }

.video-thumb .icon-bg {
    font-size: 4rem;
    color: rgba(255,255,255,0.1);
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.8);
    color: #FFF;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.2);
}

.play-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7, 11, 18, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-btn-circle {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--gold-primary);
    border: none;
    color: #000;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    box-shadow: 0 0 30px var(--gold-primary);
    cursor: pointer;
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.video-card:hover .play-btn-circle {
    transform: scale(1);
}

.video-info {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.video-cat {
    color: var(--gold-light);
    font-weight: 700;
}

.video-card-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.video-card-title a {
    color: var(--text-main);
}

.video-card-title a:hover {
    color: var(--gold-primary);
}

.video-card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Music Experience Section */
.music-experience-section {
    background: linear-gradient(135deg, #070B12 0%, #0F172A 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.music-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.music-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.music-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.music-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.interactive-audio-player {
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid var(--gold-primary);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-cinematic), var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.player-track-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.track-disc {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--circassian-green), var(--gold-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FFF;
    border: 3px solid #FFF;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    flex-shrink: 0;
}

.track-disc.rotating {
    animation: spinDisc 6s linear infinite;
}

@keyframes spinDisc {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.now-playing-label {
    font-size: 0.8rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.track-details h4 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.track-details span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Sound Wave bars */
.sound-waves-visualizer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 40px;
    margin-bottom: 2rem;
}

.sound-waves-visualizer .bar {
    width: 4px;
    background: var(--gold-primary);
    border-radius: 4px;
    animation: waveBounce 1.2s ease-in-out infinite alternate;
}

.sound-waves-visualizer .bar:nth-child(2) { animation-delay: 0.1s; }
.sound-waves-visualizer .bar:nth-child(3) { animation-delay: 0.4s; }
.sound-waves-visualizer .bar:nth-child(4) { animation-delay: 0.2s; }
.sound-waves-visualizer .bar:nth-child(5) { animation-delay: 0.6s; }
.sound-waves-visualizer .bar:nth-child(6) { animation-delay: 0.3s; }
.sound-waves-visualizer .bar:nth-child(7) { animation-delay: 0.7s; }
.sound-waves-visualizer .bar:nth-child(8) { animation-delay: 0.2s; }
.sound-waves-visualizer .bar:nth-child(9) { animation-delay: 0.5s; }
.sound-waves-visualizer .bar:nth-child(10) { animation-delay: 0.1s; }
.sound-waves-visualizer .bar:nth-child(11) { animation-delay: 0.4s; }
.sound-waves-visualizer .bar:nth-child(12) { animation-delay: 0.2s; }

@keyframes waveBounce {
    0% { height: 8px; }
    100% { height: 36px; background: var(--gold-light); }
}

.player-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-family: monospace;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.progress-bar-wrapper {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    border-radius: 10px;
    position: relative;
    transition: width 0.1s linear;
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.ctrl-btn {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.ctrl-btn:hover {
    color: var(--gold-primary);
    background: rgba(255,255,255,0.05);
}

.play-pause-btn {
    width: 70px; height: 70px;
    background: var(--gold-primary);
    color: #000;
    font-size: 1.75rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.play-pause-btn:hover {
    background: var(--gold-light);
    color: #000;
    transform: scale(1.05);
}

.ctrl-sm {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Playlist Queue */
.music-playlist-queue {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 25px;
    box-shadow: var(--shadow-cinematic);
}

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

.queue-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.playlist-tracks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
    padding-left: 0.5rem;
}

.playlist-tracks::-webkit-scrollbar {
    width: 6px;
}
.playlist-tracks::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}
.playlist-tracks::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 10px;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255,255,255,0.02);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.track-item:hover, .track-item.active {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.track-num {
    font-weight: 900;
    color: var(--text-muted);
    font-family: monospace;
    font-size: 1.1rem;
}

.track-item.active .track-num {
    color: var(--gold-primary);
}

.track-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.track-info strong {
    font-size: 1.05rem;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.track-item:hover .track-info strong, .track-item.active .track-info strong {
    color: var(--gold-primary);
}

.track-info small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.track-time {
    color: var(--text-muted);
    font-family: monospace;
    font-size: 0.95rem;
}

.track-play-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
}

.track-item:hover .track-play-btn, .track-item.active .track-play-btn {
    color: var(--gold-primary);
}

/* Business Directory */
.directory-search-box {
    max-width: 1000px;
    margin: 0 auto 3rem;
    background: var(--bg-card);
    border: 2px solid var(--gold-primary);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: var(--shadow-gold), var(--shadow-cinematic);
}

.dir-form {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr auto;
    gap: 1rem;
    align-items: center;
}

.form-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    right: 1.25rem;
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.form-ctrl {
    width: 100%;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
    padding: 1rem 1rem 1rem 3.5rem;
    border-radius: 12px;
    color: #FFF;
    font-size: 1rem;
    font-family: var(--font-arabic);
    outline: none;
    transition: var(--transition-smooth);
}

.form-ctrl:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.select-ctrl {
    cursor: pointer;
}

.select-ctrl option {
    background: var(--bg-card);
    color: #FFF;
    padding: 0.5rem;
}

.btn-search-dir {
    height: 100%;
    padding: 0 2.5rem;
    border-radius: 12px;
}

/* Glowing World Locations */
.glowing-world-locations {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.location-badge {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.location-badge:hover {
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.loc-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gold-primary);
}

.loc-dot.pulse {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Business Grid */
.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.biz-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.biz-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-cinematic), var(--shadow-gold);
}

.biz-thumb {
    height: 220px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.biz-bg-1 { background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=800&q=80'); }
.biz-bg-2 { background-image: url('https://images.unsplash.com/photo-1573855619003-97b4799dcd8b?auto=format&fit=crop&w=800&q=80'); }
.biz-bg-3 { background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=800&q=80'); }

.biz-category-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--circassian-green);
    color: #FFF;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.biz-info {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.biz-location {
    color: var(--gold-primary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.biz-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.biz-title a {
    color: var(--text-main);
}

.biz-title a:hover {
    color: var(--gold-primary);
}

.biz-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.biz-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.biz-rating {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Kids Area Section */
.kids-area-section {
    background: linear-gradient(135deg, #0D201D 0%, #070B12 100%);
    overflow: hidden;
}

.kids-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.shape-1 {
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: #10B981;
}

.shape-2 {
    bottom: -100px; left: -100px;
    width: 500px; height: 500px;
    background: #F59E0B;
}

.kids-header-banner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.kids-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10B981;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: #10B981;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.kids-title {
    font-size: 3.25rem;
    margin-bottom: 1rem;
}

.kids-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
}

.kids-activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.kids-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 2.5rem 1.5rem;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.kids-card:hover {
    transform: translateY(-10px);
}

.card-green:hover { border-color: #10B981; box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2); }
.card-gold:hover { border-color: #F59E0B; box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2); }
.card-red:hover { border-color: #EF4444; box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2); }
.card-blue:hover { border-color: #3B82F6; box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2); }

.kids-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.card-green .kids-card-icon { color: #10B981; }
.card-gold .kids-card-icon { color: #F59E0B; }
.card-red .kids-card-icon { color: #EF4444; }
.card-blue .kids-card-icon { color: #3B82F6; }

.kids-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.kids-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex: 1;
}

.kids-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.card-green .kids-btn { background: rgba(16, 185, 129, 0.1); color: #10B981; }
.card-gold .kids-btn { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
.card-red .kids-btn { background: rgba(239, 68, 68, 0.1); color: #EF4444; }
.card-blue .kids-btn { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }

.kids-card:hover .kids-btn {
    background: var(--text-main);
    color: #000;
}

/* Mobile App Section */
.app-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.app-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.app-feat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.text-gold { color: var(--gold-primary); }

.app-download-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* 3D Visual Phone Showcase */
.app-showcase-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup-wrapper {
    position: relative;
    width: 320px;
    height: 640px;
    perspective: 1000px;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: #000;
    border: 12px solid #2B3548;
    border-radius: 50px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 30px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 2;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-mockup-wrapper:hover .phone-frame {
    transform: rotateY(0deg) rotateX(0deg);
}

.phone-notch {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 25px;
    background: #2B3548;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%; height: 100%;
    background: var(--bg-dark);
    position: relative;
    overflow-y: auto;
}

/* Simulated App UI inside screen */
.app-screen-sim {
    padding: 2.5rem 1rem 5rem;
}

.app-sim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
    font-weight: 900;
    font-size: 1.25rem;
}

.app-sim-banner {
    height: 140px;
    background: linear-gradient(135deg, var(--circassian-green), #D4AF37);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.app-sim-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #FFF;
}

.app-sim-cards {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    overflow-x: hidden;
}

.app-sim-cards .sim-c {
    width: 120px; height: 80px;
    background: #1E293B;
    border-radius: 10px;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.app-sim-track {
    background: var(--bg-card);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-color);
}

.sim-t-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.sim-t-lines .l1 { height: 8px; width: 80%; background: #FFF; border-radius: 4px; }
.sim-t-lines .l2 { height: 6px; width: 50%; background: var(--text-muted); border-radius: 4px; }

.app-sim-nav {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 1.25rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.gc-1 {
    top: 50px; left: -50px;
    width: 250px; height: 250px;
    background: rgba(212, 175, 55, 0.4);
}

.gc-2 {
    bottom: 50px; right: -50px;
    width: 250px; height: 250px;
    background: rgba(4, 106, 56, 0.4);
}

/* Final Scene */
.final-epic-scene {
    position: relative;
    padding: 8rem 0;
    background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    overflow: hidden;
}

.final-overlay {
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: linear-gradient(0deg, #070B12 0%, rgba(7,11,18,0.7) 50%, #070B12 100%);
}

.final-flag-icon {
    width: 140px; height: 140px;
    margin: 0 auto 2rem;
}

.final-title {
    font-size: 3.5rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.final-url {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 4px;
    font-family: var(--font-epic);
    color: #FFF;
    margin-bottom: 3rem;
}

.final-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.final-pills .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold-primary);
}

/* Video Modal Popup */
.video-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

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

.video-modal-content {
    width: 100%;
    max-width: 1000px;
    background: var(--bg-card);
    border: 1px solid var(--gold-primary);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 20px 80px rgba(0,0,0,0.9), var(--shadow-gold);
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

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

.video-modal-close {
    position: absolute;
    top: 1.5rem; left: 1.5rem;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #FFF;
    width: 45px; height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.video-modal-close:hover {
    background: var(--gold-primary);
    color: #000;
    transform: rotate(90deg);
}

.modal-video-title {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    padding-right: 1rem;
    border-right: 4px solid var(--circassian-green);
}

.video-iframe-wrapper {
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

/* Simulated Cinematic Player inside modal */
.simulated-video-player {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #046A38, #070B12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    position: relative;
}

.player-center-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90px; height: 90px;
    border-radius: 50%;
    background: var(--gold-primary);
    color: #000;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    box-shadow: 0 0 40px var(--gold-primary);
    cursor: pointer;
}

.sim-watermark {
    font-weight: 900;
    font-family: var(--font-epic);
    color: rgba(255,255,255,0.3);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.sim-bottom-bar {
    background: rgba(0,0,0,0.7);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sim-prog { height: 6px; background: rgba(255,255,255,0.2); border-radius: 3px; }
.sim-prog .sim-fill { height: 100%; background: var(--gold-primary); border-radius: 3px; }

.sim-ctrls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFF;
    font-family: monospace;
    font-size: 1rem;
}

/* Footer */
.pshina-footer {
    background-color: #04070C;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-ornament {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    opacity: 0.15;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--circassian-green);
}

.footer-about p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
    transform: translateX(-5px);
}

.footer-apps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.app-badge:hover {
    border-color: var(--gold-primary);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.app-badge i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.app-badge-text {
    display: flex;
    flex-direction: column;
}

.app-badge-text small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.app-badge-text span {
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    border: 1px solid var(--border-color);
}

.social-icons a:hover {
    background: var(--gold-primary);
    color: #000;
    transform: translateY(-3px);
}

/* Media Queries */
@media (max-width: 1024px) {
    .main-navigation {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .dir-form {
        grid-template-columns: 1fr 1fr;
    }
    .btn-search-dir {
        grid-column: span 2;
        padding: 1rem 0;
    }
    .streaming-grid, .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .kids-activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-actions {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .hero-title { font-size: 3rem; }
    .hero-title .gold-text { font-size: 2rem; }
    .ecosystem-features { grid-template-columns: 1fr; }
    .music-content-grid, .app-content-grid { grid-template-columns: 1fr; gap: 3rem; }
    .dir-form { grid-template-columns: 1fr; }
    .btn-search-dir { grid-column: span 1; }
    .streaming-grid, .business-grid { grid-template-columns: 1fr; }
    .kids-activities-grid { grid-template-columns: 1fr; }
    .final-title { font-size: 2.25rem; }
    .final-url { font-size: 1.5rem; }
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: #070B12;
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.9);
    transition: right 0.4s ease-in-out;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-close {
    position: absolute;
    top: 1.5rem; left: 1.5rem;
    background: none; border: none;
    color: var(--gold-primary);
    font-size: 1.75rem; cursor: pointer;
}

.drawer-brand {
    margin-bottom: 2.5rem;
    display: flex; flex-direction: column;
}

.mobile-nav-list {
    flex: 1;
    display: flex; flex-direction: column; gap: 1.5rem;
}

.mobile-nav-list a {
    color: var(--text-main); font-size: 1.25rem; font-weight: 700;
    display: flex; align-items: center; gap: 1rem;
}

.mobile-nav-list a i { color: var(--gold-primary); width: 25px; }
