body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #0a1628;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.license-container {
    background: #152238;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    max-width: 600px;
    width: 90%;
}

h1 { color: #d4a84b; margin-top: 0; }
h2 { color: #e6c478; font-size: 1.2rem; }

#summary-content {
    color: #c9cdd3;
    margin-bottom: 20px;
}

.scroll-box {
    background: #0a1628;
    border: 1px solid #d4a84b33;
    padding: 15px;
    height: 200px;
    overflow-y: scroll;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #c9cdd3;
    margin-bottom: 20px;
}

.scroll-box::-webkit-scrollbar {
    width: 8px;
}

.scroll-box::-webkit-scrollbar-track {
    background: #0a1628;
}

.scroll-box::-webkit-scrollbar-thumb {
    background: #d4a84b;
    border-radius: 4px;
}

.action-area {
    text-align: center;
}

#accept-btn {
    background-color: #d4a84b;
    color: #0a1628;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
}

#accept-btn:disabled {
    background-color: #3a4a5e;
    color: #7a8a9e;
    cursor: not-allowed;
}

#accept-btn:not(:disabled):hover {
    background-color: #e6c478;
}
