/* Basit CSS Test */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 20, 147, 0.2);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ff1493;
    font-weight: 700;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

.logo:hover {
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.logo-text {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff1493;
    background: rgba(255, 20, 147, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #ff1493;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

/* User Profile Styles */
.user-profile {
    position: relative;
    display: inline-block;
}

.profile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.profile-icon {
    font-size: 1.1rem;
}

.profile-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.profile-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 9999;
    margin-top: 10px;
    border: 1px solid rgba(255, 107, 157, 0.2);
    display: none;
}

.profile-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(255, 107, 157, 0.1);
    color: #ff6b9d;
}

.dropdown-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ff1493;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: #ff69b4;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #ff69b4, #ff1493, #ffc0cb, #ffb6c1);
    min-height: 100vh;
    padding: 90px 0 20px 0;
    margin: 0;
}

.page-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 105, 180, 0.3);
    text-align: center;
    margin-bottom: 0;
}

.title {
    font-size: 2.5rem;
    color: #ff1493;
    margin-bottom: 20px;
    font-weight: bold;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.url-info {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.url-info p {
    margin: 5px 0;
    color: #333;
}

.url-info code {
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    color: #e91e63;
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d, #868e96);
}

/* Form Stilleri */
.setup-form, .password-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff1493;
}

/* Alert Mesajları */
.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Sürpriz İçeriği */
.surprise-content {
    text-align: center;
}

.surprise-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #ff1493;
}

.photo-container {
    margin-bottom: 20px;
}

.surprise-photo {
    max-width: 100%;
    max-height: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.message-container {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.message-container h3 {
    margin-bottom: 10px;
}

.message-text {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    text-align: left;
}

.action-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.back-link {
    text-align: center;
    margin-top: 20px;
}

/* Yeni Bölümler */
.hero-section {
    text-align: center;
    margin-bottom: 40px;
}

.features-section {
    margin: 50px 0;
}

.how-to-section {
    margin: 50px 0;
    background: rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 20, 147, 0.2);
}

.about-section {
    margin: 50px 0;
    background: rgba(255, 255, 255, 0.7);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 20, 147, 0.2);
}

.footer-info {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 20, 147, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 20, 147, 0.2);
}

.hero-description {
    background: rgba(255, 20, 147, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    border: 1px solid rgba(255, 20, 147, 0.2);
}

.hero-description p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.section-title {
    font-size: 1.8rem;
    color: #ff1493;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.features-section {
    margin: 50px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 20, 147, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #ff1493;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.how-to-section {
    margin: 50px 0;
    background: rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 20, 147, 0.2);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-number {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    margin: 0 auto;
}

.step-content {
    text-align: center;
    flex: 1;
}

.step-content h3 {
    color: #ff1493;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.footer-info {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 20, 147, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 20, 147, 0.2);
}

.footer-text {
    color: #ff1493;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* Biz Kimiz Bölümü */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stat {
    text-align: center;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 20, 147, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff1493;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 80px 10px 10px 10px;
    }
    
    .page-container {
        padding: 0 10px;
    }
    
    .header-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border-top: 2px solid rgba(255, 20, 147, 0.2);
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-link {
        padding: 15px 20px;
        text-align: center;
        border-radius: 10px;
        margin: 5px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-content {
        padding: 25px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        justify-content: center;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .buttons-container {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        width: 100%;
        max-width: 200px;
    }
    
    .hero-description {
        padding: 15px;
    }
    
    .how-to-section,
    .about-section {
        padding: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .stat {
        padding: 15px;
        flex: 1;
        margin: 0 5px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat {
        margin: 0;
    }
}

/* Multiple Photos */
.photos-container {
    margin: 20px 0;
}

.photos-container h3 {
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.2rem;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.photo-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.05);
}

.photo-item .surprise-photo {
    width: 100%;
    height: 250px;
    object-fit: contain;
    cursor: pointer;
    transition: opacity 0.3s ease;
    background: #f8f9fa;
    border-radius: 8px;
}

.photo-item .surprise-photo:hover {
    opacity: 0.9;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    max-width: 80%;
    max-height: 80%;
    text-align: center;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    max-height: 90vh;
    object-fit: contain;
    background: #000;
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    color: #ccc;
}

/* Heart Animation for Surprise - Full Screen */
.heart-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.heart-animation .heart {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0;
    animation: heartFloat 4s infinite ease-in-out;
}

.heart-animation .heart:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.heart-animation .heart:nth-child(2) {
    left: 85%;
    top: 30%;
    animation-delay: 0.8s;
}

.heart-animation .heart:nth-child(3) {
    left: 15%;
    top: 70%;
    animation-delay: 1.6s;
}

.heart-animation .heart:nth-child(4) {
    left: 80%;
    top: 80%;
    animation-delay: 2.4s;
}

.heart-animation .heart:nth-child(5) {
    left: 50%;
    top: 10%;
    animation-delay: 3.2s;
}

@keyframes heartFloat {
    0% {
        opacity: 0;
        transform: scale(0) translateY(0) rotate(0deg);
    }
    15% {
        opacity: 1;
        transform: scale(1.3) translateY(-20px) rotate(10deg);
    }
    30% {
        opacity: 1;
        transform: scale(1) translateY(-40px) rotate(-5deg);
    }
    45% {
        opacity: 1;
        transform: scale(1.1) translateY(-60px) rotate(8deg);
    }
    60% {
        opacity: 1;
        transform: scale(0.9) translateY(-80px) rotate(-3deg);
    }
    75% {
        opacity: 0.8;
        transform: scale(0.8) translateY(-100px) rotate(5deg);
    }
    90% {
        opacity: 0.4;
        transform: scale(0.6) translateY(-120px) rotate(-2deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) translateY(-140px) rotate(0deg);
    }
}

/* Password Hint */
.password-hint {
    margin-top: 8px;
    padding: 8px 12px;
    background: #e3f2fd;
    border-left: 3px solid #2196f3;
    border-radius: 4px;
}

.password-hint small {
    color: #1565c0;
    font-weight: 500;
}

/* Welcome Message */
.welcome-message {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

.welcome-message p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive for photos */
@media (max-width: 768px) {
    .photos-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
    }
    
    .photo-item .surprise-photo {
        height: 200px;
    }
    
    .modal-content {
        margin: 5% auto;
        max-width: 95%;
        max-height: 90%;
    }
    
    .modal-content img {
        max-height: 85vh;
    }
}

@media (max-width: 480px) {
    .photos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .photo-item .surprise-photo {
        height: 180px;
    }
    
    .modal-content {
        margin: 2% auto;
        max-width: 98%;
    }
    
    .modal-content img {
        max-height: 90vh;
    }
}