@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.about-graphic {
    animation: float-rotate 20s ease-in-out infinite;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 94, 0, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tool-card:hover {
    border-color: rgba(255, 94, 0, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 94, 0, 0.3);
}

.tool-card.upcoming {
    opacity: 0.6;
}

.tool-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    color: #FF5E00;
    filter: drop-shadow(0 0 20px rgba(255, 94, 0, 0.5));
}

.tool-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.tool-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #FF5E00, #00B2FF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tool-card p {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tool-features {
    list-style: none;
    margin-bottom: 30px;
    width: 100%;
}

.tool-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    opacity: 0.8;
    text-align: left;
}

.tool-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #FF5E00;
    font-size: 1.1rem;
}

.coming-soon {
    padding: 12px 24px;
    background: rgba(255, 94, 0, 0.1);
    border: 1px solid rgba(255, 94, 0, 0.3);
    border-radius: 5px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    margin-top: auto;
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(255, 94, 0, 0.2);
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-container {
        bottom: 40px;
    }
}

.feedback {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.feedback-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 94, 0, 0.2);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.feedback-intro {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input,
.form-textarea {
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 94, 0, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FF5E00;
    box-shadow: 0 0 20px rgba(255, 94, 0, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.feedback-form .cta-button {
    margin-top: 10px;
    align-self: center;
    min-width: 200px;
}

.site-footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 94, 0, 0.2);
    padding: 30px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.disclaimer-link {
    color: #FF5E00;
    text-decoration: none;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.disclaimer-link:hover {
    color: #00B2FF;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .feedback-container {
        padding: 30px 20px;
    }

    .site-footer {
        padding: 40px 20px 20px;
    }

    .disclaimer h3 {
        font-size: 1.1rem;
    }

    .disclaimer p {
        font-size: 0.9rem;
    }
}