/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Basier Circle", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f4f4f4;
    color: #2f2f2f;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
}

/* Main Content */
.main-content {
    flex-grow: 1;
    padding: 40px;
}

.content-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #2f2f2f;
    margin: 32px 0 16px;
}

.description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 800px;
}

/* Link container and copy functionality */
.link-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.invite-link {
    color: #f78817;
    text-decoration: none;
    font-size: 16px;
    padding: 12px 16px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    flex-grow: 1;
    max-width: 600px;
}

.copy-button {
    background-color: #f78817;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-button:hover {
    background-color: #e67a00;
}

.copy-button i {
    font-size: 20px;
}

.monitor-text {
    font-size: 16px;
    color: #666;
    margin-top: 24px;
    max-width: 800px;
}

.nav-button {
    background-color: #f78817;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    text-decoration: none;
    margin-right: 16px;
}

.nav-button:hover {
    background-color: #e67a00;
}

.nav-button i {
    font-size: 20px;
}

.back-button {
    background-color: #666;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    text-decoration: none;
}

.back-button:hover {
    background-color: #555;
}

.back-button i {
    font-size: 20px;
}

.button-group {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .content-container {
        width: 95%;
        padding: 1rem 0;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .link-container {
        flex-direction: column;
        align-items: stretch;
    }
}