:root {
    /* Primary Colors */
    --primary: #b86bff;
    /* Bright and vibrant purple */
    --primary-light: #d2a8ff;
    /* Light lavender */
    --primary-dark: #9446d3;
    /* Deep but vivid purple */
    --primary-transparent: rgba(184, 107, 255, 0.15);

    /* Secondary Colors */
    --secondary: #20c997;
    --secondary-light: #7ef0d4;
    --secondary-dark: #138d6c;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f9f9f9;
    --bg-tertiary: #f0f0f0;

    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #333333;
    --text-tertiary: #666666;
    --text-inverse: #ffffff;

    /* Status Colors */
    --success: #2ecc71;
    --warning: #f1c40f;
    --error: #e74c3c;
    --info: #3498db;

    /* Border Colors */
    --border-primary: rgba(184, 107, 255, 0.2);
    --border-secondary: #cccccc;
    --border-dark: #999999;

    /* Shadow Colors */
    --shadow-primary: 0 10px 20px rgba(0, 0, 0, 0.1);
    --shadow-secondary: 0 5px 15px rgba(0, 0, 0, 0.15);

    /* Gradient */
    --gradient: linear-gradient(135deg, var(--primary), var(--primary-light));

    /* Glass Effect */
    --glass: rgba(0, 0, 0, 0.05);

    /* Card Styles */
    --card-bg: var(--bg-secondary);
    --card-border: var(--border-primary);
    --card-shadow: var(--shadow-primary);

    /* Button Styles */
    --btn-primary-bg: var(--gradient);
    --btn-primary-text: var(--text-inverse);
    --btn-secondary-bg: var(--bg-tertiary);
    --btn-secondary-text: var(--text-primary);

    /* Input Styles */
    --input-bg: var(--bg-tertiary);
    --input-border: var(--border-primary);
    --input-text: var(--text-primary);
    --input-placeholder: var(--text-tertiary);

    /* Navbar */
    --navbar-bg: var(--bg-secondary);
    --navbar-text: var(--text-primary);
    --navbar-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    /* Footer */
    --footer-bg: #f0f0f0;
    --footer-text: var(--text-secondary);
    --footer-link: var(--text-tertiary);

    /* Mode */
    --mode-toggle-icon: "🌙";
}

li {
    margin-bottom: 10px;
}

strong {
    color: var(--text-primary);
}

.highlight-box {
    background-color: var(--bg-tertiary);
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.data-table th {
    background-color: var(--primary-transparent);
    color: var(--primary);
    text-align: left;
    padding: 12px;
    font-weight: 600;
}

.data-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-primary);
    vertical-align: top;
}

.data-table tr:last-child td {
    border-bottom: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .privacy-hero h1 {
        font-size: 3rem;
    }
}

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

    .privacy-hero p {
        font-size: 1.1rem;
    }

    .privacy-content {
        padding: 30px;
    }

    .privacy-section-title {
        font-size: 1.8rem;
    }

    .data-table {
        display: block;
        overflow-x: auto;
    }
}

.container {
    max-width: 100%;
    padding: 0;
}

/* Hero Section - Full Width */
.hero-section {
    background: var(--gradient);
    color: var(--text-inverse);
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    margin-top: 60px;
    max-width: 800px;
    width: 100%;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-secondary);
}

/* Steps Section - Full Width */
.steps-section {
    padding: 100px 5%;
    background-color: var(--bg-primary);
}

.step-container {
    display: flex;
    margin-bottom: 80px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
    background-color: var(--primary-transparent);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 50px;
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.step-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.step-image {
    max-width: 700px;
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-primary);
}

.step-image img {
    width: 100%;
    display: block;
}

/* Features Section - Full Width */
.features-section {
    padding: 100px 5%;
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 40px 30px;
    background-color: var(--bg-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-primary);
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: var(--primary-transparent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.feature-card p {
    font-size: 1.1rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* FAQ Section - Full Width */
.faq-section {
    padding: 100px 5%;
    background-color: var(--bg-primary);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-primary);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    background-color: var(--bg-primary);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: var(--text-primary);
}

.faq-question:hover {
    background-color: var(--bg-tertiary);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-answer {
    display: none;
    padding: 30px;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section - Full Width */
.cta-section {
    padding: 120px 5%;
    background: var(--gradient);
    color: var(--text-inverse);
    text-align: center;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--bg-primary);
    color: var(--primary);
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-secondary);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background-color: var(--bg-secondary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .step-content h2 {
        font-size: 2rem;
    }
}

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

    .hero-content .subtitle {
        font-size: 1.2rem;
    }

    .step-container {
        flex-direction: column;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-card h2 {
        font-size: 2.2rem;
    }

    .cta-card p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .step-content h2 {
        font-size: 1.6rem;
    }

    .step-content p {
        font-size: 1rem;
    }

    .cta-card h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

.privacy-hero {
    background: var(--gradient);
    color: var(--text-inverse);
    padding: 100px 5%;
    text-align: center;
}

.privacy-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.privacy-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Content Section */
.privacy-section {
    padding: 80px 5%;
    background-color: var(--bg-primary);
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
}

.last-updated {
    text-align: center;
    color: var(--text-tertiary);
    margin-bottom: 50px;
    font-style: italic;
}

.privacy-content {
    background-color: var(--bg-secondary);
    border-radius: 16px;
    padding: 50px;
    box-shadow: var(--shadow-primary);
}

.privacy-section-title {
    font-size: 2rem;
    color: var(--primary);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-primary);
}

.privacy-section-title:first-child {
    margin-top: 0;
}

.privacy-subtitle {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 30px 0 15px;
}

@media (max-width: 480px) {
    .privacy-hero h1 {
        font-size: 2rem;
    }

    .privacy-section-title {
        font-size: 1.6rem;
    }

    .privacy-subtitle {
        font-size: 1.2rem;
    }

    .privacy-content {
        padding: 25px 20px;
    }
}

/* Hero Section */
.tos-hero {
    background: var(--gradient);
    color: var(--text-inverse);
    padding: 100px 5%;
    text-align: center;
}

.tos-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.tos-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Content Section */
.tos-section {
    padding: 80px 5%;
    background-color: var(--bg-primary);
}

.tos-container {
    max-width: 1000px;
    margin: 0 auto;
}

.last-updated {
    text-align: center;
    color: var(--text-tertiary);
    margin-bottom: 50px;
    font-style: italic;
}

.tos-content {
    background-color: var(--bg-secondary);
    border-radius: 16px;
    padding: 50px;
    box-shadow: var(--shadow-primary);
}

.tos-section-title {
    font-size: 2rem;
    color: var(--primary);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-primary);
}

.tos-section-title:first-child {
    margin-top: 0;
}

.tos-subtitle {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 30px 0 15px;
}

li {
    margin-bottom: 10px;
}

strong {
    color: var(--text-primary);
}

.highlight-box {
    background-color: var(--bg-tertiary);
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .tos-hero h1 {
        font-size: 3rem;
    }
}

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

    .tos-hero p {
        font-size: 1.1rem;
    }

    .tos-content {
        padding: 30px;
    }

    .tos-section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .tos-hero h1 {
        font-size: 2rem;
    }

    .tos-section-title {
        font-size: 1.6rem;
    }

    .tos-subtitle {
        font-size: 1.2rem;
    }

    .tos-content {
        padding: 25px 20px;
    }
}

/* Hero Section - Full Width */
.contact-hero {
    background: var(--gradient);
    color: var(--text-inverse);
    padding: 100px 5%;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Section - Full Width */
.contact-section {
    padding: 80px 5%;
    background-color: var(--bg-primary);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.contact-card {
    background-color: var(--bg-secondary);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-primary);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-transparent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.contact-details p,
.contact-details a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.contact-details a:hover {
    color: var(--primary);
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    background-color: var(--bg-tertiary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-transparent);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--gradient);
    color: var(--text-inverse);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-secondary);
}

/* FAQ Section */
.faq-section {
    padding: 80px 5%;
    background-color: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-primary);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background-color: var(--bg-primary);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: var(--text-primary);
}

.faq-question:hover {
    background-color: var(--bg-tertiary);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-answer {
    display: none;
    padding: 25px;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-secondary);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.faq-item.active .faq-question {
    background-color: var(--bg-tertiary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-right: 15px;
    }

    .contact-details h4 {
        font-size: 1.1rem;
    }
}

.container {
    max-width: 100%;
    padding: 0;
}

/* Hero Section - Full Width */
.hero-section {
    background: var(--gradient);
    color: var(--text-inverse);
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
    color: var(--text-primary);
}

/* Mission Section - Full Width */
.mission-section {
    padding: 100px 5%;
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary);
}

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

.mission-statement {
    font-size: 1.5rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.mission-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px 30px;
    background-color: var(--bg-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-primary);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: var(--primary-transparent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.value-card p {
    font-size: 1.1rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* Team Section - Full Width */
.team-section {
    padding: 100px 5%;
    background-color: var(--bg-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-tertiary);
    max-width: 700px;
    margin: 0 auto 60px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 30px;
    background-color: var(--bg-secondary);
    border-radius: 12px;
    box-shadow: var(--shadow-primary);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-transparent);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.position {
    font-size: 1rem;
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

.bio {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: var(--text-tertiary);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

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

/* Partners Section - Full Width */
.partners-section {
    padding: 100px 5%;
    background: var(--bg-secondary);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Section - Full Width */
.cta-section {
    padding: 120px 5%;
    background: var(--gradient);
    color: var(--text-inverse);
    text-align: center;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--bg-primary);
    color: var(--primary);
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-secondary);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background-color: var(--bg-secondary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

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

    .hero-content .subtitle {
        font-size: 1.2rem;
    }

    .cta-card h2 {
        font-size: 2.2rem;
    }

    .cta-card p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .cta-card h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Hero Section */
.rates-hero {
    background: var(--gradient);
    color: var(--text-inverse);
    padding: 100px 5%;
    text-align: center;
}

.rates-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.rates-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Rates Section */
.rates-section {
    padding: 80px 5%;
    background-color: var(--bg-primary);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary);
}

/* Exchange Calculator */
.calculator-container {
    max-width: 800px;
    margin: 0 auto 80px;
    background-color: var(--bg-secondary);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-primary);
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
}

.calculator-header h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.calculator-header p {
    color: var(--text-tertiary);
}

.calculator-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    background-color: var(--bg-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-transparent);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999999' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 12px;
}

.swap-btn {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary);
    font-size: 1.2rem;
}

.swap-btn:hover {
    background-color: var(--primary-transparent);
    transform: rotate(180deg);
}

.result-container {
    margin-top: 30px;
    padding: 25px;
    background-color: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    text-align: center;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.result-label {
    color: var(--text-tertiary);
    font-size: 1.1rem;
}

.action-btn {
    background: var(--gradient);
    color: var(--text-inverse);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
    width: 100%;
    margin-top: 30px;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-secondary);
}

/* Rates Table */
.rates-table-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.rates-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-primary);
}

.rates-table th {
    background-color: var(--primary);
    color: var(--text-inverse);
    padding: 18px;
    text-align: left;
    font-weight: 600;
}

.rates-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-primary);
    color: var(--text-secondary);
}

.rates-table tr:last-child td {
    border-bottom: none;
}

.rates-table tr:hover td {
    background-color: var(--bg-secondary);
}

.rate-change {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.rate-change.up {
    color: var(--success);
    background-color: rgba(46, 204, 113, 0.1);
}

.rate-change.down {
    color: var(--error);
    background-color: rgba(231, 76, 60, 0.1);
}

.rate-change i {
    margin-right: 5px;
}

/* Info Cards */
.info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.info-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-secondary);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-primary);
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.info-card h3 i {
    margin-right: 15px;
    font-size: 1.8rem;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .rates-hero h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

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

    .rates-hero p {
        font-size: 1.1rem;
    }

    .result-value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .rates-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .calculator-container {
        padding: 30px 20px;
    }

    .result-value {
        font-size: 1.8rem;
    }

    .rates-table th,
    .rates-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}

/* Hero Section */
.coins-hero {
    background: var(--gradient);
    color: var(--text-inverse);
    padding: 100px 5%;
    text-align: center;
}

.coins-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.coins-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Search Section */
.search-section {
    padding: 40px 5%;
    background-color: var(--bg-primary);
    max-width: 1200px;
    margin: 0 auto;
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    padding-left: 50px;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    font-size: 1.1rem;
    background-color: var(--bg-tertiary);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-transparent);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    font-size: 1.2rem;
}

/* Coins Section */
.coins-section {
    padding: 40px 5% 80px;
    background-color: var(--bg-primary);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary);
}

.coins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.coin-card {
    background-color: var(--bg-secondary);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-primary);
    transition: all 0.3s ease;
    border: 1px solid var(--border-primary);
}

.coin-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-secondary);
    border-color: var(--primary-light);
}

.coin-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-primary);
}

.coin-logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
    object-fit: contain;
    background-color: var(--bg-primary);
    padding: 5px;
}

.coin-name {
    flex: 1;
}

.coin-name h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.coin-name p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.coin-symbol {
    background-color: var(--primary-transparent);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.networks-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.networks-title i {
    margin-right: 8px;
    font-size: 1rem;
}

.networks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.network-badge:hover {
    background-color: var(--primary-transparent);
    color: var(--primary);
    border-color: var(--primary-light);
}

/* Stats Section */
.stats-section {
    padding: 60px 5%;
    background-color: var(--bg-secondary);
    margin-top: 40px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    min-width: 200px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .coins-hero h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

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

    .coins-hero p {
        font-size: 1.1rem;
    }

    .coins-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 480px) {
    .coins-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .stat-card {
        min-width: 150px;
        padding: 20px 15px;
    }

    .stat-value {
        font-size: 2rem;
    }
}

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

/* Profile Header Style */
.profile-header {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 2rem 0 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.header-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 70% 30%,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 60%
    );
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.profile-overview {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.avatar-container {
    position: relative;
}

.avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
}

.profile-info h1 {
    margin: 0 0 0.3rem;
    font-size: 1.8rem;
}

.member-since {
    margin: 0 0 0.5rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.profile-stats {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Profile Navigation */
.profile-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.profile-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    overflow-x: auto;
}

.nav-itemvg {
    padding: 1rem 1.5rem;
    color: var(--text-tertiary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.nav-itemvg.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.nav-itemvg i {
    font-size: 0.9rem;
}

/* Profile Content */
.profile-content {
    /* max-width: 1200px; */
    /* margin: 0 auto 3rem; */
    padding: 0 1.5rem;
}

.profile-container {
    display: flex;
    gap: 2rem;
}

.profile-col {
    flex: 1;
    min-width: 0;
}

/* Card Styles */
.profile-card {
    background: white;
    border-radius: 12px;
    /* padding: 1.5rem; */
    margin-bottom: 2rem;
    box-shadow: var(--shadow-primary);
}

.profile-card.highlight {
    /* border-top: 4px solid var(--primary); */
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-header h2 {
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-header h2 i {
    color: var(--primary);
}

.edit-btn {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-btn:hover {
    background: var(--bg-secondary);
}

/* Referral Link */
.referral-link-container {
    display: flex;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}

#referral-link {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    background: var(--bg-tertiary);
    font-size: 0.95rem;
    font-family: monospace;
}

.btn {
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    border: none;
}

.btn-primary {
    background: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-1px);
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-primary);
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-trend.up {
    color: var(--success);
}

.stat-trend.down {
    color: var(--error);
}

/* How It Works Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.step {
    display: flex;
    gap: 1rem;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.step-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.step-content p {
    margin: 0;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

/* Commission Example */
.commission-example {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.example-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.example-header i {
    color: var(--primary);
}

.example-header h3 {
    margin: 0;
    font-size: 1rem;
}

.example-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
}

.example-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.example-row.highlight {
    font-weight: 600;
    color: var(--primary);
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-primary);
}

/* Activity Items */
.activity-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-primary);
}

.activity-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.activity-details {
    flex: 1;
}

.activity-details h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
}

.activity-details p {
    margin: 0 0 0.5rem;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.activity-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
}

.activity-date {
    color: var(--text-tertiary);
}

.activity-status {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.activity-status.success {
    background: rgba(46, 204, 113, 0.1);
    color: var(--success);
}

.activity-status.pending {
    background: rgba(241, 196, 15, 0.1);
    color: var(--warning);
}

.view-all {
    color: var(--primary);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.view-all i {
    font-size: 0.7rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .profile-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .profile-overview {
        flex-direction: column;
        text-align: center;
    }

    .profile-stats {
        justify-content: center;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .profile-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .profile-nav-container {
        padding: 0;
    }

    .nav-itemvg {
        padding: 1rem;
    }

    .referral-link-container {
        flex-direction: column;
    }
}

/* Referral Link */
.referral-link-container {
    display: flex;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}

#referral-link {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    background: var(--bg-tertiary);
    font-size: 0.95rem;
    font-family: monospace;
}

.btn {
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    border: none;
}

.btn-primary {
    background: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-1px);
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-primary);
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-trend.up {
    color: var(--success);
}

.stat-trend.down {
    color: var(--error);
}

/* Settings Page Specific Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    background: white;
    font-size: 0.95rem;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.error-message {
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: block;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.alert-success {
    background: rgba(46, 204, 113, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.alert-danger {
    background: rgba(231, 76, 60, 0.1);
    color: var(--error);
    border: 1px solid var(--error);
}

.badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-success {
    background: rgba(46, 204, 113, 0.1);
    color: var(--success);
}

.badge-warning {
    background: rgba(241, 196, 15, 0.1);
    color: var(--warning);
}

.activity-details h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
}

.activity-details p {
    margin: 0 0 0.5rem;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.activity-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
}

.activity-date {
    color: var(--text-tertiary);
}

.activity-status {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.activity-status.success {
    background: rgba(46, 204, 113, 0.1);
    color: var(--success);
}

.activity-status.pending {
    background: rgba(241, 196, 15, 0.1);
    color: var(--warning);
}

.view-all {
    color: var(--primary);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.view-all i {
    font-size: 0.7rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .profile-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .profile-overview {
        flex-direction: column;
        text-align: center;
    }

    .profile-stats {
        justify-content: center;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .profile-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .profile-nav-container {
        padding: 0;
    }

    .nav-itemvg {
        padding: 1rem;
    }

    .referral-link-container {
        flex-direction: column;
    }
}

.swap-history-container {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-primary);
}

.swap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-primary);
}

.swap-header h2 {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.swap-header h2 i {
    color: var(--primary);
}

.swap-filters {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-primary);
    border-radius: 6px;
    background: white;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.swap-search {
    position: relative;
}

.swap-search input {
    padding: 0.5rem 1rem 0.5rem 2rem;
    border: 1px solid var(--border-primary);
    border-radius: 6px;
    width: 200px;
    font-size: 0.9rem;
}

.swap-search i {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.swap-table {
    width: 100%;
    border-collapse: collapse;
}

.swap-table th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border-primary);
}

.swap-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-primary);
    vertical-align: middle;
}

.swap-table tr:last-child td {
    border-bottom: none;
}

.swap-table tr:hover {
    background-color: var(--bg-tertiary);
}

.swap-direction {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.swap-arrow {
    color: var(--text-tertiary);
}

.swap-amount {
    font-weight: 600;
}

.swap-status {
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

.status-completed {
    background: rgba(46, 204, 113, 0.1);
    color: var(--success);
}

.status-pending {
    background: rgba(241, 196, 15, 0.1);
    color: var(--warning);
}

.status-failed,
.status-expired {
    background: rgba(231, 76, 60, 0.1);
    color: var(--error);
}

.swap-fee {
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

.swap-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.3rem;
}

.action-btn:hover {
    color: var(--primary);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.page-item {
    list-style: none;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
}

.page-link:hover {
    background: var(--bg-tertiary);
}

.page-link.active {
    background: var(--primary);
    color: white;
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-tertiary);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}

.empty-state p {
    margin: 0;
}

/* Transaction Details Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-tertiary);
}

.modal-body {
    padding: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-primary);
}

.detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-label {
    color: var(--text-tertiary);
}

.detail-value {
    font-weight: 500;
}

.detail-value a {
    color: var(--primary);
    text-decoration: none;
}

.detail-value a:hover {
    text-decoration: underline;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-primary);
    display: flex;
    justify-content: flex-end;
}

/* Mobile Table Styles */
@media (max-width: 768px) {
    .swap-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .swap-filters {
        width: 100%;
        flex-wrap: wrap;
    }

    .swap-search input {
        width: 100%;
    }

    .swap-table {
        display: block;
        overflow-x: auto;
    }

    .swap-table thead {
        display: none;
    }

    .swap-table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--border-primary);
        border-radius: 8px;
        padding: 0.5rem;
    }

    .swap-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        border-bottom: 1px solid var(--border-light);
        text-align: right;
    }

    .swap-table td:before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-secondary);
        margin-right: 1rem;
        text-align: left;
    }

    .swap-table td:last-child {
        border-bottom: none;
    }

    .swap-direction {
        flex-direction: column;
        align-items: flex-end;
        gap: 0.2rem;
    }

    .swap-arrow {
        display: none;
    }

    .swap-actions {
        justify-content: flex-end;
    }

    .detail-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .detail-value {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .swap-table td {
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
        padding: 0.75rem 0.5rem;
    }

    .swap-table td:before {
        align-self: flex-start;
        margin-bottom: 0.25rem;
    }

    .swap-status {
        margin-left: auto;
    }
}

.edit-btn {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-btn:hover {
    background: var(--bg-secondary);
}

/* Profile Page Specific Styles */
.avatar-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.avatar-preview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-preview-initial {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.avatar-input {
    display: none;
}

.avatar-upload-btn {
    cursor: pointer;
    margin-top: 0.5rem;
}

textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    min-height: 100px;
    resize: vertical;
}

.verification-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.verification-step {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: var(--bg-tertiary);
}

.verification-step.completed {
    background: rgba(46, 204, 113, 0.05);
    border-left: 3px solid var(--success);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.verification-step.completed .step-icon {
    background: rgba(46, 204, 113, 0.1);
    color: var(--success);
}

.step-content h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
}

.step-content p {
    margin: 0;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.step-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.step-content a:hover {
    text-decoration: underline;
}
