* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000000;
    color: white;
    min-height: 100vh;
}

:root {
    --gradient-purple: linear-gradient(45deg, #9c27b0, #673ab7);
    --gradient-blue: linear-gradient(45deg, #2196f3, #03a9f4);
    --gradient-green: linear-gradient(45deg, #4caf50, #8bc34a);
    --gradient-orange: linear-gradient(45deg, #ff9800, #ff5722);
    --gradient-pink: linear-gradient(45deg, #e91e63, #f48fb1);
    --gradient-teal: linear-gradient(45deg, #009688, #4db6ac);
}

.navbar {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(156, 39, 176, 0.1);
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.user-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-email {
    padding: 0.5rem 1rem;
    background: var(--gradient-blue);
    border-radius: 6px;
    font-size: 0.9rem;
    color: #ffffff;
    display: none;
}

.logout-button {
    padding: 0.5rem 1rem;
    background-color: rgba(255, 0, 0, 0.8);
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.logout-button:hover {
    background-color: #cc0000;
}

.main-container {
    display: flex;
    padding: 2rem;
    gap: 2rem;
    max-width: 1500px;
    margin: 0 auto;
    height: calc(100vh - 4rem);
}

.left-section {
    flex: 1;
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-content {
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 6.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #9c27b0, #2196f3, #4caf50, #ff9800);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    letter-spacing: -1px;
    animation: gradient-shift 3s ease infinite;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    color: #94a3b8;
    margin-top: 1rem;
}

.feature-grid {
    display: flex;
    gap: 3rem;
    padding-bottom: 5rem;
    width: 82%;
    transform: scale(0.75);
    transform-origin: left-bottom 85px;
    margin-left: 1rem;
}

.feature-card {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    border-radius: 299px;
    text-align: center;
    flex: 1;
    border: 1px solid rgba(156, 39, 176, 0.2);
    transition: all 0.3s ease;
}

.feature-card:nth-child(1):hover {
    border-color: rgba(156, 39, 176, 0.5);
    background: linear-gradient(145deg, rgba(156, 39, 176, 0.1), rgba(0, 0, 0, 0.1));
}

.feature-card:nth-child(2):hover {
    border-color: rgba(33, 150, 243, 0.5);
    background: linear-gradient(145deg, rgba(33, 150, 243, 0.1), rgba(0, 0, 0, 0.1));
}

.feature-card:nth-child(3):hover {
    border-color: rgba(76, 175, 80, 0.5);
    background: linear-gradient(145deg, rgba(76, 175, 80, 0.1), rgba(0, 0, 0, 0.1));
}

.feature-icon {
    font-size: 2.4rem;
    margin-bottom: 0.2rem;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    color: #fff;
}

.feature-card p {
    font-size: 0.9rem;
    color: #cccccc;
}

.right-section {
    flex: 0.4;
    background-color: transparent;
    border-radius: 12px;
    padding: 1px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid rgba(156, 39, 176, 0.1);
    min-height: 200px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.right-section.expanded {
    background-color: rgba(20, 20, 20, 0.9);
    min-height: 600px;
    padding-top: 1rem;
    transition: all 0.3s ease;
    justify-content: flex-start;
}

.upload-area {
    width: 90%;
    max-width: 500px;
    aspect-ratio: 16/9;
    border: 2px dashed rgba(156, 39, 176, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: linear-gradient(145deg, rgba(156, 39, 176, 0.05), rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.upload-area:hover {
    border-color: rgba(156, 39, 176, 0.5);
    background: linear-gradient(145deg, rgba(156, 39, 176, 0.1), rgba(0, 0, 0, 0.15));
}

.upload-area.compact {
    margin-top: 0;
    margin-bottom: 1rem;
    padding: 1rem;
    aspect-ratio: auto;
    height: auto;
}

.upload-area p:first-of-type {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.upload-area p:last-of-type {
    color: #94a3b8;
    font-size: 0.9rem;
}

#preview {
    width: 90%;
    max-width: 500px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#imagePreview {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 1rem;
}

#audioContainer {
    width: 100%;
    display: none;
}

.audio-player {
    background-color: rgba(20, 20, 20, 0.9);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.audio-player h3 {
    margin-bottom: 1rem;
    color: #94a3b8;
}

audio {
    width: 100%;
    margin-bottom: 1rem;
}

.button-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    text-align: center;
    position: relative;
}

.download-button {
    flex: 1;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s;
    
    /* "Photos to Music" başlığındaki animasyonun aynısı butona uyarlandı */
    background: linear-gradient(45deg, #9c27b0, #2196f3, #4caf50, #ff9800, #e91e63, #9c27b0);
    background-size: 400% 400%;
    animation: gradient-shift 4s ease infinite;
}

.download-button:hover {
    transform: translateY(-2px); /* Mevcut hover efektini koruyoruz */
}

#loading {
    display: none;
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    text-align: center;
}

#loading p {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

/* Animasyonlu noktaları oluşturan stil */
#loading p .dots::after {
    display: inline-block;
    animation: dots 1.4s infinite;
    content: '';
    width: 0; /* Genişliği animasyon belirleyecek */
    letter-spacing: 5px; /* Noktalar arası boşluk */
}

.progress-bar-container {
    position: relative; /* İçindeki animasyonlu bar için gerekli */
    width: 100%;
    height: 10px; /* Daha ince ve modern bir görünüm */
    background: #1a1a1a;
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.1);
}

#progressBar {
    position: absolute;
    top: 0;
    bottom: 0;
    width: auto; /* Genişliği animasyon belirleyecek */
    background: var(--gradient-purple);
    border-radius: 15px;
    animation: indeterminate-progress 2s infinite ease-in-out;
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(45deg, #1DB954, #405DE6);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
    position: relative;
}

.coming-soon-badge:hover {
    transform: translateY(-2px);
}

.coming-soon-tooltip {
    display: none;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(156, 39, 176, 0.2);
    padding: 1rem;
    border-radius: 8px;
    width: 250px;
    text-align: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.coming-soon-badge:hover .coming-soon-tooltip {
    display: block;
}

.coming-soon-tooltip div:first-child {
    margin-bottom: 0.5rem;
}

.coming-soon-tooltip div:nth-child(2) {
    font-size: 0.9rem;
    color: #94a3b8;
}

.coming-soon-tooltip .icon-container {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.coming-soon-tooltip .icon-container span {
    font-size: 1.2rem;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 0.5rem;
    text-align: center;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: #333b46;
    font-size: 0.9rem;
}

.footer-content a {
    color: #333b46;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #6c5ce7
}

/* Modal Genel Stilleri */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    overflow-y: auto;
}

.modal-content {
    margin: 50px auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    background: linear-gradient(145deg, #1a1a1a, #111111);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(156, 39, 176, 0.1);
}

#authTabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.auth-tab {
    flex: 1;
    padding: 1rem;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#loginTab {
    background: linear-gradient(145deg, rgba(156, 39, 176, 0.1), rgba(0, 0, 0, 0.1));
    border: 1px solid rgba(156, 39, 176, 0.1);
}

#registerTab {
    background: linear-gradient(145deg, rgba(33, 150, 243, 0.1), rgba(0, 0, 0, 0.1));
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.auth-tab.active {
    background: linear-gradient(45deg, #9c27b0, #2196f3) !important;
    border-color: transparent !important;
}

.auth-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

#loginForm h2 {
    background-image: linear-gradient(45deg, #9c27b0, #2196f3);
}

#registerForm h2 {
    background-image: linear-gradient(45deg, #2196f3, #4caf50);
}

.auth-form-header p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.error-message {
    color: #ff5252;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: none;
}

#emailModal input[type="email"],
#emailModal input[type="password"],
#emailModal input[type="text"] {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

#loginForm input {
    background: linear-gradient(145deg, rgba(156, 39, 176, 0.05), rgba(0, 0, 0, 0.1));
    border: 1px solid rgba(156, 39, 176, 0.1);
}

#registerForm input, #verificationSection input {
    background: linear-gradient(145deg, rgba(33, 150, 243, 0.05), rgba(0, 0, 0, 0.1));
    border: 1px solid rgba(33, 150, 243, 0.1);
}

#emailModal button {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

#loginForm button {
    background: linear-gradient(45deg, #9c27b0, #2196f3);
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

#registerForm button, #verificationSection button {
    background: linear-gradient(45deg, #2196f3, #4caf50);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    margin-bottom: 1rem;
}

#verificationSection {
    display: none;
}

#registerPassword {
    margin-bottom: 1.5rem;
}

/* Payment Modal */
#paymentModal .modal-content {
    max-width: 900px;
}

.modal-close-button {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#premiumInfo {
    margin-bottom: 2rem;
    animation: fadeIn 0.5s ease;
}

#premiumInfo .auth-form-header h2 {
    background-image: linear-gradient(45deg, #9c27b0, #2196f3, #4caf50, #ff9800);
}

#premiumInfo .auth-form-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.premium-plan {
    background: linear-gradient(145deg, rgba(156, 39, 176, 0.05), rgba(0, 0, 0, 0.1));
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(156, 39, 176, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.premium-plan:hover {
    transform: translateY(-5px);
    border-color: rgba(156, 39, 176, 0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.premium-plan.selected {
    border: 2px solid #9c27b0;
    background: linear-gradient(145deg, rgba(156, 39, 176, 0.1), rgba(0, 0, 0, 0.2));
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    color: #fff;
}

.plan-header span {
    font-size: 2rem;
    color: #9c27b0;
}

.premium-plan ul {
    list-style: none;
    padding: 0;
}

.premium-plan li {
    margin-bottom: 0.5rem;
    color: #94a3b8;
}

.continue-button {
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    border: none;
    background: linear-gradient(45deg, #9c27b0, #2196f3);
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

#payment-container {
    display: none;
    height: calc(100% - 2rem);
    margin: -1rem;
    animation: slideUp 0.5s ease;
}


/* Diğer Modallar */
#premiumStatusModal .modal-content,
#privacyPolicyModal .modal-content,
#contactModal .modal-content {
    animation: slideIn 0.3s ease;
    position: relative;
}

#premiumStatusModal .modal-content {
    max-width: 400px;
    margin: 10% auto;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
}

#privacyPolicyModal .modal-content,
#contactModal .modal-content {
    max-width: 600px;
    margin: 5% auto;
    background: transparent;
    padding: 0;
}

.policy-contact-wrapper {
    padding: 2rem;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.policy-contact-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #9c27b0, #2196f3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.policy-contact-wrapper .policy-content {
    color: #94a3b8;
    line-height: 1.6;
}

.policy-content p {
    margin-bottom: 1rem;
}

.policy-content h3 {
    color: #fff;
    margin: 1.5rem 0 1rem;
}

.policy-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.contact-content {
    color: #94a3b8;
    line-height: 1.6;
    text-align: center;
}

.contact-content p {
    margin-bottom: 1.5rem;
}

.contact-email-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #9c27b0, #2196f3);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.contact-response-time {
    font-size: 0.9rem;
    color: #64748b;
}

.modal-close-button-bottom {
    width: 100%;
    padding: 0.8rem;
    border-radius: 12px;
    border: none;
    background: linear-gradient(45deg, #9c27b0, #2196f3);
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

/* Account Dropdown */
.account-dropdown {
    position: relative;
    display: none;
}

.account-button {
    padding: 0.5rem 1rem;
    background: var(--gradient-purple);
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.account-button span {
    font-size: 0.8rem;
}

.account-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.5rem;
    background-color: #111111;
    border: 1px solid rgba(156, 39, 176, 0.1);
    border-radius: 6px;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

.dropdown-content.show {
    display: block;
}

.dropdown-content button {
    width: 100%;
    padding: 0.8rem 1rem;
    text-align: left;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.dropdown-content button:first-of-type {
    border-bottom: 1px solid rgba(156, 39, 176, 0.1);
}

.dropdown-content button:hover {
    background: var(--gradient-purple);
}

.dropdown-content button span {
    font-size: 1.2rem;
}


/* YENİ EKLENDİ: Account Info Modal Stilleri */
#infoModal .auth-form-header h2 {
    background-image: linear-gradient(45deg, #03a9f4, #4caf50);
}

.info-content {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(156, 39, 176, 0.1);
}

.info-content p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    font-size: 1rem;
    color: #cbd5e1; /* A lighter gray */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}



.info-content p:last-child {
    border-bottom: none;
}

.info-content strong {
    font-weight: 600;
    color: #fff;
}

/* YENİ EKLENDİ: Kalan Kullanım Hakkı Göstergesi Stili */
.credits-badge {
    padding: 0.5rem 1rem;
    background: var(--gradient-green); /* Yeşil tonu */
    border-radius: 6px;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    display: none; /* Giriş yapılana kadar gizli */
    transition: all 0.3s ease;
}

/* YENİ: Flash Mesaj Stilleri */
.flash-messages-container {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flash-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: fadeInDown 0.5s ease;
}

.flash-success {
    background: linear-gradient(45deg, #4caf50, #2e7d32);
}

.flash-error {
    background: linear-gradient(45deg, #f44336, #c62828);
}


.flash-message.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}


/* YENİ: Form içi linkler için stil */

.form-link {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-link:hover {
    color: #fff;
}

/* YENİ: Şifre sıfırlama formu için stiller eklendi */
#resetPasswordForm input {
    background: linear-gradient(145deg, rgba(255, 152, 0, 0.05), rgba(0, 0, 0, 0.1));
    border: 1px solid rgba(255, 152, 0, 0.1);
}

#registerForm button, #verificationSection button {
    background: linear-gradient(45deg, #2196f3, #4caf50);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    margin-bottom: 1rem;
}

#resetPasswordForm button {
    background: linear-gradient(45deg, #2196f3, #4caf50);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    margin-bottom: 1rem;
}



/* YENİ: Özel Bildirim Penceresi Stilleri */
.custom-alert-content {
    max-width: 420px; /* Daha yatay ve kompakt bir görünüm */
    text-align: center;
    padding: 2rem;
    border-radius: 16px; /* Kenarları daha yumuşak yapıyoruz */
}

.custom-alert-icon {
    font-size: 2.5rem; /* İkonu biraz daha ayarlıyoruz */
    margin: 0 auto 1.5rem auto; /* İkonu ortalayıp alt boşluk veriyoruz */
    width: 70px;
    height: 70px;
    border-radius: 50%; /* İkon arka planını yuvarlak yapıyoruz */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    /* RENGARENK ANİMASYON */
    background: linear-gradient(45deg, #9c27b0, #2196f3, #4caf50, #ff9800, #e91e63, #9c27b0);
    background-size: 400% 400%;
    animation: gradient-shift 4s ease infinite;
}

#customAlertMessage {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #E2E8F0;
    margin-bottom: 2rem;
}

.custom-alert-button {
    width: 100%;
    padding: 0.9rem; /* Butonu biraz daha dolgun yapıyoruz */
    border-radius: 10px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.2s ease;
    /* RENGARENK ANİMASYON */
    background: linear-gradient(45deg, #9c27b0, #2196f3, #4caf50, #ff9800, #e91e63, #9c27b0);
    background-size: 400% 400%;
    animation: gradient-shift 4s ease infinite;
}

.custom-alert-button:hover {
    transform: scale(1.03);
}

/* Bildirim türüne göre renkler */
.alert-type-success .custom-alert-content {
    border-top-color: #4caf50;
}
.alert-type-success .custom-alert-button {
    background: var(--gradient-green);
}

.alert-type-error .custom-alert-content {
    border-top-color: #e91e63;
}
.alert-type-error .custom-alert-button {
    background: linear-gradient(45deg, #e91e63, #c2185b);
}

/* Varsayılan (info) türü */
.alert-type-info .custom-alert-content {
    border-top-color: #2196f3;
}
.alert-type-info .custom-alert-button {
    background: var(--gradient-blue);
}


.or-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #475569;
    margin: 1.5rem 0;
}
.or-divider::before, .or-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #334155;
}
.or-divider span {
    padding: 0 1rem;
}

.google-signin-button {
    background-color: #fff !important;
    color: #334155 !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.google-signin-button:hover {
    background-color: #F8FAFC !important;
}


/* YENİ: Bilgi ve Şifre Değiştirme Formu Arasındaki Ayırıcı */
.form-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

/* YENİ: Info Modalı içindeki form için genel stil */
.info-form h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    text-align: left;
}

.info-form input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, rgba(33, 150, 243, 0.05), rgba(0, 0, 0, 0.1));
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.info-form button {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: var(--gradient-blue);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

/* YENİ: Gizlilik ve İletişim Pencereleri için Genel Stiller */
.policy-contact-wrapper {
    padding: 2rem;
    background: linear-gradient(145deg, #1a1a1a, #222222);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border: 1px solid rgba(156, 39, 176, 0.1);
    max-width: 600px;
    margin: 5% auto;
}

.policy-contact-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    text-align: center;
}

.policy-content {
    color: #94a3b8;
    line-height: 1.7;
    text-align: left;
}

.policy-content p, .policy-content ul {
    margin-bottom: 1rem;
}

.policy-content h3 {
    color: #fff;
    margin: 1.5rem 0 1rem;
    border-bottom: 1px solid rgba(156, 39, 176, 0.2);
    padding-bottom: 0.5rem;
}

.policy-content ul {
    margin-left: 1.5rem;
}

.contact-content {
    color: #94a3b8;
    line-height: 1.6;
    text-align: center;
}

.contact-content p {
    margin-bottom: 1.5rem;
}

.contact-email-box {
    display: flex;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(156, 39, 176, 0.2);
}

#contactEmailInput {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    background-color: #111;
    border: none;
    color: #fff;
    font-size: 1rem;
}

#copyEmailBtn {
    padding: 0.8rem;
    background-color: #9c27b0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

#copyEmailBtn:hover {
    background-color: #7b1fa2;
}

#copyEmailBtn svg {
    color: white;
}

.contact-email-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-blue);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}
.contact-email-link:hover {
    transform: translateY(-2px);
}

.contact-response-time {
    font-size: 0.9rem;
    color: #64748b;
}




/* Animasyonlar ve Diğerleri */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}


@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* İlerleme çubuğunun soldan sağa sürekli hareket etmesini sağlayan animasyon */
@keyframes indeterminate-progress {
    0% {
        left: -50%;
        right: 100%;
    }
    60% {
        left: 100%;
        right: -90%;
    }
    100% {
        left: 100%;
        right: -90%;
    }
}

/* Yükleme metninin sonundaki noktaları canlandıran animasyon */
@keyframes dots {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
    100% { content: ''; }
}


/* Medya Sorguları */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .logo img {
        height: 35px;
        margin-bottom: 0.5rem;
    }
    .main-container {
        flex-direction: column;
        height: auto;
    }
    .left-section {
        padding-top: 1rem;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    
    .feature-grid {
        display: flex;
        gap: 3rem;
        padding-bottom: 5rem;
        width: 87%;
        transform: scale(0.89); /* <-- Büyütmek için anahtar burası! */
        transform-origin: left-bottom 85px;
        margin-left: 1rem;
    }


    .plan-grid {
        grid-template-columns: 1fr;
    }
    .modal-content {
        margin: 10% auto;
        max-height: 80vh;
        overflow-y: auto;
        width: 95% !important;
        padding: 1.5rem !important;
    }
    
    #payment-container {
        margin: -1rem -1.5rem !important;
    }
}
