/* Footer */
footer {
    margin-top: auto;
    padding: 20px 0;
    border-top: 2px solid #16213e;
    background: transparent;
}

/* Sell to Us Section */
.sell-to-us-section {
    margin-bottom: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05), rgba(0, 200, 0, 0.03));
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    text-align: center;
}

.sell-to-us-title {
    font-size: 1.2rem;
    color: #00ff00;
    margin-bottom: 8px;
    font-weight: 600;
}

.sell-to-us-content {
    max-width: 500px;
    margin: 0 auto;
}

.sell-to-us-content p {
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 0.9rem;
}

.contact-info {
    background: rgba(0, 255, 0, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    margin-top: 8px;
}

.contact-info p {
    color: #cccccc;
    margin: 0;
    font-size: 0.85rem;
}

.contact-info strong {
    color: #00ff00;
    font-weight: 600;
}

/* Terms of Service */
.terms-section {
    margin-bottom: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-title {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.terms-content {
    max-width: 700px;
    margin: 0 auto;
}

.terms-content p {
    color: #cccccc;
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 0.85rem;
}

.terms-content strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-section h4 {
    display: none;
}

.contact-section p {
    display: none;
}

.username {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e5e5e5;
}

.contact-text {
    font-size: 0.9rem;
    color: #b3b3b3;
    opacity: 0.8;
}

.discord-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #e5e5e5;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 12px;
    background: rgba(88, 101, 242, 0.1);
    border: 2px solid #5865f2;
    box-shadow: 0 2px 6px rgba(88, 101, 242, 0.2);
}

.discord-link .discord-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    line-height: 1.2;
}

.discord-link:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: #5865f2;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
    color: #ffffff;
}

.discord-link:hover .contact-text {
    opacity: 1;
}

.discord-link i {
    color: #5865f2;
    font-size: 1.2rem;
    margin: 0;
    transition: color 0.3s ease;
}

.discord-link:hover i {
    color: #ffffff;
}

.discord-link .username {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.discord-link .contact-text {
    font-size: 0.85rem;
    opacity: 0.85;
    margin: 0;
    line-height: 1.2;
    transition: opacity 0.3s ease;
}

