/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #dc2626;
    --dark-red: #991b1b;
    --light-red: #ef4444;
    --accent-red: #f87171;
    --black: #000000;
    --dark-gray: #0f0f0f;
    --medium-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --white: #ffffff;
    --text-gray: #e5e5e5;
    --text-muted: #a3a3a3;
    --border-gray: #404040;
    
    --font-family: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
    --shadow-hover: 0 20px 40px rgba(220, 38, 38, 0.2);
    --glow: 0 0 20px rgba(220, 38, 38, 0.3);
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--medium-gray) 100%);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Enhanced Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--medium-gray) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: logoEntrance 2s ease-out;
}

/* Enhanced Logo Styling */
.logo {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    animation: logoFloat 3s ease-in-out infinite;
    border-radius: var(--border-radius);
    object-fit: contain;
    filter: drop-shadow(var(--glow));
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.5));
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-red), var(--light-red), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.loading-bar {
    width: 300px;
    height: 6px;
    background: var(--medium-gray);
    border-radius: 3px;
    margin-top: 30px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--light-red), var(--accent-red));
    border-radius: 3px;
    animation: loadingProgress 3s ease-in-out;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

/* Main Content */
#main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

#main-content.show {
    opacity: 1;
}

.hidden {
    display: none;
}

/* Enhanced Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 30px rgba(220, 38, 38, 0.1);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: translateY(-2px);
}

/* Fixed and Enhanced Logo Images */
.nav-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(220, 38, 38, 0.3));
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px;
}

.nav-logo-img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 15px rgba(220, 38, 38, 0.5));
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius);
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(220, 38, 38, 0.3));
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(220, 38, 38, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-red);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: slideInLeft 1s ease-out;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-red), var(--light-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.6s both;
}

.floating-cards {
    position: relative;
    width: 300px;
    height: 300px;
}

.crypto-card {
    position: absolute;
    background: linear-gradient(135deg, var(--medium-gray), var(--light-gray));
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.crypto-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.crypto-card:nth-child(1) {
    top: 0;
    left: 0;
    animation: float 3s ease-in-out infinite;
}

.crypto-card:nth-child(2) {
    top: 0;
    right: 0;
    animation: float 3s ease-in-out infinite 0.5s;
}

.crypto-card:nth-child(3) {
    bottom: 0;
    left: 0;
    animation: float 3s ease-in-out infinite 1s;
}

.crypto-card:nth-child(4) {
    bottom: 0;
    right: 0;
    animation: float 3s ease-in-out infinite 1.5s;
}

.crypto-symbol {
    font-size: 2rem;
    color: var(--primary-red);
}

.crypto-name {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.bg-dark {
    background: var(--dark-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--white), var(--text-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 4rem;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--medium-gray), var(--light-gray));
    border: 1px solid var(--border-gray);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.process-step p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--black), var(--medium-gray));
    border: 1px solid var(--border-gray);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-red);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Fees Section */
.fees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.fee-card {
    background: linear-gradient(135deg, var(--medium-gray), var(--light-gray));
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}

.fee-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.fee-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    text-align: center;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-gray);
}

.fee-item:last-child {
    border-bottom: none;
}

.fee-value {
    font-weight: 600;
    color: var(--primary-red);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, var(--black), var(--medium-gray));
    border: 1px solid var(--border-gray);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-red);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 0, 0, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--white);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-red);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--black);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.footer-section h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.currency-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.currency-tag {
    background: var(--medium-gray);
    color: var(--primary-red);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border-gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gray);
    color: var(--text-gray);
}

/* Animations */
@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1) rotate(-90deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes logoSpin {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(360deg);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    }
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Legal Pages Styling */
.legal-page {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.legal-subtitle {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}

.legal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0.5rem;
}

.risk-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    color: #92400e;
    font-weight: 500;
}

.security-note {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 1px solid #3b82f6;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    color: #1e40af;
    font-weight: 500;
}

.discord-link {
    color: #5865f2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.discord-link:hover {
    color: #4752c4;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-container {
        padding: 1rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px #dc2626; }
    50% { box-shadow: 0 0 20px #dc2626, 0 0 30px #dc2626; }
}

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

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.legal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    animation: rotate 3s linear infinite;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.last-updated {
    color: #9ca3af;
    font-size: 1rem;
    font-style: italic;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
    backdrop-filter: blur(10px);
}

.legal-section {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #dc2626;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.legal-section:nth-child(odd) {
    animation-delay: 0.1s;
}

.legal-section:nth-child(even) {
    animation-delay: 0.2s;
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.6s ease;
}

.legal-section:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.3);
    animation: glow 1.5s infinite;
}

.legal-section:hover::before {
    left: 100%;
}

.legal-section h2 {
    color: #dc2626;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.legal-section:hover h2 {
    animation: bounce 0.6s ease;
}

.legal-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 2rem 0 1rem;
    transition: color 0.3s ease;
}

.legal-section:hover h3 {
    color: #dc2626;
}

.legal-section p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.legal-section:hover p {
    color: #ffffff;
}

.legal-section ul {
    color: #d1d5db;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    position: relative;
}

.legal-section li:nth-child(n) {
    animation-delay: calc(0.1s * var(--i, 1));
}

.legal-section li:hover {
    transform: translateX(10px);
    color: #dc2626;
}

.legal-section a {
    color: #dc2626;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #ef4444;
    text-decoration: underline;
    text-shadow: 0 0 10px #dc2626;
}

.legal-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.3s ease;
}

.legal-footer:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

.legal-footer p {
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}

/* Interactive Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px #dc2626;
}

/* Floating Action Buttons */
.floating-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dc2626;
    margin: 1rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.nav-dot:hover, .nav-dot.active {
    transform: scale(1.5);
    opacity: 1;
    box-shadow: 0 0 15px #dc2626;
}

/* Collapsible Sections */
.collapsible {
    cursor: pointer;
    user-select: none;
}

.collapsible::after {
    content: ' ▼';
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.collapsible.active::after {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.collapsible-content.active {
    max-height: 1000px;
}

/* Fun Visual Elements */
.emoji-large {
    font-size: 2rem;
    display: inline-block;
    animation: bounce 2s infinite;
    margin-right: 0.5rem;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
    margin: 2rem 0;
    animation: glow 2s infinite;
}

/* Hover Effects for Text */
.interactive-text {
    transition: all 0.3s ease;
    cursor: default;
}

.interactive-text:hover {
    color: #dc2626;
    text-shadow: 0 0 10px #dc2626;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.05));
    border: 2px solid #dc2626;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
}

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

.highlight-box:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

.highlight-box:hover::before {
    left: 100%;
}

/* Contact Page Styles */
.contact-page {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    color: #9ca3af;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

/* Support Methods */
.support-methods {
    margin-bottom: 5rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.1);
}

.support-icon {
    margin-bottom: 1.5rem;
}

.support-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.support-card p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.support-link {
    display: inline-block;
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid #dc2626;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.support-link:hover {
    background: #dc2626;
    color: #ffffff;
}

/* Contact Form */
.contact-form-section {
    margin-bottom: 5rem;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #d1d5db;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

/* Support Info */
.support-info {
    margin-bottom: 4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
    backdrop-filter: blur(10px);
}

.info-card h3 {
    color: #dc2626;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.info-card a {
    color: #dc2626;
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

/* Emergency Contact */
.emergency-contact {
    text-align: center;
}

.emergency-card {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.05));
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.emergency-icon {
    margin-bottom: 1rem;
}

.emergency-card h3 {
    color: #dc2626;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.emergency-card p {
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.emergency-btn {
    display: inline-block;
    background: #dc2626;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .floating-cards {
        width: 250px;
        height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .fees-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Legal Pages Mobile */
    .legal-header h1,
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-content,
    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .support-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-card {
        margin: 0 1rem;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .crypto-card {
        padding: 1rem;
    }
    
    .crypto-symbol {
        font-size: 1.5rem;
    }
    
    .crypto-name {
        font-size: 0.8rem;
    }
}