/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --gold-color: #d4af37;
    --gold-dark: #b8941f;
    --gold-light: #e6c200;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --success-color: #00ff00;
    --warning-color: #ffaa00;
    --danger-color: #ff0000;
    --border-color: #1a1a1a;
    --bg-dark: #000000;
    --bg-card: rgba(15, 15, 15, 0.8);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(212, 175, 55, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

body > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.5);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #d4af37;
    letter-spacing: -0.5px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d4af37;
}

.btn-telegram {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Hero Section */
.hero {
    padding: 4rem 0 6rem;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    margin-bottom: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-title .highlight {
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-warning {
    margin-bottom: 2rem;
}

.hero-warning p {
    color: #ffaa00;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-item.highlight-stat .stat-number {
    color: #d4af37;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(26, 26, 26, 0.8);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(15, 15, 15, 0.8);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #a0a0a0;
    font-size: 1rem;
}

/* How to Join Section */
.how-to-join {
    padding: 4rem 0;
    background: transparent;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #d4af37;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-note {
    text-align: center;
    color: #a0a0a0;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.step-section {
    margin-bottom: 5rem;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(26, 26, 26, 0.8);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.step-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.step-description {
    font-size: 1.2rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-info {
    color: #a0a0a0;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.step-info strong {
    color: #ffffff;
}

.step-warning {
    color: #ffaa00;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Referral Box */
.referral-box {
    background: rgba(26, 26, 26, 0.7);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.referral-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.code-label {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.code-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Courier New', monospace;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 6px;
}

.copy-btn {
    padding: 0.5rem 1rem;
    background: #d4af37;
    color: #000000;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.copy-btn:hover {
    transform: scale(1.05);
    background: #e6c200;
}

.referral-note {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-cta {
    margin-top: 2rem;
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Transfer Guide */
.transfer-guide {
    background: rgba(26, 26, 26, 0.7);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.transfer-guide h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.transfer-table {
    margin-bottom: 2rem;
}

.transfer-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
    background: #0f0f0f;
    border-radius: 8px;
}

.transfer-label {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.transfer-arrow {
    color: #d4af37;
    font-weight: 700;
}

.transfer-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.transfer-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #a0a0a0;
    line-height: 1.6;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.transfer-substep {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-left: 2rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(212, 175, 55, 0.3);
    color: #a0a0a0;
}

.substep-label {
    font-size: 0.9rem;
    font-style: italic;
    color: #d4af37;
}

.step-num {
    color: #d4af37;
    font-weight: 700;
    flex-shrink: 0;
}

.transfer-warning {
    background: rgba(255, 170, 0, 0.1);
    border: 1px solid rgba(255, 170, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.transfer-warning p {
    color: #ffaa00;
    margin: 0;
}

.transfer-warning strong {
    color: #ffffff;
}

/* Existing Account */
.existing-account {
    background: rgba(26, 26, 26, 0.7);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.existing-account h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.existing-account > p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.existing-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.existing-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0a0a0;
}

/* Quota Box */
.quota-box {
    background: rgba(26, 26, 26, 0.7);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.quota-box h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.quota-info {
    max-width: 500px;
    margin: 0 auto;
}

.quota-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #a0a0a0;
}

.quota-remaining strong {
    color: #d4af37;
    font-size: 1.5rem;
}

.quota-bar {
    width: 100%;
    height: 30px;
    background: #0f0f0f;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.quota-fill {
    height: 100%;
    width: 12% !important;
    background: linear-gradient(90deg, #d4af37 0%, #b8941f 100%);
    transition: width 0.3s;
    position: absolute;
    left: 0 !important;
    top: 0;
    border-radius: 15px 0 0 15px;
    min-width: 0;
    max-width: 12%;
}

.quota-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
}

/* VIP Form */
.vip-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-note {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.form-warning {
    color: #ffaa00;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #d4af37;
}

.form-group input::placeholder {
    color: #666666;
}

/* Performance Section */
.performance {
    padding: 4rem 0;
    background: transparent;
}

.trades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.trade-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s, border-color 0.3s;
    backdrop-filter: blur(10px);
}

.trade-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(15, 15, 15, 0.8);
}

.trade-card.vip-only {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.08);
}

.trade-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.trade-pair {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.trade-type {
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.trade-type.long {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
}

.trade-type.ai {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
}

.trade-type.vip {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
}

.trade-date {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.trade-profit {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.trade-profit.positive {
    color: #ffffff;
}

.profit-percent {
    color: #00ff00;
}

.profit-label {
    color: #ffffff;
}

.trade-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #d4af37;
    color: #000000;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
}

.monthly-performance {
    margin-top: 3rem;
    text-align: center;
}

.monthly-card {
    display: inline-block;
    background: rgba(15, 15, 15, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    padding: 2rem 4rem;
    backdrop-filter: blur(10px);
}

.month-label {
    display: block;
    color: #a0a0a0;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.month-profit {
    display: block;
    color: #d4af37;
    font-size: 2.5rem;
    font-weight: 800;
}

.month-profit.positive {
    color: #ffffff;
}

.month-profit .profit-percent {
    color: #00ff00;
    font-size: 2.5rem;
    font-weight: 800;
}

.month-profit .profit-label {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.performance-note {
    text-align: center;
    margin-top: 2rem;
    color: #a0a0a0;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: transparent;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-quote {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.4;
}

.cta-text {
    font-size: 1.3rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

.cta-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.cta-label {
    display: block;
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: transparent;
    border-top: 1px solid rgba(26, 26, 26, 0.8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.footer-brand p {
    color: #a0a0a0;
    font-size: 0.95rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #d4af37;
}

.footer-disclaimer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1a1a1a;
}

.footer-disclaimer p {
    color: #a0a0a0;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .step-section {
        padding: 2rem 1.5rem;
    }

    .step-header h3 {
        font-size: 1.5rem;
    }

    .referral-code {
        flex-direction: column;
    }

    .transfer-row {
        flex-direction: column;
    }

    .transfer-arrow {
        transform: rotate(90deg);
    }

    .cta-quote {
        font-size: 1.5rem;
    }

    .cta-stats {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .step-section {
        padding: 1.5rem 1rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
