/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0d0d0d;
    color: #ffffff;
    text-align: center;
}

/* Header Styles */
header {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

.logo {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
    animation: slideDown 1.5s ease-in-out;
}

h1 {
    font-size: 2rem;
    margin: 10px 0;
    color: #00ffcc;
}

p {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #cccccc;
    animation: fadeIn 2s ease-in;
}

/* Navigation Styles */
nav {
    background-color: #222;
    padding: 10px;
    animation: slideUp 1.5s ease-in-out;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #00ffcc;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    text-decoration: underline;
    color: #ffcc00;
}

/* Section Styles */
.section {
    padding: 50px 20px;
    background-color: #1a1a1a;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 800px;
    animation: fadeIn 2s ease-in;
}

h2 {
    color: #00ffcc;
    font-size: 1.8rem;
}

/* Table Styles */
table {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
}

table, th, td {
    border: 1px solid #00ffcc;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #00ffcc;
    color: black;
}

/* Claim Button */
.claim-btn {
    display: inline-block;
    background: #00ffcc;
    color: black;
    padding: 6px 10px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
    border: none;
}

.claim-btn:hover {
    background: #009999;
    color: white;
}

/* Share Popup */
.share-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: none;
    width: 250px;
    z-index: 1000;
}

.share-popup a {
    display: block;
    margin: 10px;
    padding: 10px;
    background-color: #00ffcc;
    color: black;
    text-decoration: none;
    border-radius: 5px;
}

.share-popup a:hover {
    background-color: #009999;
    color: white;
}

.close-share {
    margin-top: 10px;
    display: inline-block;
    background: red;
    color: white;
    padding: 8px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.info-section {
    text-align: center;
    color: white;
    padding: 20px;
    margin-top: 20px;
    background: rgba(0, 255, 204, 0.1);
    border-radius: 10px;
    max-width: 800px; /* Adjust this to match the JSON file */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}



/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}
