/* Global Styles */
:root {
    --primary-color: #FFD700;
    --secondary-color: #2C2C2C;
    --accent-color: #E31E24;
    --dark-color: #111111;
    --light-color: #F7F9FC;
    --success-color: #2ECC71;
    --warning-color: #F1C40F;
    --danger-color: #E74C3C;
    --text-color: #34495E;
    --text-light: #FFFFFF;
    --text-dark: #1A1A1A;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-color);
    position: relative;
    overflow-x: hidden;
    padding-right: 0 !important;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100vw;
}

/* Desktop Navbar */
.navbar {
    background-color: var(--secondary-color);
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-logo {
    height: 80px;
    width: auto;
    padding: 0.5rem 0;
}

.navbar .nav-item {
    margin: 0;
    position: relative;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 1rem !important;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0;
}

/* Hover ve active durumları için modern efekt */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(255, 215, 0, 0.1);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(255, 215, 0, 0.15);
}

/* Scroll durumunda navbar değişimi için */
.navbar.scrolled {
    background-color: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link {
    color: var(--primary-color) !important;
}

.navbar.scrolled .nav-link:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.navbar.scrolled .nav-link.active {
    background-color: rgba(255, 215, 0, 0.15);
}

/* Mobil menü butonu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.navbar-toggler-icon::before {
    content: '\f0c9';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.5rem;
}

/* Mobil Navbar */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--secondary-color);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.mobile-brand {
    display: flex;
    align-items: center;
}

.mobile-brand img {
    height: 40px;
    width: auto;
}

.mobile-menu-btn {
    border: none;
    background: none;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-left: auto;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

/* Mobil menü açıldığında body'nin kaymasını engellemek için */
body.menu-open {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-right: 0 !important;
}

/* Mobil menü wrapper */
.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: 2000;
    transition: 0.3s ease-in-out;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 0 !important;
}

.mobile-menu-wrapper.active {
    left: 0;
}

/* Mobil menü içeriği */
.mobile-menu-content {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

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

.mobile-menu-logo {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 2.5rem;
    padding: 0;
    line-height: 1;
    cursor: pointer;
}

.mobile-menu-nav {
    flex: 1;
    padding: 30px 0;
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav ul li {
    margin-bottom: 15px;
}

.mobile-menu-nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 10px 0;
    transition: 0.3s;
}

.mobile-menu-nav ul li a:hover,
.mobile-menu-nav ul li a.active {
    padding-left: 10px;
    background-color: rgba(255, 215, 0, 0.1);
}

.mobile-menu-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-menu-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Body scroll kontrolü */
body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: var(--primary-color);
    position: relative;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 80%;
    background: url('bg.png') no-repeat center;
    background-size: contain;
    opacity: 0.15;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, var(--primary-color) 0.5px, transparent 1px),
        radial-gradient(circle at 80% 80%, var(--secondary-color) 0.5px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    opacity: 0.1;
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.text-gradient {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 500px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pulse-button {
    position: relative;
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    border: none;
    font-weight: 600;
}

.pulse-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--secondary-color);
    border-radius: inherit;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    opacity: 0.7;
    margin-top: 0.5rem;
}

.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* News Grid */
.news-grid {
    
    padding: 80px 0;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.news-img {
    position: relative;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-date {
    color: var(--text-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-category {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.news-content p {
    color: var(--text-color);
    margin-bottom: 1.2rem;
    opacity: 0.8;
}

.news-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.news-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header .section-badge {
    background: rgba(255, 215, 0, 0.1);
    color: var(--secondary-color);
}

.section-header .section-title {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .news-grid {
        padding: 40px 0;
    }
    
    .news-card {
        margin-bottom: 1.5rem;
    }
}

/* Enhanced Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding-top: 80px;
}

.footer-top {
    background-color: #222;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-app-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    color: var(--secondary-color);
}

.footer-app-btn i {
    font-size: 1.8rem;
}

.footer-app-btn span {
    font-size: 0.8rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.newsletter-form {
    position: relative;
    margin-top: 1.5rem;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #fff;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 60px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Mobile App Section */
.mobile-app {
    background-color: var(--light-color);
}

.app-stores {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--dark-color);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: white;
}

.app-store-btn i {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-text span {
    font-size: 0.8rem;
    opacity: 0.8;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Current Show için DJ resmi */
.current-show img {
    background: url('https://image.pixellab.com.tr/via/400/400') center/cover;
    border-radius: 50%;
    width: 200px;
    height: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .app-buttons {
        margin-top: 1rem;
    }
    
    .footer-widget {
        margin-bottom: 2rem;
    }
    
    .app-stores {
        justify-content: center;
    }
    
    .app-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 100px 0;
        min-height: auto;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 1.5rem;
        justify-content: space-between;
    }

    .stat-number {
        font-size: 1.5rem;
    }

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

.navbar-brand {
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--primary-color) !important;
}

.nav-link:hover {
    color: #FFF !important;
}

.btn-outline-light {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline-light:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Scroll kontrolü için */
html {
    overflow-y: scroll;
}

html.menu-open,
body.menu-open {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Overlay arka plan */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

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

/* App Download Section */
.app-download-section {
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.app-download-wrapper {
    padding: 100px 0;
    position: relative;
}

.app-download-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: var(--primary-color);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.1;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.app-download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    color: var(--secondary-color);
    background-color: var(--primary-color);
}

.store-button i {
    font-size: 2rem;
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.button-text span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.button-text strong {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.feature-card {
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .app-download-wrapper {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .store-button {
        width: 100%;
        justify-content: center;
    }
    
    .button-text {
        align-items: center;
    }
}

/* App Mockup Styles */
.app-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.app-mockup-img {
    max-width: 300px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
    animation: floatAnimation 3s ease-in-out infinite;
}

.app-mockup-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    filter: blur(60px);
    opacity: 0.3;
    border-radius: 50%;
    z-index: 1;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 991px) {
    .app-mockup {
        margin-top: 40px;
    }
    
    .app-mockup-img {
        max-width: 250px;
    }
}

/* Player Toggle Button ve Player Gizleme */
.player-toggle {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.player-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.player-toggle i {
    transition: transform 0.3s ease;
}

.player-hidden .player-toggle i {
    transform: rotate(180deg);
}

/* Audio Player Gizleme */
.audio-player {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}

.player-hidden .audio-player {
    transform: translateY(100%);
    opacity: 0;
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
    .hero-visual {
        margin-top: 2rem;
    }
    
    .hero-bg-image {
        max-width: 80%;
    }
}

/* Newsletter Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 400px;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(0);
    animation: modalSlideIn 0.3s ease;
}

.newsletter-message {
    text-align: center;
    padding: 1rem 0 2rem;
}

.newsletter-message .fas {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.newsletter-message .fa-check-circle {
    color: #28a745;
}

.newsletter-message .fa-exclamation-circle {
    color: #dc3545;
}

.newsletter-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.newsletter-message p {
    color: #666;
    margin: 0;
}

.modal-close {
    width: 100%;
    padding: 0.8rem;
    border: none;
    background: #007bff;
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: #0056b3;
}

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

/* Modal Responsive */
@media (max-width: 576px) {
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .newsletter-message .fas {
        font-size: 2.5rem;
    }
    
    .newsletter-message h3 {
        font-size: 1.25rem;
    }
} 