/* Main Container */
.discord-font-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2f3136;
    line-height: 1.6;
}

/* Hero Section */
.discord-hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #5865F2 0%, #404EED 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.3);
}

.discord-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.discord-hero .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Tool Section */
.tool-section {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
    padding: 30px;
    margin-bottom: 40px;
}

.input-output-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .input-output-container {
        grid-template-columns: 1fr;
    }
}

.discord-textarea {
    width: 100%;
    min-height: 150px;
    padding: 18px;
    border: 2px solid #e3e5e8;
    border-radius: 10px;
    font-size: 1rem;
    resize: vertical;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    font-family: inherit;
}

.discord-textarea:focus {
    outline: none;
    border-color: #5865F2;
    box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.1);
}

.discord-textarea.output {
    background-color: #f7f8fa;
    font-size: 1.05rem;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #5865F2;
    font-size: 1.05rem;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.action-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
}

.btn-icon {
    font-size: 1.1rem;
}

.copy-btn {
    background-color: #57F287;
    color: #1a1a1a;
}

.copy-btn:hover {
    background-color: #48d778;
    transform: translateY(-1px);
}

.clear-btn {
    background-color: #ED4245;
    color: white;
}

.clear-btn:hover {
    background-color: #d13538;
    transform: translateY(-1px);
}

/* Style Options */
.style-options {
    margin: 30px 0;
}

.style-options h3 {
    margin-bottom: 15px;
    color: #5865F2;
}

.style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.style-option {
    padding: 15px;
    border: 2px solid #e3e5e8;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.style-option:hover {
    border-color: #5865F2;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.style-option:active {
    transform: translateY(-1px);
}

.style-preview {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 8px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.style-label {
    font-weight: 600;
    color: #4f5660;
}

/* Preview Section */
.preview-section {
    margin-top: 30px;
}

.preview-box {
    background-color: #36393f;
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
    min-height: 80px;
    color: #dcddde;
    font-size: 1.2rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

/* Info Section */
.info-section {
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.info-card {
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.card-primary {
    background: linear-gradient(135deg, #5865F2 0%, #404EED 100%);
    color: white;
}

.card-secondary {
    background-color: #f7f8fa;
    border: 1px solid #e3e5e8;
}

.card-tertiary {
    background-color: white;
    border: 1px solid #e3e5e8;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.info-card h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: inherit;
}

.info-card p, .info-card li {
    color: inherit;
    opacity: 0.9;
}

.card-primary h2 {
    color: white;
}

.info-card ol, .info-card ul {
    padding-left: 20px;
}

.info-card li {
    margin-bottom: 8px;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 40px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #5865F2;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 18px 25px;
    text-align: left;
    background-color: white;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: #f7f8fa;
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    background-color: #f7f8fa;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer.show {
    padding: 25px;
    max-height: 500px;
}

/* SEO Content */
.seo-content {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.seo-content h2 {
    color: #5865F2;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.seo-content h3 {
    color: #5865F2;
    margin: 25px 0 15px;
    font-size: 1.4rem;
}

.seo-content p {
    margin-bottom: 15px;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.usage-item {
    background-color: #f7f8fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.usage-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.usage-item h4 {
    margin-bottom: 8px;
    color: #5865F2;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .discord-hero h1 {
        font-size: 2.2rem;
    }
    
    .discord-hero .subtitle {
        font-size: 1.1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .style-grid {
        grid-template-columns: 1fr 1fr;
    }
}