/* Landing Page Modern Styles */

/* Hero Section */
.register {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.register::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: floatBg 20s ease-in-out infinite;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

.register h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.register h2 {
    font-size: 20px;
    font-weight: 300;
    color: #8895b0;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.register .btn-register {
    background: linear-gradient(135deg, #ffd700, #f0a500);
    color: #0a0e1a;
    padding: 14px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.register .btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.3);
    color: #0a0e1a;
    text-decoration: none;
}

.register .btn-premium {
    background: linear-gradient(135deg, #00c853, #00a844);
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-left: 15px;
}

.register .btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,200,83,0.3);
    color: #fff;
    text-decoration: none;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-stat {
    text-align: center;
}

.hero-stat .num {
    font-size: 32px;
    font-weight: 800;
    color: #ffd700;
    display: block;
}

.hero-stat .lbl {
    font-size: 13px;
    color: #6b7a9a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0e1a, #111827);
}

.features-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,215,0,0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.08);
}

.feature-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ffd700;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: #8895b0;
    line-height: 1.6;
}

/* How it Works */
.how-section {
    padding: 80px 0;
    background: #111827;
}

.how-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
}

.step-card {
    text-align: center;
    padding: 20px;
}

.step-card .step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #f0a500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #0a0e1a;
    margin: 0 auto 15px;
}

.step-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.step-card p {
    font-size: 13px;
    color: #8895b0;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #111827, #0a0e1a);
}

.pricing-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,215,0,0.1);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: #ffd700;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'POPULER';
    position: absolute;
    top: 15px;
    right: -30px;
    background: #ffd700;
    color: #0a0e1a;
    padding: 3px 35px;
    font-size: 11px;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-card .price {
    font-size: 42px;
    font-weight: 800;
    color: #ffd700;
    margin: 15px 0;
}

.pricing-card .price small {
    font-size: 16px;
    color: #6b7a9a;
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    color: #c0c8d8;
}

.pricing-card ul li i {
    color: #69f0ae;
    width: 20px;
}

.pricing-card .btn {
    background: linear-gradient(135deg, #ffd700, #f0a500);
    color: #0a0e1a;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    border: none;
    width: 100%;
}

.pricing-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,215,0,0.3);
}

/* Premium Panel CTA */
.premium-cta {
    background: linear-gradient(135deg, #1a0a2e, #0d1b2a);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    margin: 0 15px 80px;
}

.premium-cta h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.premium-cta p {
    font-size: 14px;
    color: #8895b0;
    margin-bottom: 20px;
}

/* Main Content Section */
.main-content.bg-light {
    background: transparent !important;
    padding: 40px 0;
}

.main-content .page-header {
    border-bottom: 2px solid rgba(255,215,0,0.2);
    padding-bottom: 10px;
    color: #ffd700;
    font-weight: 700;
}

.main-content p {
    color: #8895b0;
    font-size: 15px;
}

/* Footer */
footer {
    background: #050810;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,215,0,0.05);
}

footer h4 {
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

footer p, footer li {
    color: #6b7a9a;
    font-size: 13px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    padding: 4px 0;
}

footer ul li a {
    color: #6b7a9a;
    text-decoration: none;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: #ffd700;
}

footer hr {
    border-color: rgba(255,215,0,0.1);
    margin: 20px 0;
}

footer .copyline p {
    font-size: 12px;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .register h1 { font-size: 28px; }
    .register h2 { font-size: 16px; }
    .register .btn-register, .register .btn-premium {
        padding: 12px 25px;
        font-size: 13px;
        margin: 5px;
        display: block;
    }
    .hero-stats { flex-direction: column; gap: 15px; }
    .hero-stat .num { font-size: 24px; }
    .pricing-card.featured { transform: none; }
    .premium-cta { padding: 30px 15px; }
    .premium-cta h3 { font-size: 22px; }
}
