body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 80px;
    /* Space for sticky nav */
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    background-color: #2c2c2c;
    /* Dark background like the screenshot */
}

/* Sticky Navigation Bar */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    /* Dark gradient background */
    border-bottom: 3px solid #ffc107;
    /* Yellow border to match buttons */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 15px 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.nav-title {
    color: #28a745;
    /* Green color to match buttons */
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ip-info {
    display: flex;
    gap: 20px;
    color: white;
}

.ip-item {
    font-size: 14px;
    background: linear-gradient(135deg, #28a745, #20c997);
    /* Green gradient like buttons */
    padding: 10px 15px;
    border-radius: 20px;
    border: 2px solid #ffc107;
    /* Yellow border */
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.ip-item:hover {
    background: linear-gradient(135deg, #218838, #1ea080);
    border-color: #ffca2c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.ip-value {
    font-weight: bold;
    color: #ffffff;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

h1,
h3 {
    color: #ffffff;
    /* White text for dark background */
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    margin-bottom: 15px;
}

.link-block {
    display: none;
    /* Hidden by default until location is verified */
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #28a745, #20c997);
    /* Green gradient */
    color: white;
    text-decoration: none;
    padding: 25px 30px;
    margin: 20px 0;
    border-radius: 25px;
    /* More rounded like the screenshot */
    border: 3px solid #ffc107;
    /* Yellow/orange border */
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.link-block.show {
    display: flex;
    /* Show links only when verified */
}

.link-text {
    flex-grow: 1;
    text-align: center;
}

.link-arrow {
    font-size: 24px;
    color: white;
    margin-left: 15px;
}

.link-block:hover {
    background: linear-gradient(135deg, #218838, #1ea080);
    border-color: #ffca2c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.link-block.disabled {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    border-color: #adb5bd;
    cursor: not-allowed;
    opacity: 0.6;
}

.link-block.disabled:hover {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    border-color: #adb5bd;
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.warning-message {
    background-color: #dc3545;
    color: white;
    border: 2px solid #c82333;
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    display: none;
    font-weight: bold;
    text-align: center;
}

.warning-message.show {
    display: block;
}

.loading-message {
    background-color: #007bff;
    color: white;
    border: 2px solid #0056b3;
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    display: block;
    font-weight: bold;
    text-align: center;
}

.loading-message.hide {
    display: none;
}