/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&family=Orbitron:wght@500;700&display=swap');

body {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
}

h1, h2, h3, .brand-font {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

/* Hiệu ứng kính (Glassmorphism) */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Badge Keyword Trending */
.trend-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    margin: 5px;
    display: inline-block;
    color: #e0e0e0;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid transparent;
}
.trend-tag:hover {
    background: #00d2ff;
    color: #000;
    box-shadow: 0 0 10px #00d2ff;
    border-color: #00d2ff;
}

/* Zodiac Circle */
.zodiac-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff00cc, #333399);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 10px;
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.5);
}

/* Thanh chỉ số đẹp */
.progress-thin {
    height: 6px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin-bottom: 10px;
}
.progress-bar-glow {
    box-shadow: 0 0 8px currentColor;
}

/* Modal chi tiết */
.modal-content.glass-modal {
    background: #1a1a2e;
    color: #fff;
    border: 1px solid #45a29e;
}