/* Estilos Globais - Inspirado em mirasaki.dev */

/* Classes utilitárias */
.text-center {
    text-align: center;
}

:root {
    /* Cores principais */
    --primary-color: #8b5cf6; /* Roxo */
    --secondary-color: #0f172a; /* Azul escuro */
    --accent-color: #10b981; /* Verde */
    --dark-bg: #0f172a; /* Fundo escuro principal */
    --card-bg: rgba(30, 41, 59, 0.7); /* Fundo dos cards com transparência */
    
    /* Cores de texto */
    --text-color: #e2e8f0;
    --text-light: #94a3b8;
    --text-dark: #1e293b;
    
    /* Cores de estado */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --danger-hover: #dc2626;
    
    /* Cores de borda */
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Efeitos */
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    --gradient-accent: linear-gradient(135deg, #f472b6 0%, #8b5cf6 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: var(--dark-bg);
}
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
    padding-top: 70px; /* Espaço para o header fixo */
}

/* Header e Navegação */
header {
    background-color: var(--dark-bg);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    border-radius: 0;
}

.main-menu {
    display: flex;
    gap: 20px;
}

.main-menu li a {
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 4px;
}

.main-menu li a:hover,
.main-menu li a.active {
    color: var(--primary-color);
    background-color: rgba(139, 92, 246, 0.1);
}

@media (max-width: 768px) {
    header .container {
        flex-direction: row;
    }
    
    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
        background: none;
        border: none;
        color: var(--text-light);
        font-size: 1.5rem;
        padding: 5px;
    }
    
    .main-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }
    
    .main-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .main-menu li {
        width: 100%;
        text-align: center;
    }
    
    .main-menu li a {
        display: block;
        padding: 12px;
    }
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

body {
    background-image: radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Seções */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Seções Principais */
.tools-section {
    background-color: var(--secondary-color);
    position: relative;
}

.tools-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: white;
    position: relative;
}

.tools-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.tools-category {
    margin-bottom: 60px;
}

.tools-category h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: white;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
}

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

.tool-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(139, 92, 246, 0.3);
}

.tool-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

.tool-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.tool-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
    position: relative;
}

a:hover {
    color: var(--accent-color);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: var(--box-shadow);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s;
}

.btn:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7c4dff 0%, #5a5af3 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #0ea271 0%, #3172e3 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background: var(--danger-hover);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
}

/* Seção de Comunidade */
.community-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--dark-bg);
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.community-section .container {
    position: relative;
    z-index: 1;
}

.community-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.community-section p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.community-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.community-links .btn {
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.community-links .btn i {
    font-size: 1.2rem;
}

/* Seção de Suporte */
.support-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    background-color: var(--secondary-color);
}

.support-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.support-section p {
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.support-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(139, 92, 246, 0.3);
}

.support-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.support-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1rem;
}

.support-card .btn {
    margin-top: auto;
}

/* Seção Sobre */
.about-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--dark-bg);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.about-section > .container > p {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
}

.team {
    margin-top: 60px;
}

.team h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: white;
    position: relative;
}

.team h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(139, 92, 246, 0.3);
}

.team-member-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.team-member-info {
    padding: 20px;
    text-align: center;
}

.team-member-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: white;
}

.team-member-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.join-team {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background-color: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
}

.join-team h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}

.join-team p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.join-team .btn {
    display: inline-block;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-column p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--card-bg);
    color: var(--text-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    transform: translateY(-3px);
    color: white;
}

.social-links a:hover i.fa-discord {
    color: #5865F2;
}

.social-links a:hover i.fa-facebook {
    color: #1877F2;
}

.social-links a:hover i.fa-twitter {
    color: #1DA1F2;
}

.social-links a:hover i.fa-youtube {
    color: #FF0000;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
}

.copyright p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Animações */
.tool-card, .support-card, .team-member {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Estilo para membros da equipe */
.team-member {
    text-align: center;
    padding: 15px;
    background: transparent;
    border: none !important;
    box-shadow: none !important;
    transition: none;
}

.team-member:hover {
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
}

.team-member-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.team-member h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.team-member p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.tool-card.visible, .support-card.visible, .team-member.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Efeito de atraso em cascata */
.tools-grid .tool-card:nth-child(1),
.support-options .support-card:nth-child(1),
.team-members .team-member:nth-child(1) {
    transition-delay: 0.1s;
}

.tools-grid .tool-card:nth-child(2),
.support-options .support-card:nth-child(2),
.team-members .team-member:nth-child(2) {
    transition-delay: 0.2s;
}

.tools-grid .tool-card:nth-child(3),
.support-options .support-card:nth-child(3),
.team-members .team-member:nth-child(3) {
    transition-delay: 0.3s;
}

.tools-grid .tool-card:nth-child(n+4),
.support-options .support-card:nth-child(n+4),
.team-members .team-member:nth-child(n+4) {
    transition-delay: 0.4s;
}

/* Media Queries para Responsividade */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .tools-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .support-options {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .team-members {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .tools-section h2,
    .community-section h2,
    .support-section h2,
    .about-section h2 {
        font-size: 2rem;
    }
    
    .tools-category h3 {
        font-size: 1.5rem;
    }
    
    .footer-columns {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1rem;
    }
    
    .community-links {
        flex-direction: column;
        align-items: center;
    }
    
    .community-links .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .join-team {
        padding: 30px 20px;
    }
    
    .join-team h3 {
        font-size: 1.5rem;
    }
}

/* Botões de redes sociais */
.btn-discord {
    background: #5865F2;
    color: white;
}

.btn-discord:hover {
    background: #4752c4;
    color: white;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

.btn-facebook {
    background: #1877F2;
    color: white;
}

.btn-facebook:hover {
    background: #0d65d9;
    color: white;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.btn-reddit {
    background: #FF4500;
    color: white;
}

.btn-reddit:hover {
    background: #e03d00;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.btn-youtube {
    background: #FF0000;
    color: white;
}

.btn-youtube:hover {
    background: #e00000;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.btn-twitter {
    background: #1DA1F2;
    color: white;
}

.btn-twitter:hover {
    background: #0c8ad9;
    color: white;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background-color: var(--primary-color);
    color: white;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    letter-spacing: 0.5px;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    color: white;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
}

.btn-secondary {
    background: var(--gradient-secondary);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-discord {
    background: linear-gradient(135deg, #7289da 0%, #5865F2 100%);
    box-shadow: 0 4px 15px rgba(114, 137, 218, 0.3);
}

.btn-discord:hover {
    box-shadow: 0 6px 20px rgba(114, 137, 218, 0.4);
}

.btn-github {
    background: linear-gradient(135deg, #333 0%, #24292e 100%);
    box-shadow: 0 4px 15px rgba(36, 41, 46, 0.3);
}

.btn-github:hover {
    box-shadow: 0 6px 20px rgba(36, 41, 46, 0.4);
}

/* Header */
header {
    background-color: rgba(15, 23, 42, 0.9);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    max-height: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.logo-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.logo h1 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.logo span {
    color: var(--accent-color);
    margin-left: 2px;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.main-menu {
    display: flex;
    gap: 2rem;
}

.main-menu li {
    position: relative;
}

.main-menu a {
    color: var(--text-light);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.main-menu a:hover {
    color: white;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: 2px;
    opacity: 0;
}

.main-menu a:hover::after {
    width: 100%;
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    text-align: center;
    padding: 150px 0 120px;
    overflow: hidden;
    background-color: var(--secondary-color);
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatingParticles {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes nebula {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

@keyframes twinkle {
    0% {
        opacity: 0.2;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.2;
        transform: scale(0.8);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    background-size: 200% 200%;
    animation: gradientAnimation 15s ease infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%238b5cf6" opacity="0.3"/></svg>');
    z-index: 1;
    pointer-events: none;
}

/* Stars */
.hero .star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: twinkle var(--twinkle-duration) ease-in-out infinite;
}

.hero .star-tiny {
    width: 1px;
    height: 1px;
    opacity: 0.7;
}

.hero .star-small {
    width: 2px;
    height: 2px;
    opacity: 0.8;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}

.hero .star-medium {
    width: 3px;
    height: 3px;
    opacity: 0.9;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.9);
}

/* Nebula effects */
.hero .nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
    animation: nebula 12s ease-in-out infinite;
}

.hero .nebula-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -100px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.05) 50%, transparent 70%);
    animation-delay: 0s;
}

.hero .nebula-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 60%, transparent 80%);
    animation-delay: 3s;
}

.hero .nebula-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.05) 50%, transparent 70%);
    animation-delay: 6s;
}

/* Floating particles */
.hero .particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    filter: blur(1px);
    animation: floatingParticles 8s ease-in-out infinite;
}

.hero .particle-small {
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(16, 185, 129, 0.6));
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

.hero .particle-medium {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(16, 185, 129, 0.5));
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
}

.hero .particle-large {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(16, 185, 129, 0.4));
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.7);
    animation: pulse 4s ease-in-out infinite, floatingParticles 15s ease-in-out infinite;
}

.hero .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.hero .particle:nth-child(2) {
    top: 60%;
    left: 30%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.hero .particle:nth-child(3) {
    top: 40%;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.hero .particle:nth-child(4) {
    top: 80%;
    left: 80%;
    animation-delay: 1s;
    animation-duration: 11s;
}

.hero .particle:nth-child(5) {
    top: 30%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.hero .particle:nth-child(6) {
    top: 15%;
    left: 85%;
    animation-delay: 0.5s;
    animation-duration: 13s;
}

.hero .particle:nth-child(7) {
    top: 70%;
    left: 20%;
    animation-delay: 2.5s;
    animation-duration: 16s;
}

.hero .particle:nth-child(8) {
    top: 50%;
    left: 40%;
    animation-delay: 1.5s;
    animation-duration: 14s;
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    line-height: 1.7;
}

/* Tools Section */
.tools-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tools-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 80% 10%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.tools-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.tools-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.tools-category {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.tools-category h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    padding-bottom: 15px;
    position: relative;
    color: var(--text-color);
    font-weight: 600;
    display: inline-block;
}

.tools-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.tool-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0.7;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(139, 92, 246, 0.2);
}

.tool-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.tool-card h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.tool-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    flex-grow: 1;
}

.tool-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Community Section */
.community-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: rgba(15, 23, 42, 0.3);
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.community-section .container {
    position: relative;
    z-index: 1;
}

.community-section h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.community-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.community-section p {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.community-links .btn {
    display: flex;
    align-items: center;
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 10px;
}

.community-links .btn i {
    margin-right: 12px;
    font-size: 1.25rem;
}

/* Support Section */
.support-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.07) 0%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.07) 0%, transparent 60%);
    z-index: 0;
}

.support-section .container {
    position: relative;
    z-index: 1;
}

.support-section h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.support-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.support-section > .container > p {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.support-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    opacity: 0.7;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(16, 185, 129, 0.2);
}

.support-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.support-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.support-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* About Section */
.about-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.about-section > .container > p {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.team h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.team-member {
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.team-member img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    filter: saturate(0.9);
}

.team-member:hover img {
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
    filter: saturate(1.1);
}

.team-member h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 600;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.join-team {
    text-align: center;
    padding: 50px 30px;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.join-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0.7;
}

.join-team h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: var(--text-color);
    font-weight: 600;
}

.join-team p {
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: rgba(15, 23, 42, 0.95);
    color: var(--text-light);
    padding: 80px 0 30px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-column ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--gradient-primary);
    transition: var(--transition);
    opacity: 0;
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-column ul li a:hover::before {
    width: 100%;
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.social-links a:hover {
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.social-links a:hover::before {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom a {
    color: white;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.7;
    transition: var(--transition);
}

.footer-bottom a:hover::after {
    opacity: 1;
    height: 2px;
}

/* Estilos para todas as páginas de ferramentas */
.tool-content {
    position: relative;
    padding: 4rem 0;
    margin-bottom: 3rem;
    background-color: #070a12 !important;
    overflow: hidden;
    color: #ffffff;
}

.tool-content * {
    background-color: transparent !important;
}

.tool-content div, .tool-content section {
    background-color: transparent !important;
}

.tool-content .tool-description {
    background-color: rgba(7, 10, 18, 0.7) !important;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.tool-content .container {
    position: relative;
    z-index: 1;
}

body, html {
    background-color: #070a12 !important;
    color: #ffffff;
}

.tool-content, .tool-tutorial, .tool-header {
    background-color: #070a12 !important;
}

.tool-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, 
        rgba(5, 8, 15, 0.98) 0%, 
        rgba(10, 15, 25, 0.95) 30%,
        rgba(5, 8, 15, 0.98) 60%,
        rgba(10, 15, 25, 0.95) 100%);
    background-size: 400% 400%;
    animation: gradientBackground 15s ease infinite;
    z-index: -2;
}

.tool-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 30%);
    z-index: -1;
    pointer-events: none;
}

@keyframes gradientBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.tool-hero {
    position: relative;
    padding: 100px 0 80px;
    text-align: center;
    background-color: var(--secondary-color);
    overflow: hidden;
    min-height: 300px;
}

.tool-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    background-size: 200% 200%;
    animation: gradientAnimation 15s ease infinite;
    z-index: 0;
}

.tool-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%238b5cf6" opacity="0.3"/></svg>');
    z-index: 1;
    pointer-events: none;
}

.tool-hero .nebula,
.tool-hero .star,
.tool-hero .particle {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

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

.tool-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.tool-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    line-height: 1.7;
}

.tool-content {
    padding: 80px 0;
    background-color: #070a12;
    position: relative;
    overflow: hidden;
}

.tool-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, 
        rgba(5, 8, 15, 0.98) 0%, 
        rgba(10, 15, 25, 0.95) 30%,
        rgba(5, 8, 15, 0.98) 60%,
        rgba(10, 15, 25, 0.95) 100%);
    background-size: 400% 400%;
    animation: gradientBackground 15s ease infinite;
    z-index: -2;
}

.tool-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 30%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%238b5cf6" opacity="0.2"/></svg>');
    z-index: -1;
    pointer-events: none;
}

@keyframes gradientBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatingAnimation {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.elem1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -100px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, rgba(139, 92, 246, 0.1) 70%);
    animation: floatingAnimation 25s ease-in-out infinite;
}

.elem2 {
    width: 250px;
    height: 250px;
    top: 60%;
    right: -50px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.6) 0%, rgba(16, 185, 129, 0.1) 70%);
    animation: floatingAnimation 20s ease-in-out infinite reverse;
}

.elem3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 20%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, rgba(99, 102, 241, 0.1) 70%);
    animation: floatingAnimation 30s ease-in-out infinite;
    animation-delay: 5s;
}

.elem4 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    left: 40%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, rgba(139, 92, 246, 0.1) 70%);
    animation: floatingAnimation 22s ease-in-out infinite reverse;
    animation-delay: 3s;
}

.elem5 {
    width: 220px;
    height: 220px;
    top: 40%;
    right: 25%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, rgba(16, 185, 129, 0.1) 70%);
    animation: floatingAnimation 28s ease-in-out infinite;
    animation-delay: 7s;
}

.elem6 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: 10%;
    background: radial-gradient(circle, rgba(76, 29, 149, 0.5) 0%, rgba(76, 29, 149, 0.1) 70%);
    animation: floatingAnimation 32s ease-in-out infinite;
    animation-delay: 2s;
}

.elem7 {
    width: 280px;
    height: 280px;
    top: -50px;
    right: 30%;
    background: radial-gradient(circle, rgba(6, 95, 70, 0.4) 0%, rgba(6, 95, 70, 0.1) 70%);
    animation: floatingAnimation 26s ease-in-out infinite reverse;
    animation-delay: 8s;
}

.elem8 {
    width: 320px;
    height: 320px;
    bottom: 20%;
    right: -100px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.4) 0%, rgba(79, 70, 229, 0.1) 70%);
    animation: floatingAnimation 30s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    25% {
        opacity: 0.5;
    }
    75% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100px) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

.bg-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.bg-particle.p1 {
    top: 15%;
    left: 10%;
    animation: particleFloat 15s ease-in-out infinite;
    animation-delay: 0s;
}

.bg-particle.p2 {
    top: 25%;
    left: 20%;
    animation: particleFloat 18s ease-in-out infinite;
    animation-delay: 2s;
}

.bg-particle.p3 {
    top: 35%;
    left: 15%;
    animation: particleFloat 20s ease-in-out infinite;
    animation-delay: 4s;
}

.bg-particle.p4 {
    top: 65%;
    left: 5%;
    animation: particleFloat 17s ease-in-out infinite;
    animation-delay: 1s;
}

.bg-particle.p5 {
    top: 75%;
    left: 25%;
    animation: particleFloat 19s ease-in-out infinite;
    animation-delay: 3s;
}

.bg-particle.p6 {
    top: 20%;
    right: 15%;
    animation: particleFloat 16s ease-in-out infinite;
    animation-delay: 2.5s;
}

.bg-particle.p7 {
    top: 40%;
    right: 25%;
    animation: particleFloat 21s ease-in-out infinite;
    animation-delay: 0.5s;
}

.bg-particle.p8 {
    top: 60%;
    right: 10%;
    animation: particleFloat 14s ease-in-out infinite;
    animation-delay: 3.5s;
}

.bg-particle.p9 {
    top: 80%;
    right: 20%;
    animation: particleFloat 22s ease-in-out infinite;
    animation-delay: 1.5s;
}

.bg-particle.p10 {
    top: 50%;
    left: 50%;
    animation: particleFloat 25s ease-in-out infinite;
    animation-delay: 4.5s;
}

.bg-particle.p11 {
    top: 10%;
    right: 30%;
    animation: particleFloat 16s ease-in-out infinite;
    animation-delay: 2.5s;
}

.bg-particle.p12 {
    top: 70%;
    right: 40%;
    animation: particleFloat 19s ease-in-out infinite;
    animation-delay: 5.5s;
}

.bg-particle.p13 {
    top: 30%;
    left: 40%;
    animation: particleFloat 23s ease-in-out infinite;
    animation-delay: 1.5s;
}

.bg-particle.p14 {
    top: 85%;
    left: 15%;
    animation: particleFloat 17s ease-in-out infinite;
    animation-delay: 3.5s;
}

.bg-particle.p15 {
    top: 5%;
    left: 5%;
    animation: particleFloat 21s ease-in-out infinite;
    animation-delay: 6.5s;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.1;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.8);
    z-index: -1;
    opacity: 0.1;
}

.star.s1 {
    top: 15%;
    left: 10%;
    animation: twinkle 4s ease-in-out infinite;
}

.star.s2 {
    top: 25%;
    left: 25%;
    animation: twinkle 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.star.s3 {
    top: 10%;
    right: 20%;
    animation: twinkle 3.5s ease-in-out infinite;
    animation-delay: 1s;
}

.star.s4 {
    top: 40%;
    right: 10%;
    animation: twinkle 4.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.star.s5 {
    top: 70%;
    left: 15%;
    animation: twinkle 3s ease-in-out infinite;
    animation-delay: 2s;
}

.star.s6 {
    top: 60%;
    right: 25%;
    animation: twinkle 5.5s ease-in-out infinite;
    animation-delay: 2.5s;
}

.star.s7 {
    top: 80%;
    right: 10%;
    animation: twinkle 4s ease-in-out infinite;
    animation-delay: 3s;
}

.star.s8 {
    top: 30%;
    left: 40%;
    animation: twinkle 3.5s ease-in-out infinite;
    animation-delay: 3.5s;
}

.star.s9 {
    top: 50%;
    right: 40%;
    animation: twinkle 5s ease-in-out infinite;
    animation-delay: 4s;
}

.star.s10 {
    top: 20%;
    left: 50%;
    animation: twinkle 4.5s ease-in-out infinite;
    animation-delay: 4.5s;
}

.bg-particle.p12 {
    top: 70%;
    right: 40%;
    animation: particleFloat 19s ease-in-out infinite;
    animation-delay: 5.5s;
}

.bg-particle.p13 {
    top: 30%;
    left: 40%;
    animation: particleFloat 23s ease-in-out infinite;
    animation-delay: 1.5s;
}

.bg-particle.p14 {
    top: 85%;
    left: 15%;
    animation: particleFloat 17s ease-in-out infinite;
    animation-delay: 3.5s;
}

.bg-particle.p15 {
    top: 5%;
    left: 5%;
    animation: particleFloat 21s ease-in-out infinite;
    animation-delay: 6.5s;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.1;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.8);
    z-index: -1;
    opacity: 0.1;
}

.star.s1 {
    top: 15%;
    left: 10%;
    animation: twinkle 4s ease-in-out infinite;
}

.star.s2 {
    top: 25%;
    left: 25%;
    animation: twinkle 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.star.s3 {
    top: 10%;
    right: 20%;
    animation: twinkle 3.5s ease-in-out infinite;
    animation-delay: 1s;
}

.star.s4 {
    top: 40%;
    right: 10%;
    animation: twinkle 4.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.star.s5 {
    top: 70%;
    left: 15%;
    animation: twinkle 3s ease-in-out infinite;
    animation-delay: 2s;
}

.star.s6 {
    top: 60%;
    right: 25%;
    animation: twinkle 5.5s ease-in-out infinite;
    animation-delay: 2.5s;
}

.star.s7 {
    top: 80%;
    right: 10%;
    animation: twinkle 4s ease-in-out infinite;
    animation-delay: 3s;
}

.star.s8 {
    top: 30%;
    left: 40%;
    animation: twinkle 3.5s ease-in-out infinite;
    animation-delay: 3.5s;
}

.star.s9 {
    top: 50%;
    right: 40%;
    animation: twinkle 5s ease-in-out infinite;
    animation-delay: 4s;
}

.star.s10 {
    top: 20%;
    left: 50%;
    animation: twinkle 4.5s ease-in-out infinite;
    animation-delay: 4.5s;
}

.tool-card {
    background: rgba(8, 12, 20, 0.8);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tool-description h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tool-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.tool-description h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.tool-description ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.tool-description ul li {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.file-upload {
    background: rgba(5, 10, 15, 0.85);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.upload-area {
    background: rgba(3, 7, 12, 0.7);
    border: 2px dashed rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: rgba(139, 92, 246, 0.6);
    background: rgba(5, 10, 18, 0.8);
}

.feature-list li {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.glass-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.glass-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transform: translateY(-5px);
}

.file-upload h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.file-upload h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.upload-area {
    border: 2px dashed rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.4);
}

.upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(15, 23, 42, 0.6);
}

.upload-area i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.upload-area p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.editor-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.search-filter {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.input-group, .select-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i, .select-group i {
    position: absolute;
    left: 15px;
    color: var(--primary-color);
    pointer-events: none;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
textarea,
select {
    background-color: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    width: 100%;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), inset 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border-color: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.25), inset 0 1px 3px rgba(0, 0, 0, 0.3);
    outline: none;
}

.slider-group {
    margin-bottom: 25px;
}

.slider-container {
    position: relative;
    padding: 10px 0;
    width: 100%;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 4px;
    outline: none;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
    margin: 10px 0;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgb(139, 92, 246);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
}

.slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgb(139, 92, 246);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
    border: none;
}

.slider::-webkit-slider-thumb:hover,
.slider:active::-webkit-slider-thumb {
    background: rgb(168, 85, 247);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.slider::-moz-range-thumb:hover,
.slider:active::-moz-range-thumb {
    background: rgb(168, 85, 247);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    padding: 0 2px;
    margin-top: 5px;
}

.slider-marks span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.slider-value {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    margin-left: 5px;
    min-width: 30px;
    text-align: center;
}

.input-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.select-group, .input-group {
    position: relative;
    display: flex;
    align-items: center;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.select-group select {
    padding: 12px 15px 12px 40px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    background: rgba(15, 23, 42, 0.6);
    color: var(--text-color);
    font-size: 1rem;
    width: 200px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.select-group::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    color: var(--primary-color);
    pointer-events: none;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.items-table-container {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.4);
}

.items-table {
    width: 100%;
    border-collapse: collapse;
}

.items-table th {
    background: rgba(15, 23, 42, 0.8);
    color: var(--text-color);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.tool-header {
    background-color: #070a12 !important;
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.tool-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(125deg, rgba(5,8,15,0.98) 0%, rgba(10,15,25,0.95) 30%, rgba(5,8,15,0.98) 60%, rgba(10,15,25,0.95) 100%);
    background-size: 400% 400%;
    animation: gradientBackground 15s ease infinite;
    z-index: -1;
}

.tool-header-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.tool-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tool-header-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.tool-tutorial-header {
    margin-top: 1.5rem;
    background-color: rgba(15, 23, 42, 0.7);
    border-radius: 12px;
    padding: 20px 25px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.tool-tutorial-header h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    padding-bottom: 0.5rem;
}

.tool-tutorial-header ol {
    list-style-position: inside;
    margin-bottom: 1.5rem;
    counter-reset: tutorial-counter;
}

.tool-tutorial-header ol li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding-left: 1.5rem;
    counter-increment: tutorial-counter;
}

.tool-tutorial-header ol li::before {
    content: counter(tutorial-counter) ".";
    position: absolute;
    left: 0;
    color: rgba(139, 92, 246, 0.9);
    font-weight: bold;
}

.tool-tutorial-header strong {
    color: #ffffff;
    font-weight: 600;
}

.tool-tutorial-header .info-box {
    background-color: rgba(139, 92, 246, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 1rem;
    border-left: 3px solid rgba(139, 92, 246, 0.6);
}

.tool-tutorial-header .info-box h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.tool-tutorial-header .info-box i {
    color: rgba(139, 92, 246, 0.9);
    margin-right: 8px;
}

.tool-tutorial-header .info-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.tutorial-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tutorial-steps .step {
    background-color: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.9rem;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.tutorial-steps .step:hover {
    background-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid rgba(139, 92, 246, 0.7);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background-color: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.items-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    color: var(--text-light);
}

.items-table tbody tr {
    transition: all 0.3s ease;
}

.items-table tbody tr:hover {
    background: rgba(139, 92, 246, 0.05);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-color);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

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

.tutorial-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #6d28d9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(109, 40, 217, 0.3);
}

.step-number span {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.step-content h3 i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .main-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        z-index: 100;
    }

    .main-menu.active {
        display: flex;
    }

    .main-menu li {
        margin: 12px 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.1rem;
        max-width: 90%;
    }
    
    .section-title {
        font-size: 2rem;
    }

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

    .community-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .community-link {
        width: 100%;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}