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

body {
    font-family: 'Satoshi', sans-serif;
    background-color: #141414;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Terms Page Container */
.terms-page {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    background-color: #141414;
    border-radius: 24px;
    overflow: hidden;
}

/* Navigation */
.navbar {
    width: 100%;
    max-width: 1440px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 100px;
    background-color: #141414;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
    position: relative;
}

.nav-logo a {
    display: block;
}

.logo {
    height: 52px;
    width: auto;
}

.back-button {
    background-color: #54f100;
    border-radius: 100px;
    padding: 12px 32px;
    cursor: pointer;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-button span {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #101010;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px rgba(84, 241, 0, 0.2);
}

/* Terms Content Section */
.terms-content {
    width: 100%;
    background-color: #141414;
    padding: 80px 100px 120px;
    position: relative;
}

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

/* Terms Title */
.terms-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    font-size: 72px;
    line-height: 1.1;
    color: #54f100;
    margin-bottom: 20px;
    text-align: center;
}

.last-updated {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #9d9d9d;
    text-align: center;
    margin-bottom: 60px;
}

/* Terms Intro */
.terms-intro {
    margin-bottom: 40px;
}

.terms-intro p {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.8;
    color: #d6d6d6;
    margin-bottom: 20px;
}

.terms-intro p:first-child {
    font-weight: 600;
    color: #ffffff;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #606060, transparent);
    margin: 40px 0;
}

/* Terms Sections */
.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #54f100;
    margin-bottom: 24px;
}

.terms-section h3 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 16px;
    margin-top: 28px;
}

.terms-section p {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.8;
    color: #d6d6d6;
    margin-bottom: 16px;
}

.terms-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.terms-section ul li {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.8;
    color: #d6d6d6;
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.terms-section ul li::before {
    content: '•';
    position: absolute;
    left: 12px;
    color: #54f100;
    font-size: 24px;
    line-height: 1.8;
}

.terms-section ul li strong {
    color: #ffffff;
    font-weight: 600;
}

.terms-section a {
    color: #54f100;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.terms-section a:hover {
    opacity: 0.8;
}

/* Highlight Section */
.highlight-section {
    background: rgba(255, 68, 68, 0.05);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 24px;
    padding: 40px;
}

.highlight-section h2 {
    color: #ff4444;
}

.highlight-section p strong {
    color: #ff4444;
    font-weight: 700;
}

.highlight-section ul li::before {
    color: #ff4444;
}

/* Contact Section */
.contact-section {
    background: rgba(84, 241, 0, 0.05);
    border: 1px solid rgba(84, 241, 0, 0.2);
    border-radius: 24px;
    padding: 40px;
    margin-top: 60px;
}

.contact-section h2 {
    color: #54f100;
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 24px;
}

.contact-info p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 12px;
}

.contact-info strong {
    color: #54f100;
    font-weight: 600;
}

/* Acknowledgment */
.acknowledgment {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin-top: 60px;
    text-align: center;
}

.acknowledgment p {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}

/* Footer */
.footer {
    width: 100%;
    background-color: #101010;
    overflow: hidden;
    padding: 56px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 1240px;
    margin: 0 auto;
}

.footer-logo {
    margin: 0 auto 32px auto;
    text-align: center;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #606060;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(85deg);
}

.social-link:hover {
    background: rgba(84, 241, 0, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.copyright {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #c2c2c2;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #c2c2c2;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a.active {
    color: #54f100;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .terms-page {
        width: 100%;
        max-width: 1440px;
    }
}

@media (max-width: 1200px) {
    .terms-content {
        padding: 60px 80px 100px;
    }

    .terms-title {
        font-size: 60px;
    }

    .terms-section h2 {
        font-size: 32px;
    }

    .terms-section h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    /* Terms Page */
    .terms-page {
        width: 100%;
        border-radius: 0;
    }

    /* Navigation */
    .navbar {
        flex-direction: column;
        gap: 20px;
        padding: 20px 24px;
        background: rgba(20, 20, 20, 0.95);
        backdrop-filter: blur(10px);
    }

    .logo {
        height: 40px;
    }

    .back-button {
        padding: 10px 24px;
        font-size: 14px;
    }

    .back-button span {
        font-size: 14px;
    }

    /* Terms Content */
    .terms-content {
        padding: 50px 24px 80px;
    }

    .terms-title {
        font-size: 38px;
        margin-bottom: 16px;
    }

    .last-updated {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .terms-intro p {
        font-size: 16px;
        line-height: 1.7;
    }

    .divider {
        margin: 32px 0;
    }

    .terms-section {
        margin-bottom: 32px;
    }

    .terms-section h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .terms-section h3 {
        font-size: 20px;
        margin-bottom: 14px;
        margin-top: 24px;
    }

    .terms-section p {
        font-size: 16px;
        line-height: 1.7;
    }

    .terms-section ul li {
        font-size: 16px;
        line-height: 1.7;
        padding-left: 28px;
    }

    .terms-section ul li::before {
        left: 8px;
        font-size: 20px;
    }

    .highlight-section,
    .contact-section {
        padding: 28px 20px;
    }

    .contact-info p {
        font-size: 16px;
    }

    .acknowledgment {
        padding: 24px 20px;
        margin-top: 50px;
    }

    .acknowledgment p {
        font-size: 16px;
    }

    /* Footer */
    .footer {
        padding: 50px 0;
    }

    .footer-content {
        padding: 0 24px;
        width: 100%;
        margin: 0;
    }

    .footer-logo {
        margin-bottom: 24px;
    }

    .footer-logo .logo {
        height: 48px;
    }

    .footer-social {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 32px;
    }

    .social-links {
        gap: 16px;
    }

    .social-link {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding-top: 32px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .copyright {
        font-size: 14px;
        opacity: 0.7;
    }

    .footer-links {
        gap: 20px;
        justify-content: center;
    }

    .footer-links a {
        font-size: 14px;
        opacity: 0.8;
    }
}

@media (max-width: 480px) {
    .terms-content {
        padding: 40px 18px 70px;
    }

    .terms-title {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .last-updated {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .terms-intro p {
        font-size: 15px;
    }

    .terms-section h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .terms-section h3 {
        font-size: 18px;
        margin-bottom: 12px;
        margin-top: 20px;
    }

    .terms-section p,
    .terms-section ul li {
        font-size: 15px;
    }

    .highlight-section,
    .contact-section {
        padding: 24px 18px;
    }

    .contact-info p {
        font-size: 15px;
    }

    .acknowledgment {
        padding: 20px 18px;
    }

    .acknowledgment p {
        font-size: 15px;
    }

    .navbar {
        padding: 18px 18px;
    }

    .logo {
        height: 36px;
    }

    .back-button {
        padding: 8px 20px;
    }

    .back-button span {
        font-size: 13px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terms-section {
    animation: fadeIn 0.6s ease-out forwards;
}
