/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: url('foto/1.png') center center/cover no-repeat fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}


/* Frame Background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url('foto/frame1.png') center center/cover no-repeat;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0 20px 20px;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.hero-content {
    z-index: 3;
    position: relative;
    padding: 30px 30px 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.hero-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: white;
}

.gradient-text {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Registration Form */
.registration-form-container {
    margin-bottom: 20px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-field {
    position: relative;
}

.form-field input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 0;
    font-size: 15px;
    color: white;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Urbanist', sans-serif;
}

.form-field input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.form-field input:focus {
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.form-field input:focus::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.join-btn {
    background: #1a1a1a;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    font-family: 'Urbanist', sans-serif;
}

.join-btn:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
}

.join-btn:active {
    transform: translateY(0);
}

.join-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.join-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Features List */
.features-list {
    margin-top: 16px;
    padding: 12px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.feature-bullet {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    margin-top: 2px;
}

.feature-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    font-family: 'Urbanist', sans-serif;
}

/* Pricing Section */
.pricing-section {
    margin-top: 12px;
    padding: 12px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 8px;
    font-family: 'Urbanist', sans-serif;
}

.pricing-offer {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0;
    font-family: 'Urbanist', sans-serif;
}

.old-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.new-price {
    color: white;
    font-weight: 700;
}

.form-message {
    margin-top: 12px;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    font-size: 14px;
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}




/* Footer */
.footer {
    display: none;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #4ecdc4;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Frame için mobil ayarları */
    body::after {
        width: 100%;
        opacity: 0.3;
    }
    
    .hero {
        text-align: center;
        padding: 20px 0 20px 10px;
    }
    
    .hero-content {
        padding: 30px 20px 20px 20px;
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(15px);
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .registration-form {
        gap: 16px;
    }
    
    .form-field input {
        padding: 14px 0;
        font-size: 15px;
    }
    
    .join-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .features-list {
        margin-top: 16px;
        padding: 12px 0;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .pricing-section {
        margin-top: 12px;
        padding: 12px 0 0 0;
    }
    
    .pricing-description,
    .pricing-offer {
        font-size: 14px;
    }
    
    
    
    .footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .form-field input {
        padding: 12px 0;
        font-size: 14px;
    }
    
    .join-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .feature-text {
        font-size: 13px;
    }
    
    .pricing-description,
    .pricing-offer {
        font-size: 13px;
    }
    
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
