:root {
    --primary-color: #D4AF37; /* Bright Gold */
    --secondary-color: #111111; /* Dark black */
    --accent-color: #FFD700; /* Light bright gold */
    --text-color: #ffffff;
    --card-bg: rgba(17, 17, 17, 0.8);
    --gold-gradient: linear-gradient(135deg, #D4AF37, #FFD700);
    --gold-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: #111111;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    line-height: 1.6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styling */
.main-nav {
    background-color: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.site-logo:hover {
    transform: scale(1.05);
}

.logo {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.logo:hover {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 80%;
}

.auth-btn, .connect-btn {
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-btn {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.auth-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--gold-shadow);
}

.connect-btn {
    background: var(--gold-gradient);
    color: var(--secondary-color);
    border: none;
    box-shadow: var(--gold-shadow);
}

.connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1550565118-3a14e8d0386f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 0 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #e6e6e6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Wallet Section */
.wallet-section {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.3);
}

.wallet-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
}

.wallet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.wallet-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1634704784915-aacf363b021f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.features-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.features-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(17, 17, 17, 0.8);
    padding: 40px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0.8;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.7rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 1.5px;
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.tokenomics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1634704784915-aacf363b021f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.tokenomics-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tokenomics-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.token-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: rgba(17, 17, 17, 0.8);
    padding: 40px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 165, 0, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0.8;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 165, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.3);
}

.stat-card h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.7rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.stat-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 1.5px;
}

/* Connect Button */
.connect-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.connect-btn:hover {
    background: #00cc6a;
    transform: translateY(-2px);
}

.connect-btn:disabled {
    background: #00cc6a;
    opacity: 0.7;
    cursor: not-allowed;
}

/* Auth Buttons */
.auth-btn {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.auth-btn:hover {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
}

/* 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: linear-gradient(145deg, #111111, #1a1a1a);
    margin: 10% auto;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    animation: modalFadeIn 0.4s ease-out;
}

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

.modal h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 700;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e6e6e6;
    font-size: 1rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-switch {
    margin-top: 20px;
    text-align: center;
    color: #e6e6e6;
    font-size: 0.9rem;
}

.form-switch a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.form-switch a:hover {
    color: #fff;
    text-decoration: underline;
}

.btn.primary-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--gold-gradient);
    color: var(--secondary-color);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    margin-top: 10px;
}

.btn.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn.primary-btn:active {
    transform: translateY(0);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 0 20px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

/* Investment Section */
.invest-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}

.invest-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.invest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.invest-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.invest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #00ccff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.invest-card:hover::before {
    opacity: 1;
}

.invest-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.invest-card p {
    color: #cccccc;
    line-height: 1.8;
}

/* Presale Section */
.presale-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.presale-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1634704784915-aacf363b021f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.presale-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.presale-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.presale-stats {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(17, 17, 17, 0.8);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.progress-container {
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 10px 0;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #00ccff);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.token-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.price-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.purchase-form {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    color: #cccccc;
}

.input-group input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1.1rem;
}

.buy-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    background: #00cc6a;
    transform: translateY(-2px);
}

.status-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--text-color);
    text-align: center;
    font-weight: 500;
    animation: fadeIn 0.3s ease-in-out;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-secondary {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Roadmap Section */
.roadmap-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1634704784915-aacf363b021f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.roadmap-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.roadmap-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.roadmap-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.timeline-item {
    background: rgba(17, 17, 17, 0.8);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
    max-width: 80%;
}

.timeline-item:nth-child(odd) {
    margin-left: auto;
}

.timeline-item:nth-child(even) {
    margin-right: auto;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 30px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.quarter {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* User Dashboard Styles */
.user-dashboard {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}

.user-dashboard h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
}

.user-dashboard h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 1.5px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.dashboard-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.dashboard-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.dashboard-card p {
    color: #e6e6e6;
    font-size: 1.1rem;
    line-height: 1.6;
}

.transaction-history, .user-settings {
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.transaction-history h3, .user-settings h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 10px;
}

.transaction-history h3::after, .user-settings h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 1.5px;
}

.transaction-table-container {
    overflow-x: auto;
}

.transaction-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    color: var(--text-color);
}

.transaction-table th, .transaction-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transaction-table th {
    background-color: rgba(0, 0, 0, 0.2);
    font-weight: 600;
    color: var(--primary-color);
}

.transaction-table tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.no-transactions td {
    text-align: center;
    padding: 30px;
    color: #888;
    font-style: italic;
}

.user-settings form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.user-settings .form-group {
    margin-bottom: 20px;
}

.user-settings label {
    display: block;
    margin-bottom: 8px;
    color: #e6e6e6;
    font-weight: 500;
}

.user-settings input,
.user-settings select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.user-settings input:focus,
.user-settings select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
}

.user-settings button {
    padding: 12px 25px;
    border-radius: 8px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.user-settings button:hover {
    background: #00cc66;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* Staking Section Styles */
.staking-section {
    background: rgba(26, 26, 26, 0.8);
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.staking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #00ccff);
}

.staking-section h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.staking-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 1.5px;
}

.staking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.staking-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.staking-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.staking-card p {
    font-size: 1.5rem;
    color: #e6e6e6;
    font-weight: 500;
}

.staking-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.staking-form {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.staking-form h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

.staking-form .form-group {
    margin-bottom: 20px;
}

.staking-form label {
    display: block;
    margin-bottom: 8px;
    color: #e6e6e6;
    font-weight: 500;
}

.staking-form input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.staking-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
}

.staking-form button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.staking-form button:hover {
    background: #00cc66;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.staking-form p {
    margin-bottom: 15px;
    color: #e6e6e6;
    text-align: center;
}

/* User Settings Form Styling */
.user-settings form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.user-settings .form-group {
    margin-bottom: 20px;
}

.user-settings label {
    display: block;
    margin-bottom: 8px;
    color: #e6e6e6;
    font-weight: 500;
}

.user-settings input,
.user-settings select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.user-settings input:focus,
.user-settings select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
}

.user-settings button {
    padding: 12px 25px;
    border-radius: 8px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.user-settings button:hover {
    background: #00cc66;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* Transaction Table Styling */
.transaction-table-container {
    overflow-x: auto;
    margin-top: 20px;
}

.transaction-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.transaction-table thead {
    background: rgba(0, 0, 0, 0.3);
}

.transaction-table th {
    padding: 15px;
    text-align: left;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
}

.transaction-table td {
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #e6e6e6;
}

.transaction-table tbody tr {
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.transaction-table tbody tr:hover {
    background: rgba(0, 255, 136, 0.05);
}

.transaction-table .no-transactions td {
    text-align: center;
    padding: 30px;
    color: #999;
    font-style: italic;
}

/* Presale Info Styling */
.presale-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
}

@media (min-width: 768px) {
    .presale-info {
        grid-template-columns: 1fr 1fr;
    }
}

.presale-card {
    background: rgba(17, 17, 17, 0.8);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.presale-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 165, 0, 0.1);
}

.presale-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.presale-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.presale-form {
    margin-top: 25px;
}

.presale-form .form-group {
    margin-bottom: 20px;
}

.presale-form label {
    display: block;
    margin-bottom: 8px;
    color: #e6e6e6;
    font-size: 1rem;
    font-weight: 500;
}

.presale-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 165, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.presale-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.2);
}

.presale-form input[readonly] {
    background-color: rgba(0, 0, 0, 0.5);
    cursor: not-allowed;
}

.presale-form .btn {
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        padding: 15px;
    }
    
    .nav-links {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .token-stats {
        grid-template-columns: 1fr;
    }

    .invest-grid {
        grid-template-columns: 1fr;
    }

    .token-info,
    .price-info {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .timeline-item {
        margin-left: 40px;
    }

    .roadmap-timeline::before {
        left: 0;
    }

    .timeline-item::before {
        left: -50px;
    }
}

/* Founder Section Styling */
.founder-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1579547945413-497e1b99dac0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.founder-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.founder-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.founder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(17, 17, 17, 0.8);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.founder-image {
    display: flex;
    justify-content: center;
}

.founder-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.founder-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.founder-info {
    text-align: center;
    width: 100%;
}

.founder-info h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.founder-location {
    font-size: 1.2rem;
    color: #e6e6e6;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.founder-location::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.founder-bio {
    margin-top: 20px;
}

.founder-bio p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e6e6e6;
    margin-bottom: 30px;
}

.founder-quotes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.founder-quotes blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e6e6e6;
    position: relative;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.founder-quotes blockquote::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
}

@media (min-width: 768px) {
    .founder-content {
        flex-direction: row;
        text-align: left;
    }
    
    .founder-info {
        text-align: left;
    }
    
    .founder-location::after {
        left: 0;
        transform: none;
    }
}

/* Technology Overview Section */
.tech-overview-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.tech-overview-section::before,
.use-cases-section::before,
.roadmap-section::before,
.presale-section::before,
.tokenomics-section::before,
.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1579547945413-497e1b99dac0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.tech-overview-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tech-overview-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.tech-card {
    background: rgba(17, 17, 17, 0.8);
    padding: 40px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 165, 0, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0.8;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 165, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.3);
}

.tech-card h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.7rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.tech-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 1.5px;
}

.tech-card ul {
    list-style: none;
    padding: 0;
}

.tech-card ul li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    line-height: 1.7;
    font-size: 1.05rem;
    color: #e6e6e6;
    font-weight: 400;
}

.tech-card ul li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(0, 255, 136, 0.1);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Use Cases Section */
.use-cases-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.use-cases-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.use-cases-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.use-case-card {
    background: rgba(17, 17, 17, 0.8);
    padding: 35px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 165, 0, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.use-case-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.use-case-card h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    padding-right: 50px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.use-case-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 1.5px;
}

.use-case-card p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #e6e6e6;
    font-size: 1.05rem;
    font-weight: 400;
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.ecosystem-goals {
    background: rgba(26, 26, 26, 0.8);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.ecosystem-goals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
}

.ecosystem-goals h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
    position: relative;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.ecosystem-goals h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 1.5px;
}

.ecosystem-goals ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.ecosystem-goals ul li {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.1rem;
    line-height: 1.6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #e6e6e6;
}

.ecosystem-goals ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(0, 255, 136, 0.05);
}

/* Enhanced Button Styles */
.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: var(--gold-gradient);
    color: var(--secondary-color);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: var(--gold-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5cc7f, #d4af37);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 165, 0, 0.3);
}

.action-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 165, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 165, 0, 0.2);
    border-color: var(--accent-color);
}

.btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Action Buttons Section */
.action-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1579547945413-497e1b99dac0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center;
    background-size: cover;
    text-align: center;
    position: relative;
}

.action-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.action-buttons .btn-primary {
    min-width: 220px;
    padding: 16px 32px;
    font-size: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

#downloadWhitepaper::after,
#addToWallet::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 2s infinite;
    transform: translateX(-100%);
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
    /* Navigation */
    .nav-content {
        flex-direction: column;
        padding: 15px 20px;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .nav-links a, .nav-links button {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    /* Cards and Grids */
    .features-grid, 
    .use-cases-grid, 
    .token-info, 
    .dashboard-grid,
    .staking-info,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card, 
    .use-case-card, 
    .info-card,
    .dashboard-card,
    .staking-card {
        padding: 20px;
    }
    
    /* Presale Section */
    .progress-container {
        width: 100%;
    }
    
    .presale-info {
        grid-template-columns: 1fr;
    }
    
    /* Founder Section */
    .founder-content {
        flex-direction: column;
        padding: 25px;
    }
    
    .founder-avatar {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .founder-info h3 {
        font-size: 1.8rem;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        padding: 20px;
        margin: 20% auto;
    }
    
    /* Forms */
    .form-group input,
    .presale-form input {
        padding: 10px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 20px;
    }
    
    /* User Dashboard */
    .transaction-table {
        overflow-x: auto;
    }
    
    .transaction-table table {
        min-width: 600px;
    }
    
    /* Fix for small screens */
    .container {
        padding: 0 15px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .feature-card h3,
    .use-case-card h3,
    .info-card h3,
    .dashboard-card h3 {
        font-size: 1.4rem;
    }
    
    .connect-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .founder-quotes blockquote {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .modal h2 {
        font-size: 1.6rem;
    }
    
    .presale-card h3 {
        font-size: 1.5rem;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 100;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
        z-index: 90;
        padding: 50px 20px;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links a, 
    .nav-links button {
        font-size: 1.2rem;
        margin: 5px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        transition-delay: 0s;
    }
    
    .nav-links.active a, 
    .nav-links.active button {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active button:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active button:nth-child(5) { transition-delay: 0.5s; }
    .nav-links.active button:nth-child(6) { transition-delay: 0.6s; }
}

/* Additional Mobile Improvements */
@media (max-width: 768px) {
    /* Fix for buttons */
    .auth-btn, .connect-btn {
        margin: 5px 0;
        padding: 12px;
        width: 100%;
    }
    
    /* Fix for token cards */
    .token-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    /* Improve presale progress bar */
    .progress-bar {
        height: 15px;
    }
    
    /* Fix for founder section */
    .founder-section h2 {
        font-size: 2.2rem;
    }
    
    .founder-quotes blockquote {
        font-size: 1rem;
    }
    
    /* Fix for wallet dashboard */
    .wallet-grid {
        grid-template-columns: 1fr;
    }
    
    /* Improve tables on mobile */
    table {
        font-size: 0.9rem;
    }
    
    /* Fix for footer */
    .footer-section {
        margin-bottom: 30px;
    }
    
    /* Improve spacing */
    .container {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
    
    /* Fix for buy/sell forms */
    .presale-form .form-group {
        margin-bottom: 15px;
    }
    
    /* Improve modal scrolling */
    .modal {
        overflow-y: auto;
    }
    
    /* Fix for hero section */
    .hero-content {
        padding: 0 20px;
    }
}

/* Fix for very small devices */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .presale-card {
        padding: 20px 15px;
    }
    
    .founder-avatar {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .modal-content {
        padding: 15px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input {
        font-size: 0.9rem;
    }
}

/* Chat Support Styles */
.chat-support-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold-gradient);
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    border: 2px solid #111;
}

.chat-support-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.5);
}

.chat-support-icon i {
    font-size: 24px;
}

.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 450px;
    background: rgba(17, 17, 17, 0.95);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    z-index: 999;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

.chat-widget.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chat-header {
    background: var(--gold-gradient);
    color: #000;
    padding: 15px;
    font-weight: bold;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close {
    cursor: pointer;
    font-size: 18px;
    color: #111;
    transition: color 0.2s;
}

.chat-close:hover {
    color: #555;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    max-width: 70%;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
}

.user-message {
    background: var(--gold-gradient);
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.support-message {
    background: rgba(50, 50, 50, 0.8);
    color: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-input {
    padding: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
}

.chat-input input {
    flex: 1;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 15px;
    border-radius: 20px;
    color: #fff;
    outline: none;
}

.chat-input input:focus {
    border-color: var(--primary-color);
}

.send-button {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.send-button:hover {
    transform: scale(1.05);
}

.message-time {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
    text-align: right;
}

.user-message .message-time {
    color: rgba(0, 0, 0, 0.6);
}

.typing-indicator {
    display: flex;
    padding: 10px 12px;
    background: rgba(50, 50, 50, 0.8);
    border-radius: 12px;
    align-self: flex-start;
    width: fit-content;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    margin: 0 1px;
    opacity: 0.4;
}

.typing-indicator span:nth-child(1) {
    animation: typingAnimation 1s infinite;
}

.typing-indicator span:nth-child(2) {
    animation: typingAnimation 1s 0.3s infinite;
}

.typing-indicator span:nth-child(3) {
    animation: typingAnimation 1s 0.6s infinite;
}

@keyframes typingAnimation {
    0% { opacity: 0.4; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-2px); }
    100% { opacity: 0.4; transform: translateY(0); }
}