/* Section 2 */
.section2 {
    background: linear-gradient(180deg, #0a0515 0%, #1a0f2e 50%, #0a0515 100%);
    padding: 80px 40px;
    min-height: 100vh;
}

/* Header */
.section2-header {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.header-left {
    flex: 1;
}

.header-left h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.header-right {
    flex: 1;
}

.header-right p {
    font-size: 16px;
    color: #999;
    line-height: 1.7;
}

/* Grid Layout */
.section2-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, rgba(30, 20, 50, 0.6) 0%, rgba(20, 15, 40, 0.8) 100%);
    border: 1px solid rgba(138, 87, 255, 0.3);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(138, 87, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 87, 255, 0.5);
    box-shadow: 0 15px 40px rgba(138, 87, 255, 0.3);
}

.large-box {
    min-height: 450px;
}

.small-box {
    min-height: 400px;
}

.box-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-top: auto;
    margin-bottom: 15px;
    line-height: 1.3;
}

.info-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-top: auto;
    margin-bottom: 15px;
    line-height: 1.3;
}

.info-box p {
    font-size: 15px;
    color: #999;
    line-height: 1.6;
}

/* Crypto List */
.crypto-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    position: relative;
}

.crypto-item {
    background: linear-gradient(90deg, rgba(30, 20, 50, 0.4) 0%, rgba(20, 15, 40, 0.6) 100%);
    border: 1px solid rgba(138, 87, 255, 0.3);
    border-radius: 50px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    width: 100%;
    max-width: 350px;
}

.crypto-item:hover {
    border-color: rgba(138, 87, 255, 0.6);
    background: linear-gradient(90deg, rgba(40, 25, 60, 0.6) 0%, rgba(30, 20, 50, 0.8) 100%);
    transform: translateX(10px);
}

.crypto-item img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8A57FF 0%, #6B3FE8 100%);
    padding: 6px;
}

.coin-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8A57FF 0%, #6B3FE8 100%);
    box-shadow: 0 4px 15px rgba(138, 87, 255, 0.4);
}

.crypto-item span {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}

.crypto-symbol {
    margin-left: auto;
    color: #8A57FF !important;
    font-weight: 600 !important;
    font-size: 13px !important;
}

.floating-coin {
    position: absolute;
    bottom: -30px;
    right: 80px;
    animation: float-coin 3s ease-in-out infinite;
    max-width: 200px;
    background: linear-gradient(90deg, rgba(138, 87, 255, 0.15) 0%, rgba(107, 63, 232, 0.1) 100%);
    border: 1px solid rgba(138, 87, 255, 0.4);
}

@keyframes float-coin {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
    }
}

/* Staking Visual */
.staking-visual {
    position: relative;
    height: 280px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staking-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(138, 87, 255, 0.15) 0%, transparent 60%);
    border-radius: 50%;
}

.staking-visual::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(138, 87, 255, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

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

.center-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #8A57FF 0%, #6B3FE8 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(138, 87, 255, 0.6);
    position: relative;
    z-index: 2;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 15px 40px rgba(138, 87, 255, 0.6);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 20px 50px rgba(138, 87, 255, 0.8);
        transform: scale(1.05);
    }
}

.center-icon::before {
    content: '';
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: absolute;
}

.center-icon img {
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 1;
}

.staking-option {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    animation: float-option 4s ease-in-out infinite;
}

.staking-option:nth-child(1) {
    top: 10px;
    left: 10px;
    animation-delay: 0s;
}

.staking-option:nth-child(3) {
    top: 10px;
    right: 10px;
    animation-delay: 0.5s;
}

.staking-option.bottom-left {
    bottom: 10px;
    left: 10px;
    animation-delay: 1s;
}

.staking-option.bottom-right {
    bottom: 10px;
    right: 10px;
    animation-delay: 1.5s;
}

@keyframes float-option {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.option-label {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
}

.apr-badge {
    background: rgba(138, 87, 255, 0.25);
    border: 1px solid rgba(138, 87, 255, 0.5);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 11px;
    color: #8A57FF;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(138, 87, 255, 0.2);
}

/* Security Visual */
.security-visual {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.security-visual::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(138, 87, 255, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-bg 2s ease-in-out infinite;
}

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

.security-visual::after {
    content: '🛡️';
    font-size: 120px;
    position: absolute;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 15px 40px rgba(138, 87, 255, 0.6));
}

.security-visual img {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 10px 30px rgba(138, 87, 255, 0.5));
    animation: pulse 2s ease-in-out infinite;
}

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

/* Rewards List */
.rewards-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.reward-item {
    background: linear-gradient(90deg, rgba(30, 20, 50, 0.4) 0%, rgba(20, 15, 40, 0.6) 100%);
    border: 1px solid rgba(138, 87, 255, 0.3);
    border-radius: 20px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.reward-item:hover {
    border-color: rgba(138, 87, 255, 0.6);
    background: linear-gradient(90deg, rgba(40, 25, 60, 0.6) 0%, rgba(30, 20, 50, 0.8) 100%);
    transform: translateX(5px);
}

.reward-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8A57FF 0%, #6B3FE8 100%);
    padding: 8px;
}

.reward-item .coin-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8A57FF 0%, #6B3FE8 100%);
    box-shadow: 0 4px 15px rgba(138, 87, 255, 0.4);
}

.reward-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reward-label {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.reward-time {
    font-size: 11px;
    color: #888;
    font-weight: 500;
}

.reward-amount {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.amount {
    font-size: 15px;
    color: #fff;
    font-weight: 700;
}

.amount-usd {
    font-size: 11px;
    color: #888;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section2-header {
        flex-direction: column;
        gap: 30px;
    }

    .header-left h1 {
        font-size: 38px;
    }

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

@media (max-width: 768px) {
    .section2 {
        padding: 60px 20px;
    }

    .header-left h1 {
        font-size: 32px;
    }

    .header-right p {
        font-size: 15px;
    }

    .info-box {
        padding: 30px;
    }

    .info-box h2 {
        font-size: 24px;
    }

    .info-box h3 {
        font-size: 20px;
    }

    .staking-visual {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .header-left h1 {
        font-size: 26px;
    }

    .info-box {
        padding: 25px;
    }

    .info-box h2,
    .info-box h3 {
        font-size: 20px;
    }
}