:root {
    --primary-color: #9945FF;
    --secondary-color: #14F195;
    --dark-bg: #121212;
    --light-text: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(0,0,0,0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--light-text);
    text-decoration: none;
}

.connect-wallet {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--light-text);
    cursor: pointer;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('hero-bg.jpg') center/cover;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.card-display {
    margin-top: 2rem;
    perspective: 1000px;
}

.card-display img {
    width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    transform: rotateY(20deg);
    box-shadow: 0 0 20px rgba(153, 69, 255, 0.5);
}

section {
    padding: 5rem 10%;
}
/* Add these animation keyframes at the end of your existing CSS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add these classes to your existing CSS */
.fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

.booking-form {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.form-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

input {
    padding: 0.8rem;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: var(--light-text);
}

.search-btn, .stake-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    color: var(--light-text);
    cursor: pointer;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reward-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.reward-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.staking-container {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.stake-input {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

footer {
    background: rgba(0,0,0,0.8);
    padding: 3rem 10%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--light-text);
    font-size: 1.5rem;
}
