:root {
    --bg-dark-blue: #0d1a2a;
    --card-blue: #1a334e;
    --text-white: #ffffff;
    --text-light-blue: #00ccff;
    --text-gray: #8fadc9;
    --button-blue: #00b4e6;
    --progress-bar-bg: #2a4365;
    --progress-bar-fill: #00b4e6;
    --input-bg: rgba(255, 255, 255, 0.08);
    --input-border: rgba(255, 255, 255, 0.1);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark-blue);
    color: var(--text-white);
    justify-content: center;
    align-items: center;
}

.axnv-container {
    background: linear-gradient(to bottom right, rgb(49, 85, 113), rgb(4, 34, 64));
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.axnv-header {
      font-size: 28px !important;
      font-weight:500;
      display: flex;
      justify-content: center;
      padding-bottom: 20px;
}

.axnv-logo {
    margin-right: 15px;
}

.axnv-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.axnv-title {
    color: #00cafe !important;
    margin: 0;
    font-size: 30px;
    font-weight: 600;
}

.axnv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
  
}

.axnv-card {
    background: linear-gradient(to bottom right, rgb(29, 70, 105), rgb(4, 34, 64));
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    border-left: 2px solid #00cafe;
}
      
.axnv-tier-indicator {
      background: linear-gradient(to bottom right, rgb(29, 70, 105), rgb(4, 34, 64));
  		padding: 20px 20px 10px 20px;
  border-radius: 10px;
      }

.axnv-card-label {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 10px;
}

.axnv-card-value {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
}

.axnv-progress-bar {
    background-color: var(--progress-bar-bg);
    border-radius: 5px;
    height: 8px;
    margin: 10px 0;
    overflow: hidden;
}

.axnv-progress-fill {
    background-color: var(--progress-bar-fill);
    height: 100%;
    width: 0%; /* Will be set by JS */
}

.axnv-subtitle {
    color: var(--text-light-blue);
    text-align: center;
    font-size: 20px;
    margin: 30px 0 20px 0;
    font-weight: 600;
}

.axnv-input {
    width: 100%;
    padding: 15px;
    background-color: #264460 !important;
    border: 1px solid #0f3253 !important;
    border-radius: 8px;
    color: white !important;
    font-size: 16px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.axnv-input::placeholder {
    color: var(--text-gray);
}

.axnv-input:focus {
    outline: none;
    border-color: var(--button-blue);
}

.axnv-result {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 20px;
}

.axnv-message {
    color: var(--text-white);
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
    display: none;
}

.axnv-clearfix {
    display: flex;
    justify-content: flex-end;
}

.axnv-buy-button {
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 0.9rem;
    background-color: #00cafe;
    color: #00102a;
}

.axnv-buy-button:hover {
    background-color: #0095c0;
}

.axnv-buy-button:disabled {
    background-color: #888;
    cursor: not-allowed;
}

/* Status indicators */
.status-active {
    color: #4CAF50;
    font-weight: 600;
}

.status-paused {
    color: #F44336;
    font-weight: 600;
}

#errorMessage {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
    display: none;
}

#successMessage {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    display: none;
}

/* Responsive adjustments */
@media (max-width: 580px) {
    .axnv-grid {
        grid-template-columns: 1fr;
    }
}