/* Staking Page Specific Styles */
.staking-header {
    text-align: center;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    background-color: rgba(30, 14, 64, 0.5);
    margin-bottom: 0;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: none;
}

.staking-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #6446A6;
}

.breadcrumb span {
    color: #6446A6;
}

.cover-decoration {
    position: absolute;
    z-index: 1;
}

.cover-decoration.left-planet {
    left: 0;
    bottom: -10px;
    width: 200px;
    opacity: 0.9;
    z-index: 0;
}

.cover-decoration.astronaut-right {
    right: 15%;
    bottom: 0;
    width: 120px;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

/* Staking Content Styles */
.staking-content {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.staking-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.staking-grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.staking-grid-card {
    background: rgba(20, 10, 40, 0.7);
    border: 1px solid rgba(100, 70, 166, 0.3);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.staking-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(77, 13, 166, 0.3);
    border-color: rgba(100, 70, 166, 0.5);
}

.token-checkbox {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.token-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    background-color: transparent;
}

.token-checkbox input[type="checkbox"]:checked {
    background-color: #6446A6;
    border-color: #6446A6;
}

.token-checkbox input[type="checkbox"]:checked::after {
    content: "✓";
    color: white;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.token-checkbox label {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.staking-grid-info {
    display: flex;
    flex-direction: column;
}

.staking-grid-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
}

.stat-value.apy {
    color: #4caf50;
    font-size: 20px;
    font-weight: 700;
}

.token-symbol {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.stake-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background: linear-gradient(135deg, #6446A6, #4D0DA6);
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stake-btn:hover {
    background: linear-gradient(135deg, #7456B6, #5E1DB6);
    transform: translateY(-2px);
}

.stake-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}

/* Decorative elements */
.staking-decoration {
    position: absolute;
    z-index: -1;
}

.staking-decoration.bottom-planet {
    bottom: -100px;
    left: -50px;
    width: 200px;
    opacity: 0.6;
    animation: planetFloat 15s ease-in-out infinite;
}

.staking-decoration.top-right-ufo {
    top: 100px;
    right: -30px;
    width: 80px;
    opacity: 0.6;
    animation: ufoFloat 10s ease-in-out infinite;
}

@keyframes planetFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes ufoFloat {
    0% {
        transform: translateY(0) rotate(5deg);
    }
    50% {
        transform: translateY(-15px) rotate(-5deg);
    }
    100% {
        transform: translateY(0) rotate(5deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .staking-grid-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .staking-header h1 {
        font-size: 36px;
    }
    
    .cover-decoration.left-planet {
        width: 150px;
        bottom: -30px;
    }
    
    .cover-decoration.astronaut-right {
        width: 100px;
    }
    
    .staking-grid-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .staking-decoration.bottom-planet {
        width: 150px;
    }
    
    .staking-decoration.top-right-ufo {
        width: 60px;
    }
}

@media screen and (max-width: 576px) {
    .staking-header {
        padding: 80px 0 100px;
    }

    .staking-header h1 {
        font-size: 32px;
    }
    
    .cover-decoration.left-planet {
        width: 120px;
        bottom: -25px;
    }
    
    .cover-decoration.astronaut-right {
        display: none; /* Hide astronaut in mobile view */
    }
    
    .staking-grid-card {
        padding: 15px;
    }
    
    .staking-grid-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-value.apy {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .stat-value {
        font-size: 14px;
    }
    
    .stake-btn {
        padding: 10px;
        font-size: 14px;
    }
    
    .staking-decoration.bottom-planet {
        width: 100px;
        opacity: 0.4;
    }
    
    .staking-decoration.top-right-ufo {
        display: none;
    }
} 