/* ============ TEMEL STİLLER ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0f172a;
    color: #f8fafc;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: #3b82f6;
}

/* ============ NAVIGATION BAR ============ */
.navbar {
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid #1e293b;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.logo i {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-links a:hover {
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.1);
}

.login-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s;
}

.login-btn:hover {
    transform: translateY(-2px);
}

/* ============ HERO SECTION ============ */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 5px;
}

.stat-item p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.hero-image {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.chart-container {
    height: 300px;
    width: 100%;
}

/* ============ SERVICES SECTION ============ */
.services {
    padding: 100px 0;
    background-color: #1e293b;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #0f172a;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #334155;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #3b82f6;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #94a3b8;
}

/* ============ ABOUT SECTION ============ */
.about {
    padding: 100px 0;
    background-color: #0f172a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about-description {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.8;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.mission, .vision {
    background: #1e293b;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #3b82f6;
}

.mission-icon, .vision-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.mission-icon i, .vision-icon i {
    font-size: 1.3rem;
    color: white;
}

.mission h3, .vision h3 {
    color: #f8fafc;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.mission p, .vision p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.values h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #f8fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.value-item {
    background: #1e293b;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 1.8rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

.value-item h4 {
    color: #f8fafc;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.value-item p {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* About Stats */
.about-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #334155;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 10px;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
}

.timeline {
    background: #1e293b;
    padding: 30px;
    border-radius: 15px;
}

.timeline h3 {
    color: #f8fafc;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #334155;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.timeline-year {
    min-width: 70px;
    background: #3b82f6;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    margin-right: 20px;
}

.timeline-content h4 {
    color: #f8fafc;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* ============ TEAM SECTION ============ */
.team {
    padding: 100px 0;
    background-color: #1e293b;
}

.section-subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background: #0f172a;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #334155;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #3b82f6;
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    color: #f8fafc;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.position {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.bio {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
}

/* ============ FOOTER ============ */
.footer {
    background-color: #0f172a;
    padding: 60px 0;
    border-top: 1px solid #334155;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3, .footer-section h4 {
    color: #3b82f6;
    margin-bottom: 20px;
}

.footer-section p, .footer-section a {
    color: #94a3b8;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3b82f6;
}

.footer-section i {
    margin-right: 10px;
    color: #3b82f6;
}

/* ============ AUTH PAGES ============ */
.auth-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.auth-card {
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 600px;
    border: 1px solid #334155;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.auth-logo {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo i {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

.auth-logo h2 {
    color: #3b82f6;
    margin-bottom: 10px;
}

.auth-logo p {
    color: #94a3b8;
}

.auth-form h3 {
    color: #f8fafc;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group label i {
    color: #3b82f6;
}

.form-group input {
    width: 100%;
    padding: 14px;
    background: #0f172a;
    border: 1px solid #475569;
    border-radius: 10px;
    color: #f8fafc;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-group input::placeholder {
    color: #64748b;
}

.hint {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Password Strength */
.password-strength {
    margin-top: 10px;
}

.strength-bar {
    height: 4px;
    background: #475569;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 20%;
    background: #ef4444;
    border-radius: 2px;
    transition: width 0.3s, background 0.3s;
}

.strength-text {
    font-size: 0.8rem;
    color: #94a3b8;
}

.match-status {
    font-size: 0.8rem;
    margin-top: 5px;
    height: 16px;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: #3b82f6;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-group a {
    color: #3b82f6;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    margin-top: 10px;
}

/* Auth Links */
.auth-link {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

.auth-link a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.auth-link a:hover {
    text-decoration: underline;
}

.back-home {
    margin-top: 30px;
    text-align: center;
}

.back-home a {
    color: #94a3b8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.back-home a:hover {
    color: #3b82f6;
}

/* Demo Info */
.demo-info {
    margin-top: 30px;
    padding: 15px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid #3b82f6;
    border-radius: 10px;
    max-width: 600px;
}

.demo-info h4 {
    color: #3b82f6;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-info p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============ SUCCESS/ERROR MESSAGES ============ */
.success-message {
    animation: slideDown 0.5s ease;
}

.success-content {
    color: #f8fafc;
}

.success-icon {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 15px;
}

.success-content h3 {
    color: #10b981;
    margin-bottom: 10px;
}

.success-content p {
    color: #cbd5e1;
    margin-bottom: 8px;
}

.error-message {
    animation: shake 0.5s ease;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Loading spinner */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============ DASHBOARD STYLES ============ */
.dashboard-container {
    padding: 120px 0 50px;
    min-height: 100vh;
    background: #0f172a;
}

/* User Menu (Giriş yapınca) */
.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    color: #f8fafc;
    font-weight: 600;
    font-size: 0.9rem;
}

.user-status {
    color: #10b981;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logout-btn {
    background: transparent;
    border: 1px solid #334155;
    color: #94a3b8;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

/* Welcome Banner */
.welcome-banner {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid #334155;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.welcome-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #f8fafc;
}

.welcome-content p {
    color: #94a3b8;
    max-width: 500px;
}

.welcome-actions {
    display: flex;
    gap: 15px;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.dashboard-card {
    background: #1e293b;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #334155;
    transition: transform 0.3s;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-header h3 {
    color: #f8fafc;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header h3 i {
    color: #3b82f6;
}

/* Profile Completion Card */
.completion-percent {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b82f6;
}

.progress-container {
    height: 8px;
    background: #334155;
    border-radius: 4px;
    margin-bottom: 25px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.missing-items h4 {
    color: #f8fafc;
    margin-bottom: 15px;
    font-size: 1rem;
}

.missing-items ul {
    list-style: none;
    margin-bottom: 25px;
}

.missing-items li {
    color: #94a3b8;
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.missing-items li i {
    font-size: 0.8rem;
}

.missing-items .fa-times-circle {
    color: #ef4444;
}

.missing-items .fa-check-circle {
    color: #10b981;
}

/* Investment Preferences */
.preferences-list {
    margin-bottom: 25px;
}

.preference-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #334155;
}

.preference-item:last-child {
    border-bottom: none;
}

.preference-label {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.preference-value {
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.9rem;
}

.preference-value.not-set {
    color: #94a3b8;
    font-style: italic;
}

/* Recent Activity */
.activity-list {
    margin-top: 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #334155;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.activity-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.activity-icon.info {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.activity-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.activity-content p {
    color: #f8fafc;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.activity-time {
    color: #94a3b8;
    font-size: 0.8rem;
}

/* Quick Actions */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.action-btn {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.action-btn:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-3px);
}

.action-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.action-btn span {
    color: #f8fafc;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Demo Alert */
.demo-alert {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid #f59e0b;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.alert-icon {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-top: 5px;
}

.alert-content h4 {
    color: #f8fafc;
    margin-bottom: 10px;
}

.alert-content p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============ PROFILE PAGE STYLES ============ */
.profile-container {
    padding: 120px 0 50px;
    min-height: 100vh;
    background: #0f172a;
}

/* Progress Section */
.profile-progress {
    background: #1e293b;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #334155;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.progress-header h1 {
    color: #f8fafc;
    font-size: 1.8rem;
}

.progress-percent {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.progress-bar-container {
    height: 10px;
    background: #334155;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-text {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Profile Form */
.profile-form {
    background: #1e293b;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #334155;
}

.form-sections {
    margin-bottom: 40px;
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #334155;
}

.section-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.section-header h2 {
    color: #f8fafc;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h2 i {
    color: #3b82f6;
}

/* Section Content */
.section-content {
    display: grid;
    gap: 25px;
}

/* Select Styling */
select {
    width: 100%;
    padding: 14px;
    background: #0f172a;
    border: 1px solid #475569;
    border-radius: 8px;
    color: #f8fafc;
    font-size: 1rem;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: #3b82f6;
}

/* Radio Groups */
.radio-group {
    display: grid;
    gap: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #0f172a;
    border: 2px solid #334155;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.radio-option:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.radio-option input[type="radio"] {
    margin-right: 15px;
    accent-color: #3b82f6;
    transform: scale(1.2);
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.radio-label i {
    font-size: 1.8rem;
    color: #3b82f6;
}

.radio-label strong {
    color: #f8fafc;
    font-size: 1rem;
}

.radio-label small {
    color: #94a3b8;
    font-size: 0.85rem;
    display: block;
    margin-top: 5px;
}

/* Leverage Options */
.leverage-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.leverage-option {
    text-align: center;
    padding: 20px;
    background: #0f172a;
    border: 2px solid #334155;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.leverage-option:hover {
    border-color: #3b82f6;
}

.leverage-option input[type="radio"] {
    display: none;
}

.leverage-option input[type="radio"]:checked + .leverage-label {
    color: #3b82f6;
}

.leverage-option input[type="radio"]:checked ~ small {
    color: #94a3b8;
}

.leverage-label {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.leverage-option small {
    color: #64748b;
    font-size: 0.8rem;
    display: block;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.checkbox-option:hover {
    border-color: #3b82f6;
}

.checkbox-option input[type="checkbox"] {
    accent-color: #3b82f6;
}

.checkbox-option i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.checkbox-option span {
    color: #f8fafc;
    font-size: 0.9rem;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top

.password-strength {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.strength-bar {
    height: 6px;
    width: 0%;
    background-color: #94a3b8;
    border-radius: 3px;
    transition: all 0.3s;
}