/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 10px;
    font-family: Montserrat, sans-serif;
}

:root {
    --colors-base: #fff;
    --colors-darken: #00000042;
    --colors-darkblue: #161824;
    --colors-azure: #06D0E7;
    --colors-yellow: #DEA713;
    --colors-brightyellow: #F5F20A;
    --colors-green: #00E37C;
    --colors-gold: #AA9B22;
    --colors-danger: #be2a2a;
    --fonts-primary: Montserrat, sans-serif;
    --fontWeights-thin: 400;
    --fontWeights-normal: 500;
    --fontWeights-bold: 700;
    --fontWeights-extra-bold: 900;
    --transitions-bouncy: cubic-bezier(.87, -.41, .19, 1.44);
}

body {
    font-family: var(--fonts-primary);
    line-height: 1.6;
    color: var(--colors-base);
    background-color: var(--colors-darkblue);
    font-weight: var(--fontWeights-normal);
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    text-rendering: optimizeLegibility;
}

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

/* Typography */
h1 {
    font-size: 6.5rem;
    line-height: 6.5rem;
    text-transform: uppercase;
    background: linear-gradient(150deg, white 40%, var(--colors-azure) 100%);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
    font-weight: var(--fontWeights-extra-bold);
    margin: 0 0 3rem 0;
    text-shadow: 15px 15px 25px rgb(255 255 255 / 26%);
}

h2 {
    font-size: 9rem;
    text-transform: uppercase;
    font-weight: var(--fontWeights-extra-bold);
    line-height: 8rem;
    color: var(--colors-azure);
    margin: 0 0 3rem 0;
}

h2.orange {
    font-size: 6rem;
    background-image: linear-gradient(120deg, var(--colors-darkblue) -20%, var(--colors-yellow) 100%);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
}

h2.green {
    font-size: 6rem;
    background-image: linear-gradient(120deg, var(--colors-green) 20%, var(--colors-darkblue) 100%);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
}

h2.blue {
    font-size: 6rem;
    background-image: linear-gradient(120deg, var(--colors-darkblue) -50%, var(--colors-azure) 100%);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
}

h2.yellow {
    font-size: 6rem;
    background-image: linear-gradient(120deg, var(--colors-darkblue) -20%, var(--colors-brightyellow));
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
}

h3 {
    font-size: 3.5rem;
    line-height: 4.5rem;
    font-weight: var(--fontWeights-extra-bold);
    background: radial-gradient(at top left, var(--colors-base) 25%, var(--colors-gold) 100%);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
    text-transform: uppercase;
    margin: 0 0 3rem 0;
}

p, li, p *, li * {
    font-size: 1.6rem;
    line-height: 2.4rem;
}

p {
    margin: 1.5rem 0;
}

a {
    color: var(--colors-azure);
    transition: all 0.5s;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    color: var(--colors-azure);
    font-size: 1.8rem;
    font-weight: var(--fontWeights-extra-bold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--colors-base);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: var(--fontWeights-bold);
    text-transform: uppercase;
    font-size: 1.6rem;
    position: relative;
    padding: 0 2rem;
}

.nav-menu a:before {
    height: 2px;
    background-color: var(--colors-azure);
    content: "";
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    transition: width 0.5s;
}

.nav-menu a:hover:before {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--colors-azure);
}

/* Enhanced Header Styles */
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header Actions Section */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Connect Button */
.btn-header-action {
    background: linear-gradient(135deg, var(--colors-azure), rgba(6, 208, 231, 0.8));
    border: none;
    color: var(--colors-darkblue);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: var(--fontWeights-bold);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(6, 208, 231, 0.3);
}

.btn-header-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 208, 231, 0.4);
    background: linear-gradient(135deg, var(--colors-azure), var(--colors-azure));
}

.btn-icon {
    font-size: 1.6rem;
}

/* User Profile Header */
.user-profile-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* Balance Display */
.balance-display {
    background: linear-gradient(135deg, rgba(0, 227, 124, 0.15), rgba(0, 227, 124, 0.05));
    border: 1px solid rgba(0, 227, 124, 0.3);
    border-radius: 10px;
    padding: 0.6rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.balance-display:hover {
    border-color: rgba(0, 227, 124, 0.5);
    box-shadow: 0 4px 15px rgba(0, 227, 124, 0.2);
}

.balance-amount {
    font-size: 1.3rem;
    font-weight: var(--fontWeights-bold);
    color: var(--colors-green);
}

.balance-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* User Avatar Container */
.user-avatar-container {
    position: relative;
}

.user-avatar-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    color: var(--colors-base);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}

.user-avatar-btn:hover {
    border-color: rgba(6, 208, 231, 0.5);
    box-shadow: 0 4px 15px rgba(6, 208, 231, 0.2);
    background: linear-gradient(135deg, rgba(6, 208, 231, 0.1), rgba(6, 208, 231, 0.05));
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--colors-azure), var(--colors-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.user-initial {
    font-size: 1.4rem;
    font-weight: var(--fontWeights-bold);
    color: var(--colors-darkblue);
}

.user-name-display {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.user-name {
    font-size: 1.3rem;
    font-weight: var(--fontWeights-medium);
    color: var(--colors-base);
}

.user-status {
    font-size: 1rem;
    color: var(--colors-azure);
    font-weight: var(--fontWeights-medium);
}

.dropdown-arrow {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
}

.user-avatar-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* User Dropdown Menu */
.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(15, 52, 96, 0.95));
    border: 1px solid rgba(6, 208, 231, 0.3);
    border-radius: 16px;
    padding: 0;
    min-width: 320px;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.user-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Header */
.dropdown-header {
    background: linear-gradient(135deg, rgba(6, 208, 231, 0.1), rgba(6, 208, 231, 0.05));
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-info-display {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar-large {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--colors-azure), var(--colors-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.user-initial-large {
    font-size: 1.8rem;
    font-weight: var(--fontWeights-bold);
    color: var(--colors-darkblue);
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.user-name-large {
    font-size: 1.5rem;
    font-weight: var(--fontWeights-bold);
    color: var(--colors-base);
}

.user-identifier {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: monospace;
}

/* Dropdown Sections */
.dropdown-section {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dropdown-section:last-child {
    border-bottom: none;
}

/* Dropdown Actions */
.dropdown-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--colors-base);
    font-size: 1.3rem;
    font-weight: var(--fontWeights-medium);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.dropdown-action:hover {
    background: rgba(6, 208, 231, 0.1);
    color: var(--colors-azure);
}

.dropdown-action.primary:hover {
    background: rgba(6, 208, 231, 0.15);
}

.dropdown-action.secondary {
    color: rgba(255, 255, 255, 0.8);
}

.dropdown-action.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--colors-base);
}

.dropdown-action.logout {
    color: #ff6b6b;
}

.dropdown-action.logout:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #ff5252;
}

.action-icon {
    font-size: 1.6rem;
    width: 20px;
    text-align: center;
}

/* Hero Section Enhancements */
.hero-greeting {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
}

.welcome-back {
    font-size: 2rem;
    color: var(--colors-azure);
    margin: 0;
    text-align: center;
}

.hero-portfolio {
    margin: 3rem 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.portfolio-quick-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    background: linear-gradient(135deg, rgba(6, 208, 231, 0.15), rgba(6, 208, 231, 0.05));
    border: 1px solid rgba(6, 208, 231, 0.3);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.hero-portfolio .stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.4rem;
    font-weight: var(--fontWeights-bold);
    color: var(--colors-azure);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

/* Dynamic NFT Purchase States */
.nft-state {
    display: none;
    animation: fadeInUp 0.6s ease forwards;
}

.nft-state.active {
    display: block;
}

/* Anonymous State Styles */
.connection-prompt {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    text-align: center;
}

.connection-benefits {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2rem;
    line-height: 1.6;
    text-align: center;
}

/* Connected State Styles */
.wallet-status-display {
    margin-bottom: 3rem;
}

.balance-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.balance-label {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.balance-amount {
    font-size: 2rem;
    font-weight: var(--fontWeights-bold);
    color: var(--colors-green);
    margin: 0;
}

.balance-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 227, 124, 0.1);
    border: 1px solid var(--colors-green);
    border-radius: 8px;
}

.balance-status.insufficient {
    background: rgba(190, 42, 42, 0.1);
    border-color: var(--colors-danger);
}

.status-icon {
    font-size: 1.4rem;
}

.status-text {
    font-size: 1.4rem;
    color: var(--colors-green);
}

.balance-status.insufficient .status-text {
    color: var(--colors-danger);
}

/* Owner State Styles */
.ownership-display {
    text-align: center;
}

.ownership-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(6, 208, 231, 0.15), rgba(6, 208, 231, 0.05));
    border: 1px solid rgba(6, 208, 231, 0.3);
    border-radius: 16px;
    padding: 2rem;
}

.stat-large {
    text-align: center;
}

.stat-large .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: var(--fontWeights-bold);
    color: var(--colors-azure);
    margin-bottom: 0.5rem;
}

.stat-large .stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.owner-benefits {
    background: rgba(0, 227, 124, 0.1);
    border: 1px solid var(--colors-green);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.owner-benefits h4 {
    color: var(--colors-green);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.owner-benefits ul {
    list-style: none;
    padding: 0;
}

.owner-benefits li {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    padding-left: 0;
}

.owner-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.owner-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: var(--fontWeights-bold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Insufficient Balance State Styles */
.insufficient-balance-info {
    text-align: center;
}

.balance-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(190, 42, 42, 0.1);
    border: 1px solid var(--colors-danger);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.warning-icon {
    font-size: 3rem;
}

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

.warning-text p {
    margin: 0.5rem 0;
    font-size: 1.4rem;
}

.warning-text .current-balance {
    color: var(--colors-danger);
    font-weight: var(--fontWeights-bold);
}

.warning-text .needed-balance {
    color: var(--colors-green);
    font-weight: var(--fontWeights-bold);
}

.purchase-options {
    background: rgba(6, 208, 231, 0.1);
    border: 1px solid rgba(6, 208, 231, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.purchase-options h4 {
    color: var(--colors-azure);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.purchase-options .btn {
    margin: 0.5rem;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .header-actions {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        flex-direction: column;
        gap: 1rem;
        z-index: 100;
    }

    .wallet-info-compact {
        padding: 0.6rem 1rem;
        scale: 0.9;
    }

    .user-dropdown-menu {
        right: -2rem;
        min-width: 250px;
    }

    .portfolio-quick-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .ownership-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .owner-actions {
        flex-direction: column;
        align-items: center;
    }

    .balance-warning {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .warning-text {
        text-align: center;
    }

    .purchase-options .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .header-actions {
        bottom: 1rem;
        right: 1rem;
    }

    .wallet-info-compact {
        scale: 0.8;
    }

    .user-dropdown-menu {
        right: -1rem;
        min-width: 200px;
        padding: 1rem;
    }

    .dropdown-action {
        padding: 0.8rem;
        font-size: 1.2rem;
    }

    .hero-greeting .welcome-back {
        font-size: 1.6rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-large .stat-number {
        font-size: 2.4rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    height: 130vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: calc(130vw / 16 * 9);
    transform: translate(-50%, -50%);
}

.hero-background video.portrait {
    width: calc(100vh * 16 / 9);
    height: 130vh;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(at left bottom, #161824 27%, rgba(7, 21, 65, 0) 100%);
    z-index: 1;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    margin-top: -300px;
}

.hero .description {
    font-size: 2.3rem;
    line-height: 3rem;
    margin-bottom: 5rem;
    color: #ccc;
}

.buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.5rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: var(--fontWeights-bold);
    transition: transform 0.5s;
    border: 0px none;
    text-align: center;
    font-size: 1.6rem;
    text-transform: uppercase;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.1);
}

.btn-primary {
    background: var(--colors-azure);
    color: var(--colors-darkblue);
}

.btn-yellow {
    background: linear-gradient(180deg, var(--colors-brightyellow) 25%, var(--colors-yellow) 100%);
    color: var(--colors-darkblue);
}

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

.btn-download {
    background: rgba(255, 255, 255, 0.1);
    color: var(--colors-base);
    border: 2px solid var(--colors-azure);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-download:hover {
    background: var(--colors-azure);
    color: var(--colors-darkblue);
}

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

/* Sections */
section {
    padding: 8rem 0;
}

/* Smooth scrolling animations - Progressive Enhancement */
section:not(.hero) {
    opacity: 1; /* Visible by default */
    transition: all 0.6s ease-out;
    transform: translateY(0); /* Normal position by default */
}

/* Enhanced animation when JavaScript adds the visible class */
section:not(.hero).animate-on-scroll {
    opacity: 0.3; /* Slightly faded when preparing for animation */
    transform: translateY(30px); /* Slight offset for animation */
}

section:not(.hero).animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    background: #111;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: var(--colors-azure);
}

.about-text p {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #ccc;
    line-height: 2.4rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(6, 208, 231, 0.3);
}

/* Features Section */
.features {
    background: var(--colors-darkblue);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--colors-azure);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(6, 208, 231, 0.3);
}

.feature:hover {
    transform: translateY(-10px);
    border-color: var(--colors-azure);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--colors-azure);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    line-height: 3rem;
}

.feature p {
    color: #ccc;
    font-size: 1.6rem;
    line-height: 2.4rem;
}

/* Tokenomics Section */
.tokenomics {
    background: #111;
}

.tokenomics h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--colors-yellow);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.token-info, .token-utilities {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(222, 167, 19, 0.3);
}

.token-info h3, .token-utilities h3 {
    color: var(--colors-yellow);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 3rem;
}

.token-info ul, .token-utilities ul {
    list-style: none;
}

.token-info li, .token-utilities li {
    padding: 0.5rem 0;
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.6rem;
    line-height: 2.4rem;
}

.token-info li:last-child, .token-utilities li:last-child {
    border-bottom: none;
}

/* Download Section */
.download {
    background: var(--colors-darkblue);
    text-align: center;
}

.download h2 {
    margin-bottom: 1rem;
    color: var(--colors-yellow);
}

.download p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #ccc;
    line-height: 2.4rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.download-note {
    font-style: italic;
    color: #888;
    font-size: 1.4rem;
}

/* Community Section */
.community {
    background: #111;
    text-align: center;
}

.community h2 {
    margin-bottom: 1rem;
    color: var(--colors-green);
}

.community > p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #ccc;
    line-height: 2.4rem;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(0, 227, 124, 0.1);
    color: var(--colors-green);
    text-decoration: none;
    border-radius: 0.5rem;
    border: 2px solid var(--colors-green);
    transition: all 0.3s ease;
    font-size: 1.6rem;
    font-weight: var(--fontWeights-bold);
}

.social-link:hover {
    background: var(--colors-green);
    color: var(--colors-darkblue);
    transform: scale(1.05);
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Footer */
footer {
    background: #000;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 30px;
    width: auto;
}

.footer-logo span {
    color: var(--colors-azure);
    font-size: 1.6rem;
    font-weight: var(--fontWeights-extra-bold);
}

.footer-section h4 {
    color: var(--colors-azure);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: var(--fontWeights-extra-bold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.6rem;
}

.footer-section ul li a:hover {
    color: var(--colors-azure);
}

.footer-section p {
    color: #ccc;
    font-size: 1.6rem;
    line-height: 2.4rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

.footer-bottom p {
    font-size: 1.4rem;
    margin: 0;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Highlights Section */
.highlights {
    background: var(--colors-darkblue);
    padding: 8rem 0;
}

.highlights .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.highlights .feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.highlights .feature.blue-panel {
    border-color: var(--colors-azure);
}

.highlights .feature.yellow-panel {
    border-color: var(--colors-yellow);
}

.highlights .feature.green-panel {
    border-color: var(--colors-green);
}

.highlights .feature:hover {
    transform: translateY(-10px);
}

.highlights .feature-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.highlights .feature img {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
}

.highlights .feature h3 {
    font-size: 2.5rem;
    line-height: 3rem;
    margin-bottom: 1.5rem;
    color: var(--colors-base);
}

.highlights .feature p {
    color: #ccc;
    font-size: 1.6rem;
    line-height: 2.4rem;
}

/* Game Features Section */
.game-features {
    background: #111;
    padding: 8rem 0;
}

.game-features-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.features-slider-container {
    position: relative;
    width: 100%;
}

.features-slider {
    display: flex;
    overflow: hidden;
    border-radius: 1rem;
    transition: transform 0.5s ease;
}

.feature-slide {
    min-width: calc(100% / 3);
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(222, 167, 19, 0.3);
    margin-right: 1rem;
    box-sizing: border-box;
}

.feature-slide:last-child {
    margin-right: 0;
}

.feature-slide:hover {
    transform: translateY(-5px);
    border-color: var(--colors-yellow);
}

.feature-slide img {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
}

.feature-slide h3 {
    color: var(--colors-yellow);
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 1rem;
}

.feature-slide p {
    color: #ccc;
    font-size: 1.4rem;
    line-height: 2rem;
}

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

.slider-btn {
    background: var(--colors-yellow);
    color: var(--colors-darkblue);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:disabled {
    background: rgba(222, 167, 19, 0.3);
    cursor: not-allowed;
}

.slider-btn:not(:disabled):hover {
    background: var(--colors-brightyellow);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(222, 167, 19, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--colors-yellow);
}

.game-character {
    position: relative;
    text-align: center;
}

.game-character img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 1rem;
}

.character-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(222, 167, 19, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Collection Section */
.collection {
    background: var(--colors-darkblue);
    padding: 8rem 0;
}

.collection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.collection-info h3 {
    color: var(--colors-yellow);
    font-size: 3rem;
    line-height: 3.5rem;
    margin-bottom: 2rem;
}

.collection-info .attribute {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.collection-info .label {
    color: #ccc;
    font-size: 1.6rem;
    font-weight: var(--fontWeights-normal);
}

.collection-info .value {
    color: var(--colors-base);
    font-size: 1.8rem;
    font-weight: var(--fontWeights-bold);
}

.collection-image img {
    width: 100%;
    height: auto;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(222, 167, 19, 0.3);
}

.nft-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.nft-image img {
    width: 100%;
    height: auto;
    max-width: 300px;
    border-radius: 15px;
}

.nft-info h3 {
    color: var(--colors-yellow);
    font-size: 3rem;
    line-height: 3.5rem;
    margin-bottom: 2rem;
}

.nft-info p {
    color: #ccc;
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-bottom: 2rem;
}

/* Roadmap Section */
.roadmap {
    background: #111;
    padding: 8rem 0;
}

.roadmap-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--colors-green);
    color: var(--colors-green);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: var(--fontWeights-bold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--colors-green);
    color: var(--colors-darkblue);
}

.roadmap-content {
    position: relative;
}

.roadmap-year {
    display: none;
}

.roadmap-year.active {
    display: block;
}

.roadmap-quarters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quarter {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 227, 124, 0.3);
}

.quarter h4 {
    color: var(--colors-green);
    font-size: 2.5rem;
    line-height: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quarter ul {
    list-style: none;
}

.quarter li {
    color: #ccc;
    font-size: 1.4rem;
    line-height: 2rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.quarter li:before {
    content: "•";
    color: var(--colors-green);
    position: absolute;
    left: 0;
}

/* Contract Section */
.contract {
    background: var(--colors-darkblue);
    padding: 8rem 0;
    text-align: center;
}

.contract-panel {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid rgba(222, 167, 19, 0.3);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contract-address {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 0.5rem;
    font-family: monospace;
    font-size: 1.4rem;
    color: var(--colors-yellow);
    margin: 2rem auto;
    word-break: break-all;
    border: 1px solid var(--colors-yellow);
    max-width: 500px;
}

.contract p {
    color: #ccc;
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.contract p a {
    color: var(--colors-yellow);
}

.contract-image img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}

/* Game News Section */
.game-news {
    background: #111;
    padding: 8rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(6, 208, 231, 0.3);
}

.news-item:hover {
    transform: translateY(-5px);
    border-color: var(--colors-azure);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(45deg, var(--colors-darkblue), #333);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-placeholder {
    color: #888;
    font-size: 1.4rem;
    text-align: center;
    font-style: italic;
}

.news-item h3 {
    color: var(--colors-azure);
    font-size: 2rem;
    line-height: 2.5rem;
    margin: 1.5rem;
    margin-bottom: 1rem;
}

.news-item p {
    color: #ccc;
    font-size: 1.4rem;
    line-height: 2rem;
    margin: 0 1.5rem;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    color: var(--colors-azure);
    text-decoration: none;
    font-weight: var(--fontWeights-bold);
    margin: 0 1.5rem 1.5rem;
    font-size: 1.4rem;
}

.read-more:hover {
    text-decoration: underline;
}

/* Partnership Section */
.partnership {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.partnership h2 {
    margin-bottom: 60px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFD700;
}

.partner-placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
}

/* Game Section */
.game-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
}

.game-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

.game-container {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 50px;
    position: relative;
    min-height: 600px;
}

/* Game Loading */
.game-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
    text-align: center;
}

.loading-content {
    max-width: 400px;
    width: 100%;
}

.loading-logo {
    margin-bottom: 30px;
}

.loading-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.loading-content h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #FFD700;
}

/* Progress Bar */
.loading-progress {
    margin-bottom: 40px;
}

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

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #0080ff);
    border-radius: 10px;
    width: 0%;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 2s infinite;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#progressPercent {
    font-size: 1.4rem;
    font-weight: bold;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    transition: all 0.3s ease;
}

#loadingStage {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

/* Loading Details */
.loading-details {
    text-align: left;
}

.loading-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.loading-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #666;
    transition: all 0.3s ease;
}

.loading-item.completed {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.loading-item.completed::before {
    background: #4CAF50;
}

.loading-item.active {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    animation: loadingPulse 2s ease-in-out infinite;
}

.loading-item.active::before {
    background: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

@keyframes loadingPulse {
    0%, 100% { box-shadow: 0 0 0 rgba(0, 255, 255, 0.1); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.2); }
}

.loading-icon {
    margin-right: 10px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.loading-item.completed .loading-icon {
    color: #4CAF50;
}

.loading-item.active .loading-icon {
    color: #00ffff;
    animation: spin 2s linear infinite;
}

.loading-item span:not(.loading-icon) {
    flex: 1;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.loading-item.completed span:not(.loading-icon) {
    color: #4CAF50;
}

.loading-item.active span:not(.loading-icon) {
    color: #00ffff;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Game iframe */
.game-iframe-container {
    position: relative;
}

.game-iframe-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
    background: #000;
    /* Allow Unity WebGL to load properly */
    allow: "fullscreen; gamepad; camera; microphone";
    sandbox: "allow-scripts allow-same-origin allow-pointer-lock allow-forms";
}

.game-controls {
    margin-top: 20px;
    text-align: center;
}

.game-controls .btn {
    margin: 0 10px;
}

/* Game Info */
.game-info {
    margin-top: 50px;
}

.game-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.game-features .feature-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.game-features .feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFD700;
}

.game-features .feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.game-features h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #FFD700;
}

.game-features p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 100vh; /* Reduce height on mobile */
    }
    
    .hero-content {
        margin-top: -100px; /* Less negative margin on mobile */
    }
    
    .hero .description {
        font-size: 1.8rem;
        line-height: 2.4rem;
        margin-bottom: 3rem;
    }
    
    h1 {
        font-size: 4rem;
        line-height: 4.5rem;
        margin: 0 0 1.5rem 0;
    }
    
    h2 {
        font-size: 4.8rem;
        line-height: 4rem;
        margin: 0 0 1.5rem 0;
    }
    
    h2.green, h2.orange, h2.blue, h2.yellow {
        font-size: 3rem;
    }
    
    h3 {
        margin: 0 0 1.5rem 0;
        font-size: 2.5rem;
        line-height: 3rem;
    }
    
    .nav-menu {
        display: none; /* Simple mobile - can be enhanced later */
    }
    
    .buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 80%;
        max-width: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    p, li, p *, li * {
        line-height: 2rem;
    }
    
    p {
        margin: 1.5rem 0;
    }

    /* New sections responsive design */
    .highlights .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .highlights .feature {
        padding: 2rem 1.5rem;
    }

    .game-features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-slider {
        margin-bottom: 2rem;
    }

    .feature-slide {
        min-width: 100%;
        margin-right: 0;
    }

    .game-character {
        order: -1;
    }

    .features-slider-container {
        order: 1;
    }

    .collection-content,
    .nft-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .roadmap-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1.4rem;
    }

    .roadmap-quarters {
        grid-template-columns: 1fr;
    }

    .quarter {
        padding: 1.5rem;
    }

    .quarter h4 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .contract-panel {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .contract-address {
        font-size: 1.2rem;
        padding: 1rem;
    }

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

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional utility classes */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Copy functionality for contract address */
.contract-address {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contract-address:hover {
    background-color: rgba(6, 208, 231, 0.1);
}

@media (max-width: 768px) {
    .header-actions {
        gap: 1rem;
    }

    .user-profile-header {
        gap: 0.8rem;
    }

    .balance-display {
        display: none !important; /* Hide balance on mobile to save space */
    }

    .user-avatar-btn {
        padding: 0.5rem 0.8rem;
        gap: 0.8rem;
    }

    .user-name-display {
        display: none; /* Hide name/status on mobile, show only avatar */
    }

    .user-dropdown-menu {
        min-width: 280px;
        max-width: 90vw;
        right: -10px; /* Offset to account for screen edge */
    }

    .dropdown-header {
        padding: 1.2rem;
    }

    .user-info-display {
        gap: 0.8rem;
    }

    .user-avatar-large {
        width: 40px;
        height: 40px;
    }

    .user-initial-large {
        font-size: 1.6rem;
    }

    .user-name-large {
        font-size: 1.3rem;
    }

    .user-identifier {
        font-size: 1rem;
    }

    .dropdown-action {
        padding: 0.8rem 1.2rem;
        font-size: 1.2rem;
    }

    .action-icon {
        font-size: 1.4rem;
    }

    .btn-header-action {
        padding: 0.7rem 1.2rem;
        font-size: 1.3rem;
        gap: 0.6rem;
    }

    .btn-header-action .btn-text {
        display: none; /* Show only icon on very small screens */
    }

    .btn-icon {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .header-actions {
        gap: 0.5rem;
    }

    .user-avatar-btn {
        padding: 0.4rem 0.6rem;
    }

    .user-avatar {
        width: 30px;
        height: 30px;
    }

    .user-initial {
        font-size: 1.2rem;
    }

    .user-dropdown-menu {
        min-width: 260px;
        right: -20px;
    }

    .dropdown-section {
        padding: 0.8rem 0;
    }

    .dropdown-action {
        padding: 0.7rem 1rem;
        font-size: 1.1rem;
        gap: 0.8rem;
    }

    .btn-header-action {
        padding: 0.6rem 1rem;
        border-radius: 10px;
    }

    /* Ensure dropdown doesn't go off screen */
    .user-dropdown-menu.show {
        transform: translateY(0) translateX(calc(-100% + 40px));
        right: auto;
        left: auto;
    }
}

/* Additional Progress Bar Animations */
.progress-fill.download-phase {
    background: linear-gradient(90deg, #00ffff, #0080ff);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.progress-fill.unity-phase {
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.progress-fill.complete-phase {
    background: linear-gradient(90deg, #10b981, #059669);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

/* Add pulse effect for percentage during loading */
.progress-text.loading #progressPercent {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    }
}

/* Download Statistics (for enhanced loading info) */
.download-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.download-stats span {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-stats .stat-value {
    color: #00ffff;
    font-weight: bold;
    margin-bottom: 2px;
}

.download-stats .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

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