﻿/* Additional styles for Terms page */
.terms-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

    .terms-content .page-header {
        text-align: center;
        margin-bottom: 3rem;
    }

        .terms-content .page-header h1 {
            font-size: 2.8rem;
            font-weight: 700;
            background: linear-gradient(145deg, #e6b18c, #c47d58);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .terms-content .page-header p {
            color: #9a877a;
            font-size: 1.1rem;
        }

        .terms-content .page-header .last-updated {
            color: #6b5544;
            font-size: 0.85rem;
            margin-top: 0.3rem;
        }

.terms-section {
    background: #1a1714;
    border-radius: 28px;
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid #2f2822;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

    .terms-section:hover {
        border-color: #c47d58;
        box-shadow: 0 8px 28px rgba(196, 125, 88, 0.08);
    }

    .terms-section h2 {
        color: #e6b18c;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .terms-section h2 i {
            color: #c47d58;
            font-size: 1.3rem;
        }

    .terms-section p {
        color: #c7b2a0;
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 0.8rem;
    }

    .terms-section ul {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0 1rem 0;
    }

        .terms-section ul li {
            color: #c7b2a0;
            font-size: 0.95rem;
            line-height: 1.8;
            padding: 0.3rem 0 0.3rem 1.8rem;
            position: relative;
        }

            .terms-section ul li::before {
                content: "▸";
                color: #c47d58;
                position: absolute;
                left: 0;
                font-weight: 700;
            }

            .terms-section ul li strong {
                color: #e6b18c;
            }

            .terms-section ul li ul {
                margin: 0.2rem 0;
            }

                .terms-section ul li ul li {
                    padding: 0.1rem 0 0.1rem 1.5rem;
                }

                    .terms-section ul li ul li::before {
                        content: "•";
                        color: #9a877a;
                    }

    .terms-section .highlight-box {
        background: #1e2a22;
        border-left: 3px solid #4ade80;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        margin: 1rem 0;
    }

        .terms-section .highlight-box p {
            color: #9bc4af;
            margin-bottom: 0;
            font-size: 0.9rem;
        }

        .terms-section .highlight-box i {
            color: #4ade80;
            margin-right: 8px;
        }

.back-to-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c47d58;
    color: #0e0d0c;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .back-to-menu:hover {
        background: #e6b18c;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(196, 125, 88, 0.3);
        color: #0e0d0c;
    }

@media (max-width: 680px) {
    .terms-content .page-header h1 {
        font-size: 2rem;
    }

    .terms-section {
        padding: 1.5rem;
    }

        .terms-section h2 {
            font-size: 1.2rem;
        }

        .terms-section p,
        .terms-section ul li {
            font-size: 0.9rem;
        }

    .back-to-menu {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .terms-section ul li {
        padding-left: 1.2rem;
    }

        .terms-section ul li ul li {
            padding-left: 1rem;
        }
}
