



body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a2e;
    color: #fff;
    font-family: 'Font Rocks', sans-serif; /* Apply font globally or to specific elements */
}

.container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #00000088;
    border-radius: 10px;
}

.header .menu .music {
    font-size: 14px;
}

.header .menu .off {
    color: #888;
}

.header .status {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.header .status .online {
    margin-left: 5px;
    color: #32cd32;
}

.content h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.token-box {
    background: #0e0e1c;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.token-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.token-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.icon {
    width: 50px; /* Slightly larger circle for space around the image */
    height: 50px;
    background: url('./icon.jpeg') no-repeat center center;
    background-size: 70%; /* Reduce image size within the circle */
    border-radius: 50%; /* Makes it circular */
    border: 2px solid #222; /* Dark border around the circle */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0e0e1c; /* Matches the circle's internal background color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Optional: Add a glow effect */
}


.details h2 {
    font-size: 16px;
    margin: 0;
}

.details p {
    font-size: 14px;
    color: #aaa;
}

.claim-btn {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #fff;
    background: #3050fb;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.claim-btn:hover {
    background: #0056b3;
}
