* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0c0c1d 0%, #151528 50%, #1a1a35 100%);
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
}

/* Subtelne animowane tło */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.05);
    animation: float 20s infinite linear;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
    background: rgba(118, 75, 162, 0.05);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(30px) rotate(240deg); }
}

/* Ekran startowy */
.start-screen {
    text-align: center;
    padding: 4rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 600px;
    line-height: 1.6;
}

.auth-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.auth-btn {
    padding: 1.3rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.auth-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

/* Formularze - BIAŁE TŁO */
.form-container {
    display: none;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    width: 90%;
    max-width: 500px;
    margin: 2rem auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #666;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.7rem;
    color: #555;
    font-weight: 600;
    font-size: 0.95rem;
}

input, select, textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
    color: #333;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

input::placeholder {
    color: #999;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 0.7rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: #555;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.back-link {
    text-align: center;
    margin-top: 2rem;
}

.back-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.back-link a:hover {
    text-decoration: underline;
}

.age-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #856404;
}

/* PANEL - LAYOUT Z BOCZNYM MENU PO PRAWEJ */
.dashboard {
    min-height: 100vh;
}

.dashboard-container {
    display: flex;
    min-height: 100vh;
}

/* Główna zawartość */
.main-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.content-header {
    margin-bottom: 2rem;
}

.content-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, #a8b1ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Boczne menu PO PRAWEJ */
.sidebar {
    width: 280px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    order: 2;
}

.sidebar-header {
    padding: 0 2rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.sidebar-logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.user-info-sidebar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar-sidebar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    color: white;
}

.user-details-sidebar {
    flex: 1;
}

.user-name-sidebar {
    font-weight: bold;
    font-size: 1rem;
}

.user-status-sidebar {
    font-size: 0.8rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.online-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
}

.nav-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: none;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-item.active {
    background: rgba(102, 126, 234, 0.2);
    color: white;
    border-right: 4px solid #667eea;
}

.nav-item i {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
}

.sidebar-footer {
    padding: 1rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.logout-btn:hover {
    background: rgba(231, 76, 60, 0.2);
}

/* Sekcja profilu */
.profile-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
}

.avatar-section {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Sekcja pomocy */
.support-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.support-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.support-contact {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

/* Styl dla weryfikacji KYC */
.kyc-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #4CAF50;
}

.kyc-info h3 {
    margin-bottom: 1rem;
    color: #4CAF50;
}

.kyc-info ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.kyc-info li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Styl dla pulpitu */
.dashboard-welcome {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-top: 2rem;
}

.dashboard-welcome h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #a8b1ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dashboard-welcome p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.feature-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.feature-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* WERYFIKACJA KONTA */
.verification-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.verification-header {
    display: block;
    margin-bottom: 1.5rem;
}

.verification-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.verification-title-row h2 {
    font-size: 1.5rem;
    flex: 1;
    min-width: 0;
}

.verification-title-row .verification-status {
    margin-left: 0;
    flex-shrink: 0;
    white-space: nowrap;
}

.verification-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-left: 1rem;
}

.status-verified {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
    border: 1px solid #FFC107;
}

.status-unverified {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid #F44336;
}

.verification-steps {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.verification-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 30px;
    height: 30px;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.step-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

.verify-now-btn {
    background: linear-gradient(135deg, #00d26a, #00b854);
    color: black;
    border: none;
    border-radius: 12px;
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.verify-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 210, 106, 0.4);
}

/* PULPIT - układ dwukolumnowy */
.pulpit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.pulpit-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pulpit-widgets {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Karty widgetów */
.widget-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.2rem 1.4rem;
    backdrop-filter: blur(10px);
}

.widget-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.widget-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.widget-link {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: background 0.2s;
}

.widget-link:hover {
    background: rgba(255, 255, 255, 0.08);
}

.widget-link-icon {
    font-size: 1.3rem;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.widget-link-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.widget-link-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.1rem;
}

.widget-btn {
    display: block;
    text-align: center;
    padding: 0.65rem 1rem;
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.35);
    border-radius: 10px;
    color: #a8b1ff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s;
}

.widget-btn:hover {
    background: rgba(102, 126, 234, 0.25);
    color: white;
}

/* Karty kroków weryfikacji */
.verif-step-card {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
}

.verif-step-num {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    color: white;
}

.verif-step-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    color: white;
}

.verif-step-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.3;
}

/* Siatka korzyści */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.6rem 0.5rem;
    font-size: 0.82rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.verification-benefits {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefits-list li:before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
}

/* Overlay dla weryfikacji */
.verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.verification-modal {
    background-color: #1c1d22;
    border-radius: 12px;
    width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 35px 35px 35px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    position: relative;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 24px;
    color: #8d8d8d;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #fff;
}

.verification-modal h2 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.verification-modal p {
    text-align: center;
    font-size: 16px;
    color: #bcbcbc;
    margin-bottom: 30px;
}

.steps {
    background-color: #23242a;
    border-radius: 10px;
    padding: 22px 24px;
    margin-bottom: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step:last-child {
    margin-bottom: 0;
}

.icon {
    width: 46px;
    height: 46px;
    background-color: #2d2e35;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.icon svg {
    width: 24px;
    height: 24px;
}

.step-text {
    flex: 1;
}

.step-desc {
    font-size: 15px;
    color: #b9b9b9;
    line-height: 1.5;
}

.info {
    font-size: 14px;
    color: #9a9a9a;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 28px;
}

.info a {
    color: #00b6ff;
    text-decoration: none;
}

.verify-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #00d26a;
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 0;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
}

.verify-btn:hover {
    background-color: #00e076;
}

.powered {
    margin-top: 28px;
    font-size: 13px;
    color: #7a7a7a;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.powered svg {
    height: 14px;
    width: auto;
}

/* FORMULARZ EDYCJI PROFILU */
.profile-edit-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
}

.profile-edit-form .form-group {
    margin-bottom: 1rem;
}

.profile-edit-form label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.profile-edit-form input,
.profile-edit-form select,
.profile-edit-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    width: 100%;
    font-size: 0.9rem;
}

.profile-edit-form select option {
    background: #1a1a35;
    color: white;
}

.profile-edit-form input::placeholder,
.profile-edit-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.profile-edit-form input:focus,
.profile-edit-form select:focus,
.profile-edit-form textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.3);
    outline: none;
}

.profile-edit-form .btn-submit {
    margin-top: 1rem;
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
}

/* SEKCJA "DLACZEGO WERYFIKACJA JEST WAŻNA?" */
.importance-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
    color: white;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.importance-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.importance-btn.expanded {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
}

.importance-content {
    display: none;
    margin-top: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.importance-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.importance-content ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.importance-content li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.expand-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.importance-btn.expanded .expand-icon {
    transform: rotate(180deg);
}

/* DWIE KOLUMNY DLA FORMULARZA */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* WERYFIKACJA WYMAGANA */
.verification-required {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1.5rem;
}

.verification-required h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #a8b1ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.verification-required p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.go-to-dashboard-btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.go-to-dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* MOBILE MENU - HAMBURGER */
.mobile-header {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.mobile-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hamburger-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    padding: 0 2rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.mobile-sidebar-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.mobile-sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* PLACEHOLDER DLA PUSTYCH SEKCJI */
.section-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-top: 2rem;
}

.section-placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.section-placeholder h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #a8b1ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-placeholder p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Responsywność */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .dashboard-container {
        flex-direction: column;
    }

    .sidebar {
        display: none;
    }

    .main-content {
        order: 2;
        padding: 1rem;
    }

    /* Ekran startowy na mobile */
    .start-screen {
        padding: 2rem 1.5rem;
        justify-content: center;
        gap: 0;
    }

    .logo {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .tagline {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .auth-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .auth-btn {
        width: 100%;
        min-width: unset;
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }

    .content-header h1 {
        font-size: 1.6rem;
    }

    .verification-required {
        padding: 1.5rem;
        margin-top: 1rem;
    }

    .verification-required h2 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .verification-required p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .go-to-dashboard-btn {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1rem;
        white-space: normal;
    }

    .mobile-header {
        display: block;
    }

    .pulpit-grid {
        grid-template-columns: 1fr;
    }

    .verification-panel {
        padding: 1.2rem;
    }

    .verify-now-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }


    .verification-status {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .verification-title-row {
        gap: 0.5rem;
    }

    .verification-title-row h2 {
        font-size: 1.15rem;
    }

    .verification-overlay {
        align-items: center;
        padding: 1rem;
    }

    .verification-modal {
        width: 100%;
        max-width: 420px;
        max-height: 85vh;
        padding: 1.5rem 1.2rem;
        margin: 0;
        border-radius: 16px;
    }

    .steps {
        padding: 1rem;
    }

    /* NIE zmieniaj layoutu kroków w modalu weryfikacji */
    .verification-modal .step {
        flex-direction: row;
        text-align: left;
    }

    .verification-modal .icon {
        margin-right: 16px;
        margin-bottom: 0;
    }

    .mobile-sidebar {
        padding-bottom: 4rem;
    }

    .sidebar-footer {
        padding-bottom: 2rem;
    }
}

@media (min-width: 769px) {
    .mobile-sidebar {
        display: none;
    }

    .mobile-header {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .verify-now-btn {
        width: 100%;
        justify-content: center;
    }
}
