:root {
    --bs-primary: #d4af37;
    --bs-primary-rgb: 212, 175, 55;
    --bs-secondary: #1a1a1a;
    --bs-secondary-rgb: 26, 26, 26;
    --bs-dark: #0a0a0a;
    --bs-light: #f8f9fa;
    --bs-gray: #8c8c8c;
    --bs-success: #28a745;
    --bs-danger: #dc3545;
    --bs-accent: #ffd700;
    --color1: #ff5c5c;
    --color2: #000000;
    --color3: #7a0014;
    --modal-bg: rgba(10, 10, 10, 0.95);
    --text: #f8f9fa;
    --muted: #8c8c8c;
    --accent: #d4af37;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bs-dark);
    color: var(--bs-light);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--bs-light) !important;
}

.nav-link {
    color: var(--bs-light) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--bs-primary) !important;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #b8941f 100%);
    border-color: var(--bs-primary);
    color: var(--bs-dark);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e0b83d 0%, #c9a028 100%);
    border-color: #e0b83d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bs-secondary) 0%, var(--bs-dark) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
}

.hero-title {
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--bs-light) 0%, var(--bs-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--bs-gray);
    margin-bottom: 0.25rem;
}

/* Verification Card */
.verification-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.verification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary), #b8941f, var(--bs-primary));
}

.verification-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(-5px);
}

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.logo-circle img {
    width: 60px;
    height: 60px;
}

.badge-custom {
    background: rgba(212, 175, 55, 0.15);
    color: var(--bs-primary);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bs-dark) 0%, var(--bs-secondary) 100%);
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #b8941f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--bs-gray);
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bs-secondary) 0%, var(--bs-dark) 100%);
}

.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--bs-light) 0%, var(--bs-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--bs-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary), #b8941f, var(--bs-primary));
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--bs-primary);
    font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.feature-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--bs-light);
}

.feature-text {
    color: var(--bs-gray);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bs-secondary) 0%, var(--bs-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.cta-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--bs-light) 0%, var(--bs-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--bs-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--bs-dark) 0%, var(--bs-secondary) 100%);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-logo {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-text {
    color: var(--bs-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-heading {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--bs-light);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--bs-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bs-primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-gray);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--bs-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

/* Copyright */
.copyright {
    color: var(--bs-gray);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
}

.copyright-links a {
    color: var(--bs-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.copyright-links a:hover {
    color: var(--bs-primary);
}

/* Loader */
.loader {
    border: 4px solid rgba(255, 255, 155, 0.5);
    margin-left: 5px;
    border-top: 3px solid var(--bs-primary);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.loading .loader {
    display: inline-block;
}

/* Theme Toggle */
.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 5px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--bs-primary);
}

.theme-toggle-thumb {
    font-size: 1.2rem;
    line-height: 1;
}

/* Overlay Base */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 5px;
}

/* New Popup Styles (Glass-morphism) */
.new_popup {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 40%, rgba(0, 0, 0, 0.35) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: var(--bs-light);
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    width: 100%;
    height: 95%;
    max-width: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -8px 20px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
    animation: new_fadeIn 0.3s ease-out;
}

.new_popup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 35%, transparent 60%);
    pointer-events: none;
}

.new_popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary), #b8941f, var(--bs-primary));
}

.new_title_main {
    margin: 0.8rem 0 0.3rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.4), 0 0 14px rgba(212, 175, 55, 0.25);
}

.new_section {
    text-align: center;
    margin: 0.5rem 0;
}

.new_emoji_line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.new_png_emoji {
    width: 30px;
    height: auto;
}

.new_png2_emoji {
    width: 60px;
    height: auto;
    display: block;
    margin: 0 auto 6px;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.35));
}

.new_inline_section,
.new_inline_section2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0.5rem 0;
    border-radius: 12px;
    text-align: left;
}

.new_inline_section {
    padding: 0.35rem 0.8rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 6px 18px rgba(0, 0, 0, 0.35);
}

.new_inline_section2 {
    padding: 0.8rem 0.8rem;
    background: rgba(40, 167, 69, 0.12);
    border: 1px solid rgba(40, 167, 69, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 6px 18px rgba(0, 0, 0, 0.35);
}

.new_text p {
    margin: 3px;
    line-height: 1.2;
}

.new_text .new_title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #f5d97a;
    text-shadow: 0 0 8px rgba(245, 217, 122, 0.65), 0 0 18px rgba(212, 175, 55, 0.35);
    margin: 0;
}

.new_text .new_subtitle {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-bottom: 0;
}

.new_subtitle2 {
    font-size: 0.92rem;
    opacity: 0.85;
    margin-top: 6px;
    line-height: 1.25;
    font-weight: 500;
}

.new_inline_section2 .new_text {
    position: relative;
    padding-top: 18px;
}

.new_inline_section2 .new_text::before {
    content: "IMPORTANT NOTICE";
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 700;
    color: #f5d97a;
    white-space: nowrap;
    text-shadow: 0 0 8px rgba(245, 217, 122, 0.65), 0 0 18px rgba(212, 175, 55, 0.35);
}

.new_buttons_area {
    margin-top: auto;
    width: 100%;
}

.new_verify_btn {
    margin-top: 0.8rem;
    padding: 0.55rem;
    width: 100%;
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%);
    background: linear-gradient(145deg, var(--color1) 0%, var(--color2) 50%, var(--color3) 100%);
    color: #FFF;
    box-shadow: 0 6px 0 #8a6d1b, 0 12px 25px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.8), 0 0 12px rgba(255, 255, 255, 0.45);
}

.new_verify_btn:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #8a6d1b, 0 10px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.new_verify_btn:active {
    transform: translateY(5px);
    box-shadow: 0 1px 0 #8a6d1b, 0 6px 12px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.new_close_btn {
    margin-top: 0.8rem;
    padding: 0.45rem;
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: 0.25s ease;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 6px 18px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.new_close_btn:hover {
    background: rgba(255, 255, 255, 0.16);
}

.amount-highlight {
    color: #f5d97a;
    text-shadow: 0 0 8px rgba(245, 217, 122, 0.65), 0 0 18px rgba(212, 175, 55, 0.35);
    font-weight: 700;
}

/* Second Overlay Styles */
.popup {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    color: var(--bs-light);
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    width: 100%;
    height: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary), #b8941f, var(--bs-primary));
}

.popup h2 {
    margin: 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.section {
    text-align: center;
    margin: 0.5rem 0;
}

.emoji-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.png_emoji {
    width: 30px;
    height: auto;
}

.png2_emoji2 {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto 2px;
}

.inline-section,
.inline-section2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0.5rem 0;
    background: rgba(212, 175, 55, 0.08);
    padding: 0.8rem;
    border-radius: 12px;
    text-align: left;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.inline-section2 {
    background: rgba(40, 167, 69, 0.08);
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.text .title {
    font-size: 1.2rem;
    font-weight: 800;
    color: gold;
    margin: 0;
}

.text .subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.subtitle2 {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 5px;
    font-weight: 500;
}

.subtitle22 {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.close-btn {
    margin-top: 1.5rem;
    padding: 0.75rem;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #b8941f 100%);
    color: var(--bs-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: linear-gradient(135deg, #e0b83d 0%, #c9a028 100%);
    transform: translateY(-2px);
}

/* Animations */
@keyframes new_fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Utility Classes */
.text-primary {
    color: var(--bs-primary) !important;
}

.bg-dark {
    background-color: var(--bs-dark) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .verification-card {
        padding: 1.5rem;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .logo-circle img {
        width: 50px;
        height: 50px;
    }
    
    .badge-custom {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .overlay,
    .btn {
        display: none !important;
    }
}