/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #181A20;
    min-height: 100vh;
    font-family: 'BinancePlex', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

/* BinancePlex font fallback */
@font-face {
    font-family: 'BinancePlex';
    src: url('https://www.binance.com/fonts/BinancePlex-Regular.woff2') format('woff2'),
         url('https://www.binance.com/fonts/BinancePlex-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BinancePlex';
    src: url('https://www.binance.com/fonts/BinancePlex-Medium.woff2') format('woff2'),
         url('https://www.binance.com/fonts/BinancePlex-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BinancePlex';
    src: url('https://www.binance.com/fonts/BinancePlex-Bold.woff2') format('woff2'),
         url('https://www.binance.com/fonts/BinancePlex-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    background: rgba(11, 14, 17, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(240, 185, 11, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    min-height: 70px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo svg {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.logo svg:hover {
    transform: scale(1.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F0B90B;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0;
}

.logo:hover .logo-text {
    color: #F8D12F;
}

/* Header Right */
.header-right {
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

/* Wallet Button */
.btn-wallet {
    background: transparent !important;
    color: #F0B90B !important;
    padding: 14px 32px !important;
    border: 2px solid #F0B90B !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    font-size: 1rem !important;
}

.btn-wallet:hover {
    background: rgba(240, 185, 11, 0.1) !important;
    color: #F8D12F !important;
    border-color: #F8D12F !important;
    border-width: 2px !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(240, 185, 11, 0.2) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0B0E11 0%, #181A20 50%, #0B0E11 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    padding: 4rem 0 0 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(240, 185, 11, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 50%, rgba(240, 185, 11, 0.08) 0%, transparent 40%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0B90B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #B7BDC6;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
}

/* Buttons */
.btn {
    padding: 18px 36px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #F0B90B 0%, #F8D12F 100%);
    color: #0B0E11;
    box-shadow: 0 4px 20px rgba(240, 185, 11, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F8D12F 0%, #F0B90B 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 185, 11, 0.4);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.main-illustration {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.main-illustration:hover {
    transform: scale(1.02);
}

/* About Service Section */
.about-service {
    padding: 2rem 0;
    background-color: #181A20;
}

/* Report Section */
.report-section {
    padding: 0 0 6rem 0;
    background: linear-gradient(135deg, #0B0E11 0%, #181A20 50%, #0B0E11 100%);
    position: relative;
    overflow: hidden;
}

.report-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.report-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.report-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0B90B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.report-subtitle {
    font-size: 1.3rem;
    color: #B7BDC6;
    max-width: 600px;
    margin: 0 auto;
}

.report-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Chart Container */
.chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(43, 49, 57, 0.5);
    border-bottom: 1px solid rgba(43, 49, 57, 0.5);
}

.circular-chart {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(43, 49, 57, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.1);
}

.chart-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.chart-bg {
    transition: all 0.8s ease;
    stroke: #2B3139;
    stroke-width: 8;
    fill: none;
}

.chart-progress {
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
    animation: chartFill 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    stroke: #F0B90B;
    stroke-width: 8;
    fill: none;
    stroke-linecap: round;
    filter: drop-shadow(0 0 8px rgba(240, 185, 11, 0.4));
}

@keyframes chartFill {
    to {
        stroke-dashoffset: 64.8; /* 87.3% of 502.4 */
    }
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.chart-percentage {
    font-size: 3.2rem;
    font-weight: 700;
    color: #F0B90B;
    margin-bottom: 0.3rem;
    animation: fadeInUp 1s ease-out 0.5s both;
    font-family: 'BinancePlex', 'Inter', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.chart-label {
    font-size: 1.1rem;
    color: #B7BDC6;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.7s both;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'BinancePlex', 'Inter', sans-serif;
}

/* Chart background glow effect */
.chart-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Verification Details */
.verification-details {
    background: rgba(43, 49, 57, 0.3);
    border: 1px solid #2B3139;
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.details-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-align: center;
}

.condition-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(11, 14, 17, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(43, 49, 57, 0.5);
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out both;
}

.condition-item:nth-child(2) { animation-delay: 0.1s; }
.condition-item:nth-child(3) { animation-delay: 0.2s; }
.condition-item:nth-child(4) { animation-delay: 0.3s; }

.condition-item:hover {
    border-color: #F0B90B;
    background: rgba(240, 185, 11, 0.05);
    transform: translateX(5px);
}

.condition-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.condition-icon.success {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.condition-icon.warning {
    background: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
    border: 2px solid rgba(245, 158, 11, 0.3);
}

.condition-content {
    flex: 1;
}

.condition-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.3rem;
}

.condition-content p {
    font-size: 0.9rem;
    color: #B7BDC6;
    margin: 0;
}

.condition-status {
    font-size: 0.9rem;
    font-weight: 600;
    color: #22C55E;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.condition-status.warning {
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
}

/* Verification Summary */
.verification-summary {
    margin-top: 2rem;
}

.summary-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(11, 14, 17, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(43, 49, 57, 0.3);
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out both;
}

.summary-item:nth-child(1) { animation-delay: 0.4s; }
.summary-item:nth-child(2) { animation-delay: 0.5s; }

.summary-item:hover {
    border-color: #F0B90B;
    background: rgba(240, 185, 11, 0.05);
    transform: translateX(5px);
}

.summary-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    background: rgba(240, 185, 11, 0.1);
    color: #F0B90B;
    border: 2px solid rgba(240, 185, 11, 0.2);
}

.summary-content {
    flex: 1;
}

.summary-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.summary-content p {
    font-size: 0.95rem;
    color: #B7BDC6;
    margin: 0;
    line-height: 1.5;
}

/* Check Wallet Section */
.check-wallet-section {
    margin-top: 2.5rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(43, 49, 57, 0.5);
}

.btn-check-wallet {
    background: linear-gradient(135deg, #F0B90B 0%, #F8D12F 100%);
    color: #0B0E11;
    padding: 18px 48px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(240, 185, 11, 0.3);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-check-wallet:hover {
    background: linear-gradient(135deg, #F8D12F 0%, #F0B90B 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(240, 185, 11, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: transparent;
    border: 2px solid #2B3139;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card:hover {
    border-color: #F0B90B;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(240, 185, 11, 0.1);
}

.advantage-image {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.advantage-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.advantage-card:hover .advantage-img {
    transform: scale(1.05);
}

.advantage-description {
    font-size: 14px;
    color: #B7BDC6;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #0B0E11 0%, #181A20 50%, #0B0E11 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.faq-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0B90B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #B7BDC6;
    max-width: 600px;
    margin: 0 auto;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(43, 49, 57, 0.3);
    border: 1px solid #2B3139;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

.faq-item:hover {
    border-color: #F0B90B;
    background: rgba(43, 49, 57, 0.4);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-number {
    width: 40px;
    height: 40px;
    background: rgba(240, 185, 11, 0.1);
    border: 2px solid rgba(240, 185, 11, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #F0B90B;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    text-align: left;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: #F0B90B;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-toggle:hover {
    background: #F8D12F;
    transform: scale(1.1);
}

.faq-toggle svg {
    color: #0B0E11;
    transition: all 0.3s ease;
}

.faq-icon-minus {
    display: block;
}

.faq-icon-plus {
    display: none;
}

.faq-item:not(.active) .faq-icon-minus {
    display: none;
}

.faq-item:not(.active) .faq-icon-plus {
    display: block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 2rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    color: #B7BDC6;
    line-height: 1.6;
    margin: 0;
    padding-left: 0;
}

.faq-answer p strong {
    color: #F0B90B;
    font-weight: 600;
}

/* Report Page Styles */
.report-hero {
    background: linear-gradient(135deg, #0B0E11 0%, #181A20 50%, #0B0E11 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    padding: 1rem 0 0 0;
}

.report-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(240, 185, 11, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 50%, rgba(240, 185, 11, 0.08) 0%, transparent 40%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

.report-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
}

.report-header {
    margin-bottom: 3rem;
}

.report-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0B90B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-section {
    background: rgba(43, 49, 57, 0.3);
    border: 1px solid #2B3139;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
}

.rating-percentage {
    font-size: 4rem;
    font-weight: 700;
    color: #F0B90B;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.rating-progress {
    text-align: left;
}

.progress-label {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #2B3139;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #F0B90B 0%, #F8D12F 100%);
    border-radius: 4px;
    transition: width 2s ease;
    box-shadow: 0 0 10px rgba(240, 185, 11, 0.5);
}

.check-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #22C55E;
    font-weight: 500;
    font-size: 1rem;
}

.check-status svg {
    width: 20px;
    height: 20px;
}

.account-details {
    background: rgba(43, 49, 57, 0.3);
    border: 1px solid #2B3139;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.details-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-align: center;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(43, 49, 57, 0.5);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 1rem;
    color: #B7BDC6;
    font-weight: 500;
}

.detail-value {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 600;
    text-align: right;
    max-width: 60%;
}

.detail-value.address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    max-width: 50%;
}

.action-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin-bottom: 3rem;
}

.btn-full-width {
    width: 100%;
    max-width: 100%;
}

.btn-secondary {
    background: transparent;
    color: #F0B90B;
    border: 2px solid #F0B90B;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.btn-secondary:hover {
    background: rgba(240, 185, 11, 0.1);
    color: #F8D12F;
    border-color: #F8D12F;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 185, 11, 0.2);
}

/* Footer Section */
.footer {
    background: #0B0E11;
    border-top: 1px solid rgba(240, 185, 11, 0.1);
    padding: 4rem 0 2rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(240, 185, 11, 0.3) 50%, transparent 100%);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.footer-logo:hover svg {
    transform: scale(1.1);
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F0B90B;
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-text {
    color: #F8D12F;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    margin-left: auto;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 12px;
    color: #F0B90B;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: rgba(240, 185, 11, 0.2);
    border-color: rgba(240, 185, 11, 0.4);
    color: #F8D12F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 185, 11, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(43, 49, 57, 0.5);
}

.footer-copyright p {
    color: #B7BDC6;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 769px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        padding: 0.75rem 0;
        min-height: 60px;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .logo svg {
        width: 32px;
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .header-right {
        flex-shrink: 0;
    }
    
    .btn-wallet {
        padding: 14px 32px !important;
        font-size: 0.9rem !important;
        border: 2px solid #F0B90B !important;
        background: transparent !important;
        color: #F0B90B !important;
    }
    
    .hero {
        margin-top: 60px;
        padding: 2rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-text {
        text-align: center;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin: 0 auto 2rem;
    }
    
    .about-service {
        padding: 1.5rem 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-card {
        padding: 1.2rem;
    }
    
    .advantage-img {
        height: 140px;
    }
    
    .advantage-description {
        font-size: 13px;
    }
    
    /* Report Section Mobile */
    .report-section {
        padding: 3rem 0;
    }
    
    .report-title {
        font-size: 2.5rem;
    }
    
    .report-subtitle {
        font-size: 1.1rem;
    }
    
    .report-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .verification-details {
        padding: 1.5rem;
    }
    
    .details-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .condition-item {
        padding: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .condition-icon {
        width: 42px;
        height: 42px;
        margin-right: 1.2rem;
    }
    
    .condition-content h4 {
        font-size: 1.1rem;
    }
    
    .condition-content p {
        font-size: 0.9rem;
    }
    
    .condition-status {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .chart-container {
        padding: 1.5rem 0;
        margin: 1.5rem 0;
    }
    
    .circular-chart {
        width: 250px;
        height: 250px;
    }
    
    .chart-container::before {
        width: 290px;
        height: 290px;
    }
    
    .chart-percentage {
        font-size: 2.5rem;
    }
    
    .chart-label {
        font-size: 1rem;
    }
    
    .summary-item {
        padding: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .summary-icon {
        width: 40px;
        height: 40px;
        margin-right: 1rem;
    }
    
    .summary-content h4 {
        font-size: 1.1rem;
    }
    
    .summary-content p {
        font-size: 0.9rem;
    }
    
    .check-wallet-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .btn-check-wallet {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
    
    /* FAQ Section Mobile */
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-list {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin-right: 1rem;
    }
    
    .faq-question-text {
        font-size: 1.1rem;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        padding-left: 0;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 0 1.5rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-social {
        justify-content: center;
        margin-left: 0;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    /* Report Page Mobile Styles */
    .report-hero {
        margin-top: 55px;
        padding: 2rem 0;
    }
    
    .report-main-title {
        font-size: 2.5rem;
    }
    
    .rating-section {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .rating-percentage {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .progress-label {
        font-size: 1rem;
    }
    
    .account-details {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .details-title {
        font-size: 1.6rem;
    }
    
    .detail-item {
        padding: 0.8rem 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .detail-label {
        font-size: 0.9rem;
    }
    
    .detail-value {
        font-size: 0.9rem;
        text-align: left;
        max-width: 100%;
    }
    
    .detail-value.address {
        font-size: 0.8rem;
        max-width: 100%;
    }
    
    .action-buttons {
        width: 100%;
        max-width: 100%;
    }
    
    .btn-secondary {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        padding: 0.6rem 0;
        min-height: 55px;
    }
    
    .logo svg {
        width: 28px;
        height: 28px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .btn-wallet {
        padding: 14px 32px !important;
        font-size: 0.9rem !important;
        border: 2px solid #F0B90B !important;
        background: transparent !important;
        color: #F0B90B !important;
    }
    
    .hero {
        margin-top: 55px;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .about-service {
        padding: 1.5rem 0;
    }
    
    .advantages-grid {
        gap: 1rem;
    }
    
    .advantage-card {
        padding: 1rem 0.8rem;
    }
    
    .advantage-img {
        height: 120px;
    }
    
    .advantage-description {
        font-size: 12px;
    }
    
    /* Report Section Mobile 480px */
    .report-section {
        padding: 2rem 0;
    }
    
    .report-title {
        font-size: 2rem;
    }
    
    .report-subtitle {
        font-size: 1rem;
    }
    
    .report-content {
        padding: 0 0.5rem;
    }
    
    .verification-details {
        padding: 1rem;
    }
    
    .details-title {
        font-size: 1.5rem;
    }
    
    .condition-item {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .condition-content h4 {
        font-size: 1rem;
    }
    
    .condition-content p {
        font-size: 0.85rem;
    }
    
    .circular-chart {
        width: 220px;
        height: 220px;
    }
    
    .chart-container::before {
        width: 260px;
        height: 260px;
    }
    
    .chart-percentage {
        font-size: 2.2rem;
    }
    
    .chart-label {
        font-size: 0.9rem;
    }
    
    .summary-item {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .summary-icon {
        width: 36px;
        height: 36px;
        margin-right: 0.8rem;
    }
    
    .summary-content h4 {
        font-size: 1rem;
    }
    
    .summary-content p {
        font-size: 0.85rem;
    }
    
    .check-wallet-section {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .btn-check-wallet {
        padding: 14px 36px;
        font-size: 1rem;
    }
    
    /* FAQ Section Mobile 480px */
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-list {
        padding: 0 0.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.2rem;
    }
    
    .faq-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        margin-right: 0.8rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-toggle {
        width: 24px;
        height: 24px;
    }
    
    .faq-answer {
        padding: 0 1.2rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        padding-left: 0;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 0 1.5rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-social {
        justify-content: center;
        margin-left: 0;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    /* Report Page Tablet Styles */
    .report-hero {
        margin-top: 60px;
        padding: 3rem 0;
    }
    
    .report-main-title {
        font-size: 3rem;
    }
    
    .rating-section {
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
    }
    
    .rating-percentage {
        font-size: 3.5rem;
    }
    
    .account-details {
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
    }
    
    .details-title {
        font-size: 1.7rem;
    }
    
    .action-buttons {
        width: 100%;
        max-width: 100%;
    }
}
