:root {
    --primary-color: #bd8dff;
    --background-color: #000000;
    --text-color: #ffffff;
    --card-bg: rgba(32, 32, 32, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--background-color);
    background-image: radial-gradient(circle at center, #1c002a 0%, transparent 70%);
    color: var(--text-color);
    min-height: 100vh;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
}

/* Navbar styles */
.navbar {
    margin-top: -10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    margin-top: 2px;
    width: 40px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.connect-wallet {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #bd8dff;
    color: var(--background-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    font-size: 12px;
}

.connect-wallet:hover {
    scale: 1.2;
    background: #7c42cd;
    color: white;
    transition: all 0.3s ease-in-out;
}

/* Hero section styles */
.hero {
    text-align: center;
    padding-top: 8rem;
    margin-top: -90px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.social-icon {
    background: var(--card-bg);
    padding: 0.75rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.social-icon img {
    width: 24px;
    height: 24px;
}

/* Stats section styles */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    min-width: 250px;
    backdrop-filter: blur(10px);
}

.stat-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.6);
}

.stat-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-emoji {
    font-size: 2.5rem;
}

.stat-text {
    text-align: left;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-top: -40px;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 300px;
        min-width: 200px;
    }
    
    .stat-emoji {
        font-size: 2rem;
    }
}

@font-face {
    font-family: 'Integral CF';
    src: url('assets/Fontspring-DEMO-integralcf-extrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

/* Update the relevant text elements to use the new font */
.hero-title,
.stat-card h2 {
    font-family: 'Integral CF', sans-serif;
}

/* Mobile menu icon styling */
.mobile-menu-icon {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Media query for mobile responsiveness */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
        z-index: 100;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        margin: 15px 0;
    }
    
    .mobile-menu-icon {
        display: block;
        z-index: 101;
        order: 3;
    }
    
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .logo {
        order: 1;
        margin-left: -10px;
    }
    
    .connect-wallet {
        order: 2;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-right: 10px;
    }
    
    .connect-wallet:hover {
        scale: 1.1;
    }
}

/* Footer styles */
.footer {
    margin-top: 6rem;
    padding: 2rem 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Update responsive design for footer */
@media (max-width: 768px) {
    .footer {
        margin-top: 4rem;
        padding: 1.5rem 0;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 1rem;
    }
}

/* Loading animation for stats */
.loading {
    display: inline-block;
    position: relative;
    width: 80%;
    height: 20px;
    /* background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    */
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
} 

/* Coming Soon specific styles */
.coming-soon-btn {
    background: #333;
    cursor: pointer;
    opacity: 0.9;
}

.coming-soon-btn:hover {
    scale: 1.1;
    background: #444;
    color: white;
}

.disabled-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    cursor: not-allowed;
}

.coming-soon-banner {
    background: rgba(124, 66, 205, 0.2);
    border: 1px solid rgba(189, 141, 255, 0.3);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coming-soon-banner h2 {
    font-family: 'Integral CF', sans-serif;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.coming-soon-banner p {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

.pulse-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(189, 141, 255, 0.1) 0%, transparent 70%);
    opacity: 0.5;
    animation: pulse 3s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
}

.social-links-container {
    margin-top: 3rem;
    text-align: center;
}

.social-links-container h3 {
    margin-bottom: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(189, 141, 255, 0.2);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.2rem;
}

/* Responsive adjustments for coming soon page */
@media (max-width: 768px) {
    .coming-soon-banner {
        padding: 1.5rem;
        margin: 1rem 1rem 2rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .social-link {
        width: 80%;
        justify-content: center;
    }
}

/* Play button styles */
.play-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
}

.play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #bd8dff 0%, #7c42cd 100%);
    color: black;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(124, 66, 205, 0.3);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.play-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(124, 66, 205, 0.4);
}

.play-button:hover::before {
    left: 100%;
}

.play-icon {
    font-size: 1.2rem;
}

/* Pot incentive text styling */
.pot-incentive {
    margin-top: 1.25rem;
    color: #bd8dff;
    font-size: 25px;
    font-family: 'Integral CF', sans-serif;
    text-align: center;
}

/* Responsive styles for play button */
@media (max-width: 768px) {
    .play-button-container {
        margin-top: 2rem;
    }
    
    .play-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .pot-incentive {
        font-size: 0.9rem;
        margin-top: 0.8rem;
    }
}

/* Logo text styling */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: 'Integral CF', sans-serif;
    font-size: 1.2rem;
    color: rgb(203, 203, 203);
    letter-spacing: 1px;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--card-bg);
    margin: 10% auto;
    padding: 2rem;
    border: 1px solid rgba(189, 141, 255, 0.3);
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    color: var(--text-color);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    font-family: 'Integral CF', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.rules-content {
    color: var(--text-color);
    line-height: 1.6;
}

.rules-content p {
    margin-bottom: 1rem;
}

.rules-content ol, .rules-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.rules-content li {
    margin-bottom: 0.5rem;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 20% auto;
        width: 90%;
        padding: 1.5rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
} 