/*
Theme Name: Free Fire Nick Generator
Description: Tema WordPress para gerador de nicks do Free Fire com design gaming
Author: Free Fire Nick Generator
Version: 1.0
*/

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0f0f0f;
    color: #ffffff;
    line-height: 1.6;
}

/* Design System Colors */
:root {
    --fire-orange: #ff3d00;
    --fire-glow: #ff6633;
    --gaming-dark: #1a1a1a;
    --gaming-darker: #0a0a0a;
    --card-bg: #222222;
    --border-color: #333333;
    --text-muted: #999999;
    --text-white: #ffffff;
}

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

/* Header */
.site-header {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--fire-orange), var(--fire-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-navigation a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--fire-orange);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--gaming-darker), var(--gaming-dark));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.1;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--fire-orange), var(--fire-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-fire {
    background: linear-gradient(135deg, var(--fire-orange), var(--fire-glow));
    color: white;
    box-shadow: 0 4px 20px rgba(255, 61, 0, 0.4);
}

.btn-fire:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 61, 0, 0.6);
    animation: pulse-fire 1s infinite;
}

.btn-gaming {
    background: var(--card-bg);
    color: var(--text-white);
    border: 1px solid var(--fire-orange);
}

.btn-gaming:hover {
    background: var(--fire-orange);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.3);
}

/* Generator Section */
.generator-section {
    padding: 80px 0;
    background: var(--gaming-dark);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--fire-orange), var(--fire-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.generator-form {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.generator-input {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.generator-input:focus {
    outline: none;
    border-color: var(--fire-orange);
    box-shadow: 0 0 0 2px rgba(255, 61, 0, 0.2);
}

/* Results */
.results-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: var(--gaming-dark);
    border-radius: 6px;
    margin-bottom: 8px;
    transition: background 0.2s ease;
}

.result-item:hover {
    background: #2a2a2a;
}

.result-nickname {
    font-family: monospace;
    font-size: 1rem;
    color: var(--text-white);
    flex: 1;
}

.copy-btn {
    background: var(--fire-orange);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.2s ease;
}

.copy-btn:hover {
    background: var(--fire-glow);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--gaming-darker);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border-color: var(--fire-orange);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--fire-orange);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--fire-orange), var(--fire-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--fire-orange);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fade-in-up 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* WordPress Specific */
.wp-block-group {
    margin-bottom: 2rem;
}

.wp-block-heading {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.wp-block-paragraph {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.content-area {
    padding: 2rem 0;
}

.post-content {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.post-title {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.post-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}