:root {
    --bordo: #A32638;
    --bordo-dark: #7a1c29;
    --mavi: #1C2C5B;
    --mavi-light: #2a4288;
    --text-dark: #ffffff; /* White text for better contrast on images */
    --text-light: #f3f4f6;
    --glass-bg: rgba(15, 23, 42, 0.4);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html, body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background: #0a0f1e;
    color: white;
    overflow: hidden; /* Prevent scrolling on PC */
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Dark overlay to ensure text readability over images */
body::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 0;
}

/* Background Animation - Removed flat gradients, relying on real images now */
.bg-shape {
    display: none;
}

.bg-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--bordo) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.bg-shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--mavi) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background: rgba(10, 15, 30, 0.5);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.logo img {
    height: 60px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.pulse-attention {
    animation: gentle-pulse 2s infinite;
}

@keyframes gentle-pulse {
    0% { transform: scale(1); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
    50% { transform: scale(1.1); box-shadow: 0 10px 40px rgba(255, 255, 255, 0.4); border-color: rgba(255,255,255,0.6); }
    100% { transform: scale(1); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
}

.play-btn i {
    font-size: 2.2rem;
    color: white;
    transition: transform 0.3s ease;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--mavi);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--bordo);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--bordo);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Page Sections */
.page-section {
    width: 100%;
    max-width: 1300px; /* Slightly wider */
    height: calc(100vh - 80px); /* Fill remaining height exactly */
    display: flex;
    flex-direction: row;
    align-items: center; /* Center vertically */
    justify-content: center;
    gap: 40px;
    padding: 20px 5%;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-section.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Home Section */
.tuner-container {
    width: 100%;
    max-width: 800px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: all 0.5s ease;
}

.tuner-container.locked {
    box-shadow: 0 0 50px rgba(28, 44, 91, 0.3), inset 0 0 20px rgba(163, 38, 56, 0.1);
    border-color: var(--mavi-light);
}

.slogan-container {
    margin-bottom: 40px;
}

.main-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.main-title .highlight {
    color: var(--bordo); /* Original bordo requested by user */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.slogan {
    font-size: 1.5rem;
    color: #e2e8f0;
    font-weight: 300;
    transition: all 0.5s ease;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.tuner-container.locked .slogan {
    color: #93c5fd; /* Brightened version of Mavi for dark background */
    font-weight: 600;
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

/* Stereo LCD / RDS Screen */
.stereo-lcd {
    background: #0f172a;
    border: 3px solid #1e293b;
    border-radius: 10px;
    padding: 10px 20px;
    margin: 20px auto;
    width: 100%;
    max-width: 400px;
    box-shadow: inset 0 0 15px rgba(0,0,0,1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    overflow: hidden;
}

.rds-display {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.rds-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: #3b82f6;
    text-shadow: 0 0 5px #3b82f6;
    display: inline-block;
    transition: color 0.3s, text-shadow 0.3s;
}

.tuner-container.locked .rds-text {
    color: #10b981;
    text-shadow: 0 0 8px #10b981;
    animation: scroll-text 8s linear infinite;
}

@keyframes scroll-text {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Tuner UI */
.tuner-dial-wrapper {
    position: relative;
    margin: 40px 0;
}

.tuner-glass {
    height: 120px;
    background: #111;
    border-radius: 15px;
    border: 5px solid #333;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 5px 20px rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
}

.tuner-scale {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.freq-markers {
    width: 100%;
    height: 30px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.2) 0px,
        rgba(255,255,255,0.2) 2px,
        transparent 2px,
        transparent 10%
    );
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.tuner-needle {
    width: 4px;
    height: 100%;
    background: #ef4444;
    position: absolute;
    left: 0%;
    box-shadow: 0 0 10px #ef4444;
    transition: left 0.1s ease-out;
    z-index: 10;
}

.tuner-container.locked .tuner-needle {
    background: #22c55e;
    box-shadow: 0 0 15px #22c55e;
}

.tuner-readout {
    position: absolute;
    right: 20px;
    bottom: 10px;
    color: #ef4444;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: monospace;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    z-index: 20;
    transition: color 0.3s;
}

.tuner-container.locked .tuner-readout {
    color: #22c55e;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.8);
}

.tuner-readout .mhz {
    font-size: 1rem;
}

/* Native Range Slider styled to overlay */
.freq-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 120px;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    outline: none;
    z-index: 30;
    cursor: pointer;
}

.freq-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 120px;
    background: transparent;
    cursor: grab;
}

.freq-slider::-moz-range-thumb {
    width: 40px;
    height: 120px;
    background: transparent;
    border: none;
    cursor: grab;
}

.freq-slider:active::-webkit-slider-thumb {
    cursor: grabbing;
}

.tuner-hint {
    font-size: 1.1rem;
    color: var(--bordo);
    margin-top: -10px;
    margin-bottom: 20px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Player Controls */
.player-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    opacity: 1;
    transition: opacity 0.5s, transform 0.5s;
}

.player-controls.disabled {
    opacity: 0.3;
    pointer-events: none;
    transform: scale(0.95);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: #ef4444;
    letter-spacing: 2px;
}

.pulsing-dot {
    width: 12px;
    height: 12px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

.listener-count {
    margin-left: 10px;
    font-size: 0.85rem;
    color: #6b7280;
    background: rgba(28, 44, 91, 0.05);
    padding: 5px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(28, 44, 91, 0.1);
}

.listener-count i {
    color: var(--bordo);
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bordo), var(--mavi));
    border: none;
    color: white;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(28, 44, 91, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    padding-left: 6px; /* Offset for play triangle */
}

.play-btn.playing {
    padding-left: 0;
    background: linear-gradient(135deg, var(--mavi), var(--bordo));
}

.play-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(28, 44, 91, 0.5);
}

.play-btn:active {
    transform: translateY(1px);
}

.volume-control {
    display: flex;
    align-items: center;
}

.mute-btn {
    background: none;
    border: none;
    color: var(--mavi);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.mute-btn:hover {
    color: var(--bordo);
}

/* Contact Section */
.contact-container {
    width: 100%;
    max-width: 1000px;
    padding: 50px;
    border-radius: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
}

.contact-container h2 {
    font-size: 2.5rem;
    color: var(--bordo);
    margin-bottom: 40px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 2rem;
    color: var(--mavi);
    background: rgba(28, 44, 91, 0.1);
    padding: 15px;
    border-radius: 50%;
}

.info-item h3 {
    color: var(--mavi);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-item p {
    color: #4b5563;
    line-height: 1.6;
}

/* Dashboard Widgets */
.dashboard-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    max-width: 400px;
    position: relative;
    z-index: 10;
}

.dash-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--glass-shadow);
    flex: 1;
    min-width: 200px;
    transition: all 0.5s ease;
}

#app {
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.page-section {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
}

.tuner-container {
    flex: 1.5;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--glass-shadow);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dash-icon {
    font-size: 2rem;
    color: #93c5fd; /* Soft blue */
    transition: color 0.5s ease;
}

.dash-info {
    width: 100%;
}

.dash-info h3 {
    font-size: 0.85rem;
    color: #93c5fd;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dash-info p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.5s ease;
}

.dash-info p span {
    font-size: 0.85rem;
    font-weight: 400;
    color: #6b7280;
}

.traffic-card {
    flex: 2;
    min-width: 300px;
}

.traffic-map-wrapper {
    margin-top: 5px;
}

/* Dynamic Themes */
body.theme-night {
    --bg-color: #0f172a;
    --text-dark: #f8fafc;
    --mavi: #60a5fa;
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}
body.theme-night .bg-shape-1 { background: radial-gradient(circle, #312e81 0%, transparent 70%); }
body.theme-night .bg-shape-2 { background: radial-gradient(circle, #020617 0%, transparent 70%); }
body.theme-night .dash-icon { color: #fcd34d; }

body.theme-rain {
    --bg-color: #475569;
    --text-dark: #f1f5f9;
    --mavi: #94a3b8;
    --glass-bg: rgba(51, 65, 85, 0.7);
    --glass-border: rgba(255, 255, 255, 0.15);
}
body.theme-rain .bg-shape-1 { background: radial-gradient(circle, #334155 0%, transparent 70%); }
body.theme-rain .bg-shape-2 { background: radial-gradient(circle, #1e293b 0%, transparent 70%); }
body.theme-rain .dash-icon { color: #38bdf8; }

body.theme-sunny {
    --bg-color: #f0f9ff;
    --mavi: #0284c7;
}
body.theme-sunny .bg-shape-1 { background: radial-gradient(circle, #e0f2fe 0%, transparent 70%); }
body.theme-sunny .bg-shape-2 { background: radial-gradient(circle, #bae6fd 0%, transparent 70%); }
body.theme-sunny .dash-icon { color: #f59e0b; }

/* Welcome Overlay */
.welcome-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.98);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.welcome-content {
    text-align: center;
    color: white;
    animation: fadeIn 1s ease;
}

.welcome-content img {
    width: 200px;
    margin-bottom: 20px;
    filter: drop-shadow(0px 0px 15px rgba(255,255,255,0.1));
}

.welcome-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--mavi);
    margin-bottom: 40px;
    font-size: 1.5rem;
}

.pulse-btn {
    background: linear-gradient(135deg, var(--bordo), var(--mavi));
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
    animation: pulseBtnAnim 2s infinite;
    transition: transform 0.2s ease;
}

.pulse-btn:hover {
    transform: scale(1.05);
}

@keyframes pulseBtnAnim {
    0% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(96, 165, 250, 0); }
    100% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive *//* --- App Cards Dashboard (Desktop & Mobile) --- */
.dashboard-container {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%; /* Fit within container */
}

.app-cards {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Reduced gap to prevent scroll */
    width: 100%;
}

.app-card {
    background: rgba(18, 25, 43, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px 20px; /* Reduced padding */
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.app-card-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.app-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Weather Card Visuals */
.weather-visual {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFB75E 0%, #ED8F03 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 0 20px rgba(237, 143, 3, 0.5);
}

.weather-data {
    display: flex;
    flex-direction: column;
}

.weather-temp {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    color: white;
    line-height: 1.1;
}

.weather-desc {
    font-size: 0.95rem;
    color: #a0aec0;
    text-transform: capitalize;
}

.weather-location {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Moon Card Visuals */
.moon-visual {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moon-css-container {
    width: 50px;
    height: 50px;
    position: relative;
    border-radius: 50%;
    background: #fcd34d;
    box-shadow: inset -10px -10px 0 0 rgba(0,0,0,0.2), 0 0 20px rgba(252, 211, 77, 0.6);
}

/* Simulate craters */
.moon-css-container::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 20%;
    width: 12px;
    height: 12px;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    box-shadow: 15px 10px 0 -2px rgba(0,0,0,0.1), 8px 20px 0 -4px rgba(0,0,0,0.1);
}

.moon-data {
    display: flex;
    flex-direction: column;
}

.moon-title {
    font-size: 0.85rem;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.moon-desc {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

/* News Card Structure */
.news-vertical-layout {
    flex-direction: column !important;
    gap: 10px;
    width: 100%;
}

.news-header {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.news-visual-small {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--bordo) 0%, #6b1523 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

.news-header h3 {
    font-size: 1rem;
    margin: 0;
    color: white;
}

.news-data-full {
    width: 100%;
    overflow: hidden;
}

.news-feed-ticker {
    height: 80px; /* Shows exactly 1 item at 80px height */
    overflow: hidden;
    position: relative;
    width: 100%;
}

.news-feed-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.5s ease-in-out;
}

.news-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    height: 80px;
    flex-shrink: 0;
    transition: all 0.3s;
    width: 100%;
}

.news-item:hover {
    background: var(--mavi);
}

.news-item-content {
    display: flex;
    flex-direction: column;
    width: calc(100% - 20px);
    gap: 4px;
}

.news-item-title {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    font-size: 0.9rem;
    color: #f8fafc;
}

.news-item-desc {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.75rem;
    color: #cbd5e1;
    font-weight: 300;
}

.loading-news {
    font-size: 0.85rem;
    color: #a0aec0;
}

/* --- Footer --- */
.site-footer {
    width: 100%;
    padding: 10px 20px;
    text-align: center;
    background: rgba(10, 15, 30, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    z-index: 10;
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: var(--mavi);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #4a6ee0;
}

/* Responsive: Tablet ve Mobil Ayrımı */
@media (max-width: 900px) {
    .page-section {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        gap: 15px;
        height: calc(100vh - 70px);
    }
    
    .dashboard-container {
        width: 100%;
        max-width: 700px;
        flex: 1;
    }
    
    .tuner-container {
        flex: 1.2;
        padding: 20px;
    }
    
    .app-cards {
        flex-direction: row;
        flex-wrap: wrap;
        height: 100%;
    }
    
    .app-card {
        flex: 1;
        min-width: 150px;
    }
    
    .news-card {
        min-width: 100%;
    }
}

/* Native App Mobile Experience (Tam Ekrana Oturtma - Asla Scroll Yok) */
@media (max-width: 600px) {
    html, body {
        overflow: hidden !important; /* Force no scroll */
        height: 100dvh !important; /* Use dynamic viewport height */
        min-height: unset;
        display: flex;
        flex-direction: column;
    }
    
    .navbar {
        height: 60px;
        padding: 10px 15px;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo img {
        height: 40px;
    }
    
    .nav-links {
        display: none; /* Hide top nav links on small mobile to save space */
    }
    
    .page-section {
        padding: 10px;
        gap: 10px;
        height: calc(100dvh - 100px); /* 60px header + 40px footer */
        flex-direction: column;
    }

    .tuner-container {
        flex: 1;
        padding: 15px 10px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        min-height: unset;
        margin: 0;
    }

    .slogan-container {
        margin-bottom: 5px;
    }

    .main-title {
        font-size: 1.6rem;
        margin-bottom: 2px;
    }
    
    .slogan {
        font-size: 0.9rem;
    }

    .stereo-lcd {
        margin: 5px auto;
        height: 35px;
        padding: 5px;
    }
    
    .rds-text {
        font-size: 0.9rem;
    }

    .tuner-dial-wrapper {
        margin: 10px 0;
    }

    .tuner-glass {
        height: 60px;
    }
    
    .freq-slider {
        height: 60px;
    }

    .tuner-readout {
        font-size: 1.4rem;
        bottom: 5px;
        right: 10px;
    }
    
    .player-controls {
        margin-top: 5px;
        gap: 10px;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
    }
    
    .play-btn i {
        font-size: 1.6rem;
    }

    .dashboard-container {
        flex: 1;
        width: 100%;
        max-width: 100%;
        min-width: unset;
        height: auto;
    }

    .app-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 10px;
        height: 100%;
    }

    .app-card {
        padding: 10px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .news-card {
        grid-column: span 2;
        width: 100%;
        overflow: hidden;
    }

    .news-data {
        width: 100%;
        overflow: hidden;
    }

    .app-card-content {
        gap: 10px;
        width: 100%;
    }
    
    /* Center align Weather/Moon content on mobile */
    .weather-card .app-card-content, 
    .moon-card .app-card-content {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .weather-visual, .moon-visual, .news-visual {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .weather-temp { font-size: 1.4rem; }
    .moon-desc { font-size: 1rem; }
    
    .news-header h3 {
        font-size: 0.9rem; /* Slightly smaller on mobile */
    }
    
    .news-feed-ticker {
        height: 80px;
        width: 100%;
    }
    
    .news-item {
        height: 80px;
        padding: 0 10px;
        width: 100%;
    }
    
    .news-item-content {
        width: calc(100% - 20px);
    }
    
    .news-item-title {
        font-size: 0.85rem;
    }
    
    .news-item-desc {
        font-size: 0.7rem;
    }
    
    .site-footer {
        height: 40px;
        flex-direction: row;
        gap: 10px;
        padding: 5px 10px;
        font-size: 0.7rem;
    }
}
