/* Homepage Styles */
.hero-section {
    background: linear-gradient(135deg, #b63030 0%, #8b1e1e 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/backgroundpo.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: pulse 2s infinite;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.status-badge {
    display: inline-block;
    background: linear-gradient(45deg, #30c620, #28a518);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(48, 198, 32, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    margin-right: 8px;
    animation: blink 1s infinite;
}

.platforms-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
}

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

.platform-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #30c620;
}

.platform-card.featured {
    border: 3px solid #ffd700;
    background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 8px 20px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

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

.platform-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #9d2525, #b63030);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(157, 37, 37, 0.3);
}

.platform-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #30c620;
}

.status-online {
    width: 8px;
    height: 8px;
    background: #30c620;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.platform-info h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.platform-description {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.platform-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #30c620;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
}

.platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.feature-tag {
    background: linear-gradient(45deg, #30c620, #28a518);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(48, 198, 32, 0.2);
}

.platform-btn {
    width: 100%;
    background: linear-gradient(45deg, #9d2525, #b63030);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-btn:hover {
    background: linear-gradient(45deg, #b63030, #d63d3d);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(157, 37, 37, 0.3);
}

.featured-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
}

.featured-btn:hover {
    background: linear-gradient(45deg, #ffed4e, #fff176);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.footer-section {
    background: #333;
    padding: 40px 0;
}

.warning-box {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.warning-box h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.warning-box p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.small-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0 !important;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes glow {
    from { box-shadow: 0 4px 15px rgba(48, 198, 32, 0.3); }
    to { box-shadow: 0 4px 25px rgba(48, 198, 32, 0.6); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .platform-card {
        padding: 20px;
    }
    
    .platform-stats {
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .platforms-section {
        padding: 40px 0;
    }
    
    .platform-features {
        justify-content: center;
    }
    
    .status-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

