* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f1a 100%);
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Bitcoin Background Animation */
.bitcoin-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23f7931a"><path d="M12 2L15 8.5L22 9.5L17 14L18.5 21L12 17.5L5.5 21L7 14L2 9.5L9 8.5L12 2Z"/></svg>');
    background-repeat: repeat;
    background-size: 60px;
    opacity: 0.05;
    animation: moveBitcoins 80s linear infinite;
}

@keyframes moveBitcoins {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-1000px) rotate(360deg);
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #f7931a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffb347;
}

/* Selection Color */
::selection {
    background: rgba(247, 147, 26, 0.3);
    color: #fff;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(247, 147, 26, 0.4);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.95);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.02);
}

.logo i {
    color: #f7931a;
    font-size: 32px;
    filter: drop-shadow(0 0 5px rgba(247, 147, 26, 0.5));
}

.logo span {
    background: linear-gradient(135deg, #f7931a, #ffb347, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f7931a, #ffd93d);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #f7931a;
}

.btn-login, .btn-register {
    padding: 8px 24px;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-login::after, .btn-register::after {
    display: none;
}

.btn-login {
    border: 1.5px solid #f7931a;
    background: transparent;
}

.btn-login:hover {
    background: rgba(247, 147, 26, 0.1);
    transform: translateY(-2px);
}

.btn-register {
    background: linear-gradient(135deg, #f7931a, #ffd93d);
    color: #000 !important;
    box-shadow: 0 2px 10px rgba(247, 147, 26, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(247, 147, 26, 0.4);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #f7931a;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(247, 147, 26, 0.05), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #f7931a, #ffb347, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 18px;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 32px;
    font-weight: 800;
    color: #f7931a;
    margin-bottom: 5px;
}

.stat p {
    font-size: 14px;
    color: #aaa;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 14px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #f7931a, #ffd93d);
    color: #000;
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.3);
}

.btn-secondary {
    border: 1.5px solid #f7931a;
    color: #fff;
    background: transparent;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(247, 147, 26, 0.4);
}

.btn-secondary:hover {
    background: rgba(247, 147, 26, 0.1);
}

/* Trust Badges Section */
.trust-badges {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(247, 147, 26, 0.2);
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f7931a, #ffd93d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.trust-badge:hover::before {
    transform: scaleX(1);
}

.trust-badge:hover {
    transform: translateY(-8px);
    border-color: rgba(247, 147, 26, 0.5);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.2), rgba(255, 217, 61, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s;
}

.trust-badge:hover .trust-icon {
    transform: scale(1.1);
}

.trust-icon i {
    font-size: 32px;
    color: #f7931a;
}

.trust-badge h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.trust-badge p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

.trust-badge .badge-detail {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid rgba(247, 147, 26, 0.2);
    font-size: 13px;
    color: #f7931a;
}

.trust-badge .badge-detail i {
    font-size: 12px;
    margin-right: 5px;
}

/* Plans Section */
.plans {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    color: #aaa;
    font-size: 18px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Enhanced Card Hover Effects */
.plan-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(247, 147, 26, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.plan-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f7931a, #ffb347, #ffd93d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card:hover::after {
    transform: scaleX(1);
}

.plan-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(247, 147, 26, 0.6);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(247, 147, 26, 0.2);
}

.plan-card.featured {
    border: 2px solid #f7931a;
    background: rgba(247, 147, 26, 0.08);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(247, 147, 26, 0.15);
}

.plan-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 30px 50px rgba(247, 147, 26, 0.25);
}

.plan-level {
    font-size: 12px;
    color: #f7931a;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
    transition: letter-spacing 0.3s;
}

.plan-card:hover .plan-level {
    letter-spacing: 4px;
}

.plan-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
    transition: transform 0.3s;
}

.plan-card:hover h3 {
    transform: translateY(-2px);
}

.plan-range {
    color: #aaa;
    margin-bottom: 25px;
    font-size: 14px;
    transition: color 0.3s;
}

.plan-card:hover .plan-range {
    color: #ccc;
}

.plan-rate {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 8px;
}

.plan-percent {
    font-size: 42px;
    font-weight: 800;
    color: #f7931a;
    margin-bottom: 20px;
    transition: transform 0.3s, text-shadow 0.3s;
}

.plan-card:hover .plan-percent {
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(247, 147, 26, 0.5);
}

.plan-example {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 30px;
}

.btn-plan {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #f7931a, #ffd93d);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-plan::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-plan:hover::before {
    width: 300px;
    height: 300px;
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 147, 26, 0.4);
}

/* How It Works Section - Enhanced Cards */
.how-it-works {
    padding: 100px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    text-align: center;
}

.step {
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(247, 147, 26, 0.1);
}

.step:hover {
    background: rgba(247, 147, 26, 0.08);
    transform: translateY(-8px);
    border-color: rgba(247, 147, 26, 0.4);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #f7931a, #ffd93d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 0 0 0 rgba(247, 147, 26, 0.4);
}

.step:hover .step-number {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 0 5px rgba(247, 147, 26, 0.3);
}

.step i {
    font-size: 52px;
    color: #f7931a;
    margin: 25px 0 20px;
    transition: transform 0.3s;
}

.step:hover i {
    transform: scale(1.1);
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.step:hover h3 {
    color: #f7931a;
}

.step p {
    color: #aaa;
    line-height: 1.6;
}

/* Dashboard Stats Cards - Enhanced */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(247, 147, 26, 0.2);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f7931a, #ffd93d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(247, 147, 26, 0.5);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card h3 {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 12px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.stat-card:hover h3 {
    color: #f7931a;
}

.stat-card .amount {
    font-size: 32px;
    font-weight: 800;
    color: #f7931a;
    margin-bottom: 5px;
    transition: transform 0.3s;
}

.stat-card:hover .amount {
    transform: scale(1.05);
}

.stat-card .currency {
    font-size: 14px;
    color: #aaa;
}

/* Info Cards - Enhanced */
.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(247, 147, 26, 0.3);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #f7931a;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.info-card .number {
    font-size: 32px;
    font-weight: 700;
    color: #f7931a;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.info-card:hover .number {
    transform: scale(1.05);
}

/* Investment Cards - Enhanced */
.investment-plan-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(247, 147, 26, 0.3);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.investment-plan-card:hover {
    transform: translateY(-5px);
    border-color: #f7931a;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

.investment-plan-card .rate-percent {
    font-size: 28px;
    font-weight: 700;
    color: #f7931a;
    transition: transform 0.3s;
}

.investment-plan-card:hover .rate-percent {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(247, 147, 26, 0.5);
}

/* Wallet Cards - Enhanced */
.wallet-card {
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.1), rgba(255, 217, 61, 0.05));
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(247, 147, 26, 0.3);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.wallet-card:hover {
    transform: translateY(-8px);
    border-color: #f7931a;
    box-shadow: 0 25px 40px rgba(247, 147, 26, 0.15);
}

/* Ticket Items - Enhanced */
.ticket-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    border-left: 3px solid #f7931a;
    transition: all 0.3s;
}

.ticket-item:hover {
    transform: translateX(5px);
    background: rgba(247, 147, 26, 0.05);
    border-left-width: 5px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.1), rgba(255, 217, 61, 0.05));
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95), #0a0a0a);
    padding: 70px 0 25px;
    margin-top: 60px;
    border-top: 1px solid rgba(247, 147, 26, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo i {
    font-size: 36px;
    color: #f7931a;
}

.footer-logo span {
    font-size: 26px;
    font-weight: 700;
    margin-left: 10px;
    background: linear-gradient(135deg, #f7931a, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    margin-top: 20px;
    color: #aaa;
    line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #f7931a;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #f7931a;
    transform: translateX(5px);
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.footer-contact p:hover {
    transform: translateX(5px);
}

.footer-contact i {
    margin-right: 10px;
    color: #f7931a;
    width: 25px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
}

/* Auth Pages (Login/Register) */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.auth-box {
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 45px 40px;
    width: 100%;
    max-width: 480px;
    border: 1px solid rgba(247, 147, 26, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.auth-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
}

.auth-box h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.auth-box .logo-center {
    text-align: center;
    margin-bottom: 30px;
}

.auth-box .logo-center i {
    font-size: 56px;
    color: #f7931a;
    filter: drop-shadow(0 0 10px rgba(247, 147, 26, 0.3));
    transition: transform 0.3s;
}

.auth-box:hover .logo-center i {
    transform: scale(1.05);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #aaa;
    font-size: 14px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(247, 147, 26, 0.3);
    border-radius: 14px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #f7931a;
    box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.1);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #f7931a, #ffd93d);
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: #000;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(247, 147, 26, 0.3);
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    color: #aaa;
}

.auth-footer a {
    color: #f7931a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.auth-footer a:hover {
    text-decoration: underline;
    color: #ffb347;
}

/* Dashboard */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

.sidebar {
    width: 280px;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(12px);
    position: fixed;
    height: calc(100vh - 80px);
    overflow-y: auto;
    border-right: 1px solid rgba(247, 147, 26, 0.3);
    transition: transform 0.3s ease;
}

.sidebar-menu {
    list-style: none;
    padding: 25px 15px;
}

.sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    color: #ccc;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.3s;
    font-weight: 500;
}

.sidebar-menu a:hover, .sidebar-menu a.active {
    background: linear-gradient(90deg, rgba(247, 147, 26, 0.2), transparent);
    color: #f7931a;
    transform: translateX(5px);
}

.sidebar-menu i {
    width: 24px;
    font-size: 18px;
    transition: transform 0.3s;
}

.sidebar-menu a:hover i {
    transform: scale(1.1);
}

.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 30px;
}

.dashboard-header {
    margin-bottom: 35px;
}

.dashboard-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.dashboard-header p {
    color: #aaa;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }
    
    .stats {
        gap: 40px;
    }
    
    .stat h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid rgba(247, 147, 26, 0.3);
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .stats {
        gap: 30px;
    }
    
    .stat h3 {
        font-size: 24px;
    }
    
    .sidebar {
        transform: translateX(-100%);
        z-index: 999;
        width: 260px;
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .auth-box {
        padding: 35px 25px;
    }
    
    .badges-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats {
        gap: 20px;
    }
    
    .stat h3 {
        font-size: 20px;
    }
    
    .plan-card {
        padding: 25px 20px;
    }
    
    .plan-percent {
        font-size: 36px;
    }
} 