* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a1a;
    color: #e5e7eb;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1a2e;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #a855f7, #f43f5e);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    padding: 16px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #c084fc, #ec4899);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo-icon {
    font-size: 28px;
    background: none;
    color: #c084fc;
}

.nav-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 14px;
}

.nav-links a:hover {
    color: #c084fc;
}

.btn-outline {
    padding: 8px 20px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.15), transparent);
}

.hero-badge {
    display: inline-block;
    margin-bottom: 24px;
}

.hero-badge span {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 500;
    color: #c084fc;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #c084fc, #a855f7);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 20px;
    color: #9ca3af;
    max-width: 700px;
    margin: 0 auto 48px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    min-width: 120px;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #c084fc, #ec4899);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section.bg-dark {
    background: rgba(5, 5, 15, 0.5);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.section-subtitle {
    text-align: center;
    color: #9ca3af;
    margin-bottom: 48px;
    font-size: 18px;
}

.subsection-title {
    font-size: 24px;
    font-weight: 600;
    color: #c084fc;
    margin: 48px 0 32px;
    text-align: center;
}

/* Overview Grid */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.overview-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.overview-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.overview-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #f3f4f6;
}

.overview-card p {
    color: #9ca3af;
    font-size: 14px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.step {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -12px;
    left: 24px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #f3f4f6;
}

.step p {
    color: #9ca3af;
    font-size: 14px;
}

/* Networks Grid */
.networks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.network-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.network-card:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.4);
}

.network-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.network-card:hover .network-logo {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.network-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.network-card p {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
}

.network-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Contracts Grid */
.contracts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.contract-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.contract-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #c084fc;
}

.contract-card p {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.contract-address {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px;
    border-radius: 12px;
    margin: 16px 0;
}

.contract-address code {
    font-family: 'Source Code Pro', monospace;
    font-size: 12px;
    color: #4ade80;
    word-break: break-all;
}

.copy-btn {
    background: rgba(139, 92, 246, 0.2);
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    color: #c084fc;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: rgba(139, 92, 246, 0.4);
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.partner-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.2s;
}

.partner-card:hover {
    background: rgba(139, 92, 246, 0.08);
    transform: translateX(3px);
}

.partner-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
}

.partner-name {
    font-size: 13px;
    font-weight: 500;
    flex: 1;
}

.partner-points {
    font-size: 11px;
    font-weight: 600;
    color: #fbbf24;
}

/* Reputation Grid */
.reputation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.reputation-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    padding: 16px 20px;
    border-radius: 16px;
    transition: all 0.2s;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.reputation-card:hover {
    background: rgba(139, 92, 246, 0.08);
    transform: translateX(5px);
    border-color: rgba(139, 92, 246, 0.3);
}

.rep-icon {
    font-size: 32px;
}

.rep-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.rep-info p {
    font-size: 12px;
    color: #6b7280;
}

.rep-points {
    margin-left: auto;
    font-weight: 600;
    color: #fbbf24;
    font-size: 14px;
}

/* Badges Grid */
.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.badge-tier {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    transition: all 0.2s;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.badge-tier:hover {
    transform: translateY(-3px);
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
}

.badge-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.badge-name {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.badge-score {
    font-size: 11px;
    color: #6b7280;
}

/* FAQ Grid */
.faq-grid {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    margin-bottom: 16px;
    padding: 20px 24px;
    transition: all 0.2s;
}

.faq-item:hover {
    background: rgba(139, 92, 246, 0.05);
}

.faq-question {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
    color: #c084fc;
}

.faq-answer {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #05050f;
    border-top: 1px solid rgba(139, 92, 246, 0.15);
    padding: 48px 0 24px;
    margin-top: 48px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #9ca3af;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-link {
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s;
}

.social-link:hover {
    color: #c084fc;
    background: rgba(139, 92, 246, 0.15);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 10px;
    color: #4b5563;
}

/* ============================================ */
/* PARTNER APPLICATION SECTION (adaugat nou) */
/* ============================================ */

.apply-header {
    text-align: center;
    margin-bottom: 40px;
}

.apply-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 28px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    overflow: hidden;
    transition: all 0.3s;
}

.apply-form-container:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
}

.apply-info {
    text-align: center;
    padding: 32px 24px 24px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.apply-info h3 {
    font-size: 22px;
    color: #c084fc;
    margin-bottom: 12px;
}

.apply-info p {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 20px;
}

.info-requirements {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.info-requirements span {
    font-size: 12px;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.apply-form-container iframe {
    display: block;
    width: 100%;
    background: transparent;
}

/* Responsive pentru Apply Section */
@media (max-width: 768px) {
    .apply-info {
        padding: 24px 20px 20px;
    }
    
    .apply-info h3 {
        font-size: 18px;
    }
    
    .info-requirements {
        gap: 12px;
    }
    
    .info-requirements span {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .apply-form-container iframe {
        height: 750px;
    }
}

@media (max-width: 480px) {
    .apply-form-container iframe {
        height: 800px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat-card {
        padding: 12px 20px;
        min-width: 100px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .contracts-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .network-logo {
        width: 40px;
        height: 40px;
    }
    
    .partner-logo-img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .reputation-grid {
        grid-template-columns: 1fr;
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
