/* Estilos para la aplicación SharkDoge */
.app-body {
    background: linear-gradient(135deg, #0a0a20 0%, #0d1a2d 50%, #0a0a20 100%);
    color: #6251f7;
    font-family: 'Roboto', sans-serif;
}

.app-header {
    background: rgba(10, 10, 32, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 198, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.app-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.app-header .logo img {
    height: 40px;

}

.app-header .nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.app-header .nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.app-header .nav-links a:not(.btn-primary):hover {
    color: #00c6ff;
}

.app-header .nav-links a:not(.btn-primary):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.app-header .nav-links a:not(.btn-primary):hover:after {
    width: 100%;
}

.app-header .nav-links a.active {
    color: #00c6ff;
}

.app-header .nav-links a.active:after {
    width: 100%;
}

.app-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 5%;
}

.app-section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
    min-height: calc(100vh - 120px);
    padding: 20px;
}

.app-section.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 1;
    transform: translateY(0);
    animation: none;
}

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

.app-section h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(90deg, #00c6ff, #8a2be2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(0, 198, 255, 0.5);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.app-section h1:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    bottom: -10px;
    left: 20%;
    background: linear-gradient(90deg, transparent, #00c6ff, #8a2be2, transparent);
}

.app-footer {
    background: rgba(10, 10, 32, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 198, 255, 0.3);
    padding: 40px 5% 20px;
    margin-top: 50px;
}

/* Wallet Connect Button */
.wallet-connect {
    display: flex;
    align-items: center;
}

.wallet-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: rgba(0, 198, 255, 0.1);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    margin-left: 10px;
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.2);
}

.wallet-info #walletAddress {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #00c6ff;
    margin-bottom: 2px;
}

.wallet-info #walletBalance {
    font-weight: 700;
    color: #ffffff;
}

.hidden {
    display: none;
}

/* Dashboard Styles */
.dashboard-header {
    margin-bottom: 30px;
}

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

.stat-card {
    background: rgba(10, 10, 32, 0.6);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.2);
    border-color: rgba(0, 198, 255, 0.5);
}

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

.stat-card:hover:before {
    left: 100%;
}

.stat-card h3 {
    font-size: 1rem;
    color: #00c6ff;
    margin-bottom: 10px;
    font-weight: 500;
}

.stat-card .stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #00c6ff, #8a2be2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-card .stat-usd {
    font-size: 0.9rem;
    color: #aaa;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.token-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    height: auto;
    align-items: start;
}

.chart-container {
    background: rgba(10, 10, 32, 0.6);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.price-chart-container {
    position: relative;
    height: auto;
    margin-bottom: 20px;
}

#chart-container {
    width: 100%;
    height: 300px !important; /* Altura fija */
    position: relative;
    z-index: 5;
    background-color: rgba(10, 25, 47, 0.7);
    border-radius: 12px;
    padding: 15px;
    margin-top: 10px;
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.2);
    overflow: visible;
}

#priceChart {
    width: 100% !important;
    height: 100% !important;
    max-height: 300px !important;
}

@media (max-width: 768px) {
    #chart-container {
        height: 250px !important;
    }
    
    #priceChart {
        max-height: 250px !important;
    }
}

@media (max-width: 992px) {
    .token-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .chart-container {
        margin-bottom: 0;
    }

    .stats-container {
        margin-top: 0;
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
        background: rgba(0, 198, 255, 0.05);
        border: 1px solid rgba(0, 198, 255, 0.1);
        border-radius: 8px;
    }

    .stat-item .stat-label {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .stat-item .stat-value {
        font-size: 1rem;
    }

    .app-header nav {
        justify-content: space-between;
        padding: 15px 20px;
    }

    .mobile-menu-toggle {
        display: flex; /* Mostrar en móvil */
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1000;
        margin-right: 20px;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: #00c6ff;
        border-radius: 3px;
        transition: all 0.3s ease;
        box-shadow: 0 0 5px rgba(0, 198, 255, 0.5);
    }

    .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);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 32, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        border-bottom: 1px solid rgba(0, 198, 255, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .nav-links .wallet-connect {
        width: 100%;
        padding: 15px 0;
        border-top: 1px solid rgba(0, 198, 255, 0.1);
        margin-top: 10px;
    }

    .nav-links .wallet-connect button {
        width: 100%;
        max-width: 250px;
    }

    .nav-links .wallet-info {
        width: 100%;
        max-width: 250px;
        margin: 10px auto;
        padding: 10px;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    .nav-links.active {
        display: flex;
    }

    .app-header .logo {
        order: 1;
    }

    .mobile-menu-toggle {
        order: 2;
    }

    .wallet-connect {
        order: 3;
    }

    .nav-links {
        order: 4;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px;
    }

    .stat-item .stat-label {
        margin-bottom: 0;
    }

    .stat-item .stat-value {
        font-size: 0.9rem;
    }

    .market-stats h2 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        text-align: center;
    }
}

.chart-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.chart-timeframe {
    background: rgba(0, 198, 255, 0.1);
    border: 1px solid rgba(0, 198, 255, 0.3);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart-timeframe:hover {
    background: rgba(0, 198, 255, 0.2);
}

.chart-timeframe.active {
    background: rgba(0, 198, 255, 0.3);
    border-color: #00c6ff;
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

.stats-container {
    background: rgba(10, 10, 32, 0.6);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.1);
}

.market-stats h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #00c6ff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 10px;
    background: rgba(0, 198, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 198, 255, 0.1);
    transform: translateY(-2px);
}

.stat-item .stat-label {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 5px;
}

.stat-item .stat-value {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #fff;
}

.activity-feed {
    background: rgba(10, 10, 32, 0.6);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.1);
}

.activity-feed h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #00c6ff;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 198, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: rgba(0, 198, 255, 0.1);
    transform: translateX(5px);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon.transfer {
    background: rgba(0, 198, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.3);
    position: relative;
}

.activity-icon.transfer:before {
    content: '↔';
    color: #00c6ff;
    font-size: 1.2rem;
}

.activity-icon.stake {
    background: rgba(138, 43, 226, 0.2);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
    position: relative;
}

.activity-icon.stake:before {
    content: '⚓';
    color: #8a2be2;
    font-size: 1.2rem;
}

.activity-icon.swap {
    background: rgba(255, 165, 0, 0.2);
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
    position: relative;
}

.activity-icon.swap:before {
    content: '⇄';
    color: #ffa500;
    font-size: 1.2rem;
}

.activity-details {
    flex-grow: 1;
}

.activity-details h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.activity-details p {
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 5px;
}

.activity-time {
    font-size: 0.8rem;
    color: #aaa;
}

/* Swap Styles */
.swap-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 992px) {
    .swap-container {
        grid-template-columns: 1fr;
    }
}

.swap-card {
    background: rgba(10, 10, 32, 0.6);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.1);
    transition: all 0.3s ease;
}

.swap-card:hover {
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.2);
    transform: translateY(-5px);
}

.swap-header {
    background: rgba(0, 198, 255, 0.1);
    padding: 20px;
    border-bottom: 1px solid rgba(0, 198, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.swap-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #00c6ff;
    margin: 0;
}

.swap-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.85rem;
    color: #aaa;
}

.presale-stage {
    background: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.swap-body, .presale-body {
    padding: 20px;
}

.swap-input-container {
    margin-bottom: 20px;
}

.swap-input-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #aaa;
}

.swap-input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.token-select {
    background: rgba(0, 198, 255, 0.1);
    border: 1px solid rgba(0, 198, 255, 0.3);
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
}

.amount-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.amount-button {
    background: rgba(0, 198, 255, 0.1);
    border: 1px solid rgba(0, 198, 255, 0.3);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-button:hover {
    background: rgba(0, 198, 255, 0.2);
}

.swap-arrow {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    position: relative;
}

.swap-arrow:before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0, 198, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
    animation: pulse-glow 2s infinite;
}

.swap-arrow img {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

.receive-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00c6ff;
}

.swap-details {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

detail-item:last-child {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item span:first-child {
    color: #aaa;
}

.detail-item span:last-child {
    font-weight: 600;
    color: #fff;
}

.presale-progress {
    margin-bottom: 20px;
}

.progress-bar {
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00c6ff, #8a2be2);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

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

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

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #aaa;
}

.presale-timer {
    text-align: center;
    margin-bottom: 20px;
}

.presale-timer h3 {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 10px;
}

.countdown {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.countdown-item {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.countdown-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00c6ff;
    display: block;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.8rem;
    color: #aaa;
}

.presale-info {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.presale-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.presale-detail:last-child {
    margin-bottom: 0;
}

.presale-detail span:first-child {
    color: #aaa;
}

.presale-detail span:last-child {
    font-weight: 600;
    color: #fff;
}

/* Quantity Selector Styles */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
    background: rgba(0, 168, 255, 0.1);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(0, 168, 255, 0.2);
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #00a8ff;
    background: transparent;
    color: #00a8ff;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 168, 255, 0.2);
}

.quantity-btn:hover {
    background: #00a8ff;
    color: black;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 168, 255, 0.4);
}

.quantity-btn:active {
    transform: scale(0.95);
}

#mintQuantity {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #00a8ff;
    min-width: 40px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
}

/* Staking Styles */
.staking-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.staking-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 992px) {
    .staking-info {
        grid-template-columns: 1fr;
    }
}

.staking-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .staking-stats {
        grid-template-columns: 1fr;
    }
}

.staking-description {
    background: rgba(10, 10, 32, 0.6);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.1);
}

.staking-description h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #00c6ff;
}

.staking-description p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.staking-options {
    background: rgba(10, 10, 32, 0.6);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.1);
}

.staking-options h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #00c6ff;
    text-align: center;
}

.staking-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .staking-plans {
        grid-template-columns: 1fr;
    }
}

.staking-plan {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.staking-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.2);
}

.staking-plan.featured {
    border: 2px solid #8a2be2;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
    transform: scale(1.05);
}

.staking-plan.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

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

.staking-plan:hover:before {
    left: 100%;
}

.plan-header {
    margin-bottom: 15px;
}

.plan-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.plan-apy {
    display: inline-block;
    background: rgba(0, 198, 255, 0.1);
    color: #00c6ff;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.staking-plan.featured .plan-apy {
    background: rgba(138, 43, 226, 0.1);
    color: #8a2be2;
}

.plan-details {
    margin-bottom: 20px;
}

.plan-details p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #ddd;
}

.staking-positions {
    background: rgba(10, 10, 32, 0.6);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.1);
}

.staking-positions h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #00c6ff;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.position-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .position-item {
        flex-direction: column;
        gap: 15px;
    }
}

.position-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.2);
}

.position-info {
    flex-grow: 1;
}

.position-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #00c6ff;
    margin-bottom: 10px;
}

.position-details {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.position-details span:first-child {
    font-weight: 600;
}

.position-time {
    margin-top: 10px;
}

.time-remaining {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.85rem;
    color: #aaa;
}

.position-rewards {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.rewards-info {
    text-align: right;
    font-size: 0.9rem;
}

.rewards-info span:last-child {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #00c6ff;
    margin-top: 5px;
}

/* NFTs Styles - Updated for better responsiveness */
.nfts-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
}

.nfts-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.nfts-description {
    background: rgba(10, 10, 32, 0.6);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.1);
}

.nfts-description h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #00c6ff;
}

.nfts-description p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.nfts-collection {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.collection-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.collection-filters select {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 198, 255, 0.3);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.nft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
}

.nft-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    margin: 0;
    transform: none;
}

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

.nft-image {
    position: relative;
}

.nft-image img {
    width: 100%;
    height: auto;
    display: block;
}

.nft-rarity {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.nft-rarity.common {
    background: rgba(0, 198, 255, 0.2);
    color: #00c6ff;
}

.nft-rarity.rare {
    background: rgba(0, 128, 255, 0.2);
    color: #0080ff;
}

.nft-rarity.epic {
    background: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
}

.nft-rarity.legendary {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

.nft-info {
    padding: 15px;
}

.nft-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
}

.nft-description {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 12px;
    min-height: auto;
}

.nft-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nft-price span:first-child {
    font-size: 0.85rem;
    color: #aaa;
}

.nft-price span:last-child {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #00c6ff;
}

.mint-section {
    background: rgba(10, 10, 32, 0.6);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.1);
}

.mint-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #00c6ff;
    text-align: center;
}

.mint-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
}

@media (max-width: 992px) {
    .nfts-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nft-stats {
        justify-content: center;
    }

    .collection-header {
        flex-direction: column;
        align-items: stretch;
    }

    .collection-filters {
        flex-direction: row;
        justify-content: center;
    }

    .collection-filters select {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .app-main {
        padding: 20px 0;
        width: 100%;
        overflow-x: hidden;
    }

    .nfts-container {
        padding: 0;
        width: 100%;
    }

    .nfts-intro {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 20px;
    }

    .nfts-collection {
        width: 100%;
        padding: 20px;
        margin: 0;
        border-radius: 0;
    }

    .collection-header {
        flex-direction: column;
        gap: 15px;
    }

    .collection-filters {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .collection-filters select {
        width: 100%;
    }

    .nft-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
        margin: 0;
    }

    .mint-section {
        width: 100%;
        padding: 20px;
        margin: 0;
        border-radius: 0;
    }

    .mint-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nfts-container {
        padding: 0 10px;
    }

    .nft-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .mint-container {
        grid-template-columns: 1fr;
    }

    .mint-preview {
        order: -1;
    }

    .site-footer {
        width: 100%;
        padding: 40px 0 20px;
    }

    .footer-content {
        padding: 0 20px;
    }

    .footer-bottom {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .nft-grid {
        grid-template-columns: 1fr;
    }

    .nft-stats {
        flex-direction: column;
        gap: 15px;
    }

    .collection-filters {
        flex-direction: column;
    }

    .collection-filters select {
        width: 100%;
    }

    .nft-card {
        transform: scale(1);
    }
}

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

.modal-content {
    background: rgba(10, 10, 32, 0.9);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    margin: 10% auto;
    padding: 20px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.3);
    animation: modalFadeIn 0.3s ease;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: #aaa;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #00c6ff;
    text-align: center;
}

.wallet-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.wallet-option {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wallet-option:hover {
    background: rgba(0, 198, 255, 0.1);
    transform: translateY(-3px);
}

.wallet-option img {
    width: 40px;
    height: 40px;
}

.wallet-option span {
    font-weight: 600;
}

.modal-body {
    padding: 15px 0;
}

.stake-plan-info {
    text-align: center;
    margin-bottom: 20px;
}

.stake-plan-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #00c6ff;
    margin-bottom: 5px;
}

.stake-plan-info p {
    font-size: 0.9rem;
    color: #aaa;
}

.stake-amount-input {
    margin-bottom: 20px;
}

.stake-amount-input label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #aaa;
}

.input-with-max {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.input-with-max input {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 8px;
    padding: 10px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
}

.input-with-max button {
    background: rgba(0, 198, 255, 0.1);
    border: 1px solid rgba(0, 198, 255, 0.3);
    color: #00c6ff;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-with-max button:hover {
    background: rgba(0, 198, 255, 0.2);
}

.balance-info {
    font-size: 0.85rem;
    color: #aaa;
}

.stake-details {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

/* Footer Styles */
.app-footer {
    background: rgba(10, 10, 32, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 198, 255, 0.3);
    padding: 40px 5% 20px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -5px 20px rgba(0, 198, 255, 0.15);
}

.ocean-waves-footer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00c6ff, #8a2be2, #00c6ff);
    background-size: 200% 100%;
    animation: gradientMove 8s linear infinite;
    z-index: 1;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 198, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 198, 255, 0.2);
}

.footer-logo img {
    height: 60px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 8px rgba(0, 198, 255, 0.5));
    transition: all 0.3s ease;
}

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

.footer-logo p {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #00c6ff;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 40px;
}

@media (max-width: 576px) {
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}

.footer-column h4 {
    font-family: 'Orbitron', sans-serif;
    color: #00c6ff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00c6ff, transparent);
}

.footer-column a {
    display: block;
    color: #aaa;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-column a:before {
    content: '›';
    position: absolute;
    left: -15px;
    top: 0;
    color: #00c6ff;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-column a:hover:before {
    opacity: 1;
    left: -10px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 198, 255, 0.3), transparent);
    margin: 20px auto 20px;
    width: 80%;
}

.footer-bottom {
    max-width: 1400px;
    margin: 30px auto 0;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    position: relative;
    z-index: 2;
}

.disclaimer-text {
    margin-top: 10px;
    font-size: 0.8rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}
/* Utility Classes */
.hidden {
    display: none;
}

.full-width {
    width: 100%;
}

.highlight {
    color: #8a2be2;
}

/* Animations */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 198, 255, 0.8);
    }
    100% {
        box-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    }
}

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

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .app-section h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 1024px) {
    .app-section {
        padding: 20px;
    }

    .swap-container, 
    .staking-container,
    .nfts-container {
        flex-direction: column;
    }

    .swap-card,
    .presale-card,
    .staking-plans,
    .nft-grid {
        width: 100%;
        max-width: 600px;
        margin: 0 auto 20px;
    }
}

@media (max-width: 992px) {
    .app-header .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 32, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        border-bottom: 1px solid rgba(0, 255, 255, 0.3);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .app-header .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .app-header .nav-links a {
        width: 100%;
        text-align: center;
        padding: 15px;
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(0, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .app-header .nav-links a:hover {
        background: rgba(0, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: 20px;
        z-index: 10000;
    }

    .wallet-connect {
        margin-right: 60px;
    }
}

@media (max-width: 768px) {
    .app-section h1 {
        font-size: 2rem;
    }

    .wallet-connect {
        margin-right: 50px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .wallet-connect {
        margin-left: auto;
    }

    .wallet-info {
        font-size: 14px;
    }

    .amount-buttons {
        flex-wrap: wrap;
    }

    .amount-button {
        flex: 1 1 40%;
        margin: 5px !important;
    }

    .nft-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .app-section h1 {
        font-size: 1.8rem;
    }

    .wallet-info {
        display: none;
    }

    .app-header nav {
        padding: 15px;
    }

    .app-header .logo img {
        height: 35px;
    }

    .wallet-connect button {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .wallet-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .wallet-address {
        font-size: 12px;
    }

    .swap-input {
        flex-direction: column;
    }

    .amount-button {
        flex: 1 1 100%;
    }
}

/* Notification System */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(10, 10, 32, 0.9);
    border-left: 4px solid #00c6ff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    max-width: 350px;
    animation: slideIn 0.3s ease;
}

.notification.success {
    border-left-color: #4CAF50;
}

.notification.error {
    border-left-color: #f44336;
}

.notification.warning {
    border-left-color: #ff9800;
}

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

.notification-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 10px;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Shimmer Effect */
.shimmer-card {
    position: relative;
    overflow: hidden;
}

.shimmer-card:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shimmerEffect 6s infinite;
}

@keyframes shimmerEffect {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

/* Glow Effects */
.glow-effect {
    position: relative;
    overflow: hidden;
}


.glow-badge {
    background: rgba(0, 198, 255, 0.1);
    border: 1px solid rgba(0, 198, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.3);
    animation: pulse-glow 3s infinite;
}

.glow-text {
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.8);
}

.glow-border {
    border: 1px solid rgba(0, 198, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.3);
}

.glow-image {
    filter: drop-shadow(0 0 10px rgba(0, 198, 255, 0.5));
}

.about-logo-glow {
    filter: drop-shadow(0 0 15px rgba(0, 198, 255, 0.7));
    animation: logo-pulse 3s infinite;
}

@keyframes logo-pulse {
    0% { filter: drop-shadow(0 0 10px rgba(0, 198, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.8)); }
    100% { filter: drop-shadow(0 0 10px rgba(0, 198, 255, 0.5)); }
}

.neon-cyan {
    color: #00c6ff;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.8);
}

.neon-purple {
    color: #8a2be2;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.8);
}

.neon-value {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.ocean-glow {
    color: #e0f7ff;
    text-shadow: 0 0 15px rgba(0, 198, 255, 0.5);
}

.pulse-icon {
    animation: pulse-glow 3s infinite;
}

.pulse-text {
    animation: pulse-text 3s infinite;
}

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

.gradient-title {
    background: linear-gradient(90deg, #00c6ff, #8a2be2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.wave-effect {
    position: relative;
    overflow: hidden;
}

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

.wave-effect:hover:after {
    left: 100%;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.3);
}

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

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

.btn-secondary {
    background: rgba(0, 198, 255, 0.1);
    color: #00c6ff;
    padding: 10px 20px;
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: rgba(0, 198, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.3);
}

.btn-secondary:active {
    transform: translateY(1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none; /* Oculto por defecto en desktop */
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    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);
}

/* Ocean Background Subtle */
.ocean-background.subtle {
    opacity: 0.3;
}

.ocean-background.subtle .bubbles {
    opacity: 0.5;
}

.ocean-background.subtle .waves {
    opacity: 0.3;
}
