/* static/style.css */

/* Halloween theme: Dark gray background, orange accents */

body {
    background-color: #1a1a1a; /* Dark gray */
    color: #f2f2f2; /* Light text */
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background: linear-gradient(to bottom, #333333, #1a1a1a); /* Gray gradient */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.3); /* Orange glow */
    box-sizing: border-box;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    color: #ff7518; /* Orange */
    font-size: 24px;
}

h2 {
    color: #ff9933; /* Lighter orange */
    font-size: 18px;
    margin-top: 20px;
}

p, li {
    font-size: 16px;
    line-height: 1.5;
}

.profile p, .referrals p {
    margin: 10px 0;
}

.news-item, .task-list li {
    background-color: #2b2b2b; /* Darker gray */
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ff7518; /* Orange border */
}

.news-link {
    color: #ff7518;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.task-list {
    list-style: none;
    padding: 0;
}

.task-list li {
    margin-bottom: 10px;
}

.task-reward {
    text-decoration: none;
    color: #aaaaaa;
    font-size: 15px;
}

.referral-list {
    list-style: none;
    padding: 0;
}

.referral-list li {
    background-color: #2b2b2b;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
}

.ref-link {
    word-break: break-all;
    color: #aaaaaa;
    font-size: 14px;
    margin-top: 10px;
}

.ref-link i {
    text-decoration: none;
    color: #ff7518;
    font-size: 14px;
}

.play-btn, .copy-btn, .task-btn {
    background-color: #ff7518;
    color: #1a1a1a;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin: 10px 0;
    width: 100%;
}

.play-btn:disabled, .task-btn:disabled {
    background-color: #666666;
    cursor: not-allowed;
}

.loading {
    text-align: center;
    font-size: 18px;
    color: #ff7518;
}

.navigation {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    background-color: #333333;
    border-top: 1px solid #ff7518;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none; /* Removed max-width to span full screen */
    box-sizing: border-box;
    z-index: 1000;
}

.nav-item {
    font-size: 24px;
    color: #f2f2f2;
    text-decoration: none;
    padding: 5px 10px;
}

.nav-item.active {
    color: #ff7518;
}