/* Main CSS for KHACN site web - homepage and khacnsol page */
:root {
    --primary-color: #ffd700;
    --background-color: #000000;
    --text-color: #ffffff;
}
body {
    background: var(--background-color);
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}
.choice-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.choice {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
    padding: 20px;
    text-decoration: none;
}
.choice:hover {
    transform: scale(1.05);
}
.choice img {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255,215,0,0.3);
}
.choice h2 {
    color: var(--primary-color);
    text-align: center;
    margin-top: 20px;
}
/* KHACN SOL page specific */
.content {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}
.social-links {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
}
.social-links a {
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    margin: 10px 0;
}
.disclaimer {
    margin-top: 30px;
    font-size: 0.9em;
    opacity: 0.7;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
