/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --dark-purple: #0a0a1a;
    --medium-purple: #1a1a2e;
    --light-purple: #2d2d44;
    --royal-blue: #4169E1;
    --royal-red: #B22222;
    --royal-green: #228B22;
    --text-light: #f8f8f8;
    --text-gray: #b0b0b0;
    --border-gold: rgba(255, 215, 0, 0.3);
    --shadow-gold: rgba(255, 215, 0, 0.2);
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--dark-purple);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

.highlight {
    color: var(--primary-gold);
    text-shadow: 0 0 10px var(--shadow-gold);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-purple);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.crown-loader {
    font-size: 4rem;
    color: var(--primary-gold);
    animation: crownSpin 2s infinite linear;
}

@keyframes crownSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border-gold);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-gold);
    text-decoration: none;
}

.logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.logo-text {
    font-family: 'Cinzel', serif;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
}

.user-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
}

.wallet-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wallet-address {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.address-truncate {
    background: rgba(255, 215, 0, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

.balance {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
}

.coin-amount {
    color: var(--primary-gold);
}

.coin-icon {
    font-size: 1.2rem;
}

.user-dropdown {
    position: relative;
}

.user-avatar {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.user-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
}

.user-level {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--royal-red);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: var(--medium-purple);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 10px;
}

.user-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background: rgba(255, 215, 0, 0.1);
}

.dropdown-divider {
    height: 1px;
    background: var(--border-gold);
    margin: 0.5rem 0;
}

.logout-btn {
    color: #ff6b6b !important;
}

.connect-wallet-btn {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s;
}

.connect-wallet-btn:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 10, 26, 0.9), rgba(10, 10, 26, 0.95)),
                url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: #000;
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--shadow-gold);
}

.btn-hero {
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-gold);
    font-family: 'Cinzel', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    animation: float 3s ease-in-out infinite;
}

.nft-showcase {
    perspective: 1000px;
}

.nft-card-featured {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-gold);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transform-style: preserve-3d;
    animation: cardGlow 2s infinite alternate;
}

.nft-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.nft-badge.legendary {
    background: linear-gradient(45deg, #ff0080, #ff8c00);
}

.nft-badge.epic {
    background: linear-gradient(45deg, #9d00ff, #4a00e0);
}

.nft-badge.rare {
    background: linear-gradient(45deg, #00b4ff, #0080ff);
}

.nft-card-featured img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.nft-info-featured h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.nft-info-featured p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.nft-stats-featured {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.price-tag {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes cardGlow {
    from {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    to {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Section Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* How to Play Section */
.how-to-play {
    padding: 6rem 0;
    background: var(--medium-purple);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
}

.step-number {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 215, 0, 0.1);
    font-family: 'Cinzel', serif;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

/* Collections Section */
.collections-section {
    padding: 6rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.view-all {
    color: var(--primary-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.collection-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}

.collection-card:hover {
    transform: translateY(-10px);
}

.collection-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.collection-card:hover .collection-image img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    text-align: center;
}

.collection-count {
    color: var(--primary-gold);
    font-weight: bold;
}

.collection-info {
    padding: 1.5rem;
}

.collection-info h3 {
    margin-bottom: 0.5rem;
}

.collection-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.collection-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.floor-price, .volume {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Auctions Section */
.auctions-section {
    padding: 6rem 0;
    background: var(--medium-purple);
}

.auctions-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.auction-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}

.auction-card:hover {
    transform: translateY(-10px);
}

.auction-badge {
    background: var(--royal-red);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
}

.auction-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.auction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bid-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.auction-info {
    padding: 1.5rem;
}

.auction-info h3 {
    margin-bottom: 1rem;
}

.rarity-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.current-bid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.bid-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.bid-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-gold);
}

.auction-timer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    color: var(--royal-red);
    font-weight: bold;
}

.btn-bid {
    width: 100%;
    background: var(--royal-red);
    color: white;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
}

.features-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: #000;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.feature-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: var(--primary-gold);
}

.btn-feature {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.feature-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Leaderboard Preview */
.leaderboard-preview {
    padding: 6rem 0;
    background: var(--medium-purple);
}

.leaderboard-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.leaderboard-header {
    display: grid;
    grid-template-columns: 80px 2fr 1fr 1fr 1fr;
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    font-weight: bold;
    border-bottom: 2px solid var(--border-gold);
}

.leaderboard-row {
    display: grid;
    grid-template-columns: 80px 2fr 1fr 1fr 1fr;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.leaderboard-row:hover {
    background: rgba(255, 215, 0, 0.05);
}

.leaderboard-row.first-place {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), transparent);
    border-left: 4px solid var(--primary-gold);
}

.rank {
    font-family: 'Cinzel', serif;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-gold);
}

.player {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
}

.player-name {
    font-weight: bold;
}

.power, .coins, .wins {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.coins {
    color: var(--primary-gold);
}

.wins {
    color: var(--royal-green);
}

.view-full-leaderboard {
    text-align: center;
}

/* Newsletter Section */
.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-purple), var(--medium-purple));
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.newsletter-form {
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    border: 2px solid var(--border-gold);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 1rem;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Footer */
.main-footer {
    background: var(--dark-purple);
    border-top: 2px solid var(--border-gold);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-gold);
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.blockchain-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.chain-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contract-address {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contract-address p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contract-address code {
    font-family: monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--primary-gold);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: var(--primary-gold);
    color: #000;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-stats {
    display: flex;
    gap: 2rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--medium-purple);
    border: 2px solid var(--border-gold);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-gold);
}

.modal-header h3 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body {
    padding: 2rem;
}

.wallet-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.wallet-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.wallet-option:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-gold);
}

.wallet-option i {
    font-size: 2rem;
}

.wallet-option span {
    font-weight: bold;
}

.modal-note {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark-purple);
        flex-direction: column;
        padding: 2rem;
        display: none;
        border-top: 1px solid var(--border-gold);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .leaderboard-header,
    .leaderboard-row {
        grid-template-columns: 50px 1fr;
        font-size: 0.9rem;
    }
    
    .power-header, .coins-header, .wins-header,
    .power, .coins, .wins {
        display: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .wallet-options {
        grid-template-columns: 1fr;
    }
}