.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
    -o-user-select: none;
    user-select: none;
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    z-index: 0;
}

.feature-card {
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid transparent;
    transform-style: preserve-3d;
    transform: perspective(500px) translateZ(0);
}

.feature-card:hover {
    transform: perspective(500px) translateZ(20px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card-primary {
    border-color: rgba(241, 33, 33, 0.3);
}

.feature-card-primary:hover {
    box-shadow: 0 0 30px 5px rgba(241, 33, 33, 0.2);
}

.feature-card-blue {
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-card-blue:hover {
    box-shadow: 0 0 30px 5px rgba(59, 130, 246, 0.2);
}

.feature-card-green {
    border-color: rgba(34, 197, 94, 0.3);
}

.feature-card-green:hover {
    box-shadow: 0 0 30px 5px rgba(34, 197, 94, 0.2);
}

.feature-card-purple {
    border-color: rgba(168, 85, 247, 0.3);
}

.feature-card-purple:hover {
    box-shadow: 0 0 30px 5px rgba(168, 85, 247, 0.2);
}

.feature-card-yellow {
    border-color: rgba(234, 179, 8, 0.3);
}

.feature-card-yellow:hover {
    box-shadow: 0 0 30px 5px rgba(234, 179, 8, 0.2);
}

.glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(241, 33, 33, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.glass-card {
    /* background: rgba(3, 6, 13, 0.7); */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card:hover {
    transform: perspective(500px) translateZ(10px);
    background: rgba(255, 255, 255, 0.045);
}

.platform-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 12px;
}

.platform-card {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
}

.platform-card:hover {
    transform: perspective(500px) translateZ(10px);
    background: rgba(255, 255, 255, 0.08);
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: white;
    opacity: 0;
    animation: sparkle 3s infinite;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.btn-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    border-bottom: 4px solid rgba(0, 0, 0, 0.2);
}

.btn-3d:hover {
    transform: translateY(-2px);
    border-bottom-width: 6px;
}

.btn-3d:active {
    transform: translateY(2px);
    border-bottom-width: 2px;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.tag {
    background: rgba(241, 33, 33, 0.1);
    border: 1px solid rgba(241, 33, 33, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.progress-bar {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f12121, #f97878);
    border-radius: 3px;
    width: 0%;
    animation: progress-loading 2s linear infinite;
    background-size: 200% 100%;
}

.api-status-container {
    background: rgba(3, 6, 13, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.api-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.api-status-badge {
    display: flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.api-status-badge i {
    margin-right: 0.5rem;
}

.api-timeline {
    display: flex;
    height: 80px;
    margin-bottom: 1.5rem;
    position: relative;
}

.api-day {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.api-day:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20px;
    height: 2px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.api-day-bar {
    width: 12px;
    background: rgba(16, 185, 129, 0.3);
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: height 0.5s ease;
}

.api-day-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, #10B981, #34D399);
    border-radius: 6px 6px 0 0;
}

.api-day-label {
    position: absolute;
    bottom: -25px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.api-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.api-stat {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
}

.api-stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.api-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.api-update-time {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
}

@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .api-timeline {
        height: 60px;
    }

    .api-day-bar {
        width: 8px;
    }

    .api-stats {
        grid-template-columns: 1fr;
    }
}

@keyframes sparkle {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 0.8;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0);
    }
}