body {
    background: #1a1d29;
}

.features-page {
    background: #1a1d29;
    padding: 3rem 1rem;
    min-height: calc(100vh - 150px);
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-header h1 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.features-header p {
    color: #b0b3b8;
    font-size: 1.1rem;
}

.features-header .featuring {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #9ca4c7;
}

.tier-section {
    margin-bottom: 4rem;
}

.tier-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid;
}

.tier-header.basic {
    border-color: #FF5C00;
}

.tier-header.premium {
    border-color: #007bff;
}

.tier-header.partnership {
    border-color: #dc143c;
}

.tier-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.tier-icon.basic,
.tier-icon.premium {
    background: transparent;
    animation: tier-icon-float 4s ease-in-out infinite;
}

.tier-icon.basic img,
.tier-icon.premium img {
    animation: tier-icon-glow 3s ease-in-out infinite;
}

@keyframes tier-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes tier-icon-glow {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 4px rgba(255,255,255,0.15)); }
    50% { opacity: 0.95; filter: drop-shadow(0 0 8px rgba(255,255,255,0.25)); }
}

.tier-icon.partnership {
    background: linear-gradient(135deg, #dc143c 0%, #b8122f 100%);
}

.tier-title {
    flex: 1;
}

.tier-title h2 {
    color: white;
    margin: 0;
    font-size: 1.75rem;
}

.tier-title p {
    color: #b0b3b8;
    margin: 0.25rem 0 0 0;
    font-size: 0.95rem;
}

.tier-badge {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.tier-badge.basic {
    background: rgba(255, 92, 0, 0.2);
    color: #ffb380;
}

.tier-badge.premium {
    background: rgba(0, 123, 255, 0.2);
    color: #66b2ff;
}

.tier-badge.partnership {
    background: rgba(220, 20, 60, 0.2);
    color: #ff6b8a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: #242838;
    border: 1px solid #3a3f51;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.feature-card:hover {
    border-color: rgba(255, 92, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    color: white;
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-card h3 i {
    color: #ff5c00;
    font-size: 1rem;
}

.tier-section.premium .feature-card h3 i {
    color: #66b2ff;
}

.tier-section.premium .feature-card:hover {
    border-color: rgba(0, 123, 255, 0.3);
}

.feature-card p {
    color: #b0b3b8;
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.feature-commands {
    background: rgba(255, 92, 0, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
}

.feature-commands code {
    color: #ff8c42;
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 92, 0, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 92, 0, 0.2);
}

.cta-section h2 {
    color: white;
    margin: 0 0 1rem 0;
}

.cta-section p {
    color: #b0b3b8;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-cta.primary {
    background: linear-gradient(135deg, #ff5c00 0%, #ff8c42 100%);
    color: white;
}

.btn-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 92, 0, 0.4);
}

.btn-cta.secondary {
    background: #242838;
    border: 1px solid #3a3f51;
    color: white;
}

.btn-cta.secondary:hover {
    border-color: #ff5c00;
    color: #ff5c00;
}

@media (max-width: 768px) {
    .features-header h1 {
        font-size: 2rem;
    }
    
    .tier-header {
        flex-wrap: wrap;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}
