body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #e5e5e5;
}

.text-silver {
    color: #c0c0c0;
}

.border-silver {
    border-color: #c0c0c0;
}

.navbar {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.2);
}

h1, h5 {
    font-weight: 700;
}

button {
    border-radius: 25px;
}

button:hover {
    transform: scale(1.05);
}

/* General Button Styling */
button {
    border-radius: 25px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* "Connect Wallet" & "Buy Tickets" Button Styling */
.btn-primary {
    background-color: #007bff; /* Match primary blue color */
    border-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3; /* Darker blue for hover effect */
    transform: scale(1.05);
}

/* Info Cards */
.info-card {
    background: #161B22;
    border-radius: 10px;
    padding: 1rem;
/*    width: 250px;*/
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #1F2933;
}

.info-card h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50; /* Silver-green for key information */
}
