
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #151923;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #16b12b 0%, #5ca24b 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(62, 143, 24, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-copy {
    padding: 6px 12px;
    background: #2cac1b;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    margin-left: 10px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #151820c7;
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.699);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #11131896;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.589);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-title {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #16b12b 0%, #5ca24b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #16b12b;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #16b12b 0%, #5ca24b 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-banner.jpg') center/cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.712) 0%, rgba(0, 0, 0, 0.63) 100%),
  url('/img/hero-banner.jpg');
background-size: cover;
background-position: center;

    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}
.hero-title {
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #16b12b 0%, #5ca24b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: perspective(150px) rotateX(10deg);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}


.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #16b12b;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Quick Actions */
.quick-actions {
    padding: 80px 0;
    background: #111216;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.action-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    color: white;
    text-decoration: none;
    display: block;
}

.action-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(99, 99, 99, 0.2);
}

.action-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16b12b 0%, #5ca24b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.action-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.action-card p {
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #111216;
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #16b12b 0%, #5ca24b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #16b12b;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #1a1b20;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(51, 51, 51, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #16b12b 0%, #5ca24b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #111318;
    color: white;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item i {
    font-size: 2rem;
    color: #16b12b;
    width: 50px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-item p {
    opacity: 0.8;
    font-family: monospace;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #101216;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-brand span {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #16b12b 0%, #5ca24b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #16b12b;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #16b12b;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 20px 0;
}

.modal-content {
    background: #1a1a1a;
    margin: 20px auto;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    color: white;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

/* Estilização personalizada do scroll para o modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 10px 0;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #16b12b 0%, #0d7a1a 100%);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1ac92f 0%, #0f8a1e 100%);
    box-shadow: 0 0 8px rgba(22, 177, 43, 0.4);
}

.modal-content::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #0d7a1a 0%, #16b12b 100%);
}

/* Scroll para o container principal do modal (fallback) */
.modal::-webkit-scrollbar {
    width: 10px;
}

.modal::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.modal::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #16b12b 0%, #0d7a1a 100%);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.3);
}

.modal::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1ac92f 0%, #0f8a1e 100%);
    box-shadow: 0 0 10px rgba(22, 177, 43, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #16b12b;
}

.modal h2 {
    margin-bottom: 20px;
    color: #16b12b;
    font-size: 2rem;
}

.modal p {
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.modal ul {
    margin: 20px 0;
    padding-left: 20px;
}

.modal li {
    margin-bottom: 8px;
    opacity: 0.9;
}

.join-info {
    margin-top: 30px;
}

.join-step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #16b12b 0%, #5ca24b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 5px;
    color: white;
}

.step-content p {
    margin: 0;
    opacity: 0.8;
}

.features-list {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.feature-item i {
    color: #16b12b;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.feature-item h4 {
    margin-bottom: 5px;
    color: white;
}

.feature-item p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Modal Styles */
.faq-modal-content {
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
}

.faq-container-modal {
    margin-top: 20px;
}

.faq-item-modal {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-modal:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question-modal {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.faq-question-modal:hover {
    background: rgba(22, 177, 43, 0.1);
}

.faq-question-modal::after {
    content: '+';
    font-size: 1.5rem;
    color: #16b12b;
    transition: transform 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-item-modal.open .faq-question-modal::after {
    transform: rotate(45deg);
}

.faq-answer-modal {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
}

.faq-item-modal.open .faq-answer-modal {
    max-height: 300px;
    padding: 20px;
}

.faq-answer-modal p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.faq-answer-modal ul {
    margin: 10px 0;
    padding-left: 20px;
}

.faq-answer-modal li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.faq-answer-modal code {
    background: rgba(22, 177, 43, 0.2);
    color: #16b12b;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.faq-answer-modal strong {
    color: #16b12b;
    font-weight: 600;
}

/* Responsividade para o modal FAQ */
@media (max-width: 768px) {
    .faq-modal-content {
        width: 95%;
        max-height: 85vh;
        padding: 20px 15px;
    }
    
    .faq-question-modal {
        font-size: 1rem;
        padding: 15px;
    }
    
    .faq-answer-modal {
        padding: 0 15px;
    }
    
    .faq-item-modal.open .faq-answer-modal {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .faq-question-modal {
        font-size: 0.95rem;
        padding: 12px;
    }
    
    .faq-answer-modal {
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal {
        padding: 10px 0;
    }
    
    .modal-content {
        margin: 10px auto;
        padding: 30px 20px;
        width: 95%;
        max-height: calc(100vh - 20px);
    }
    
    /* Scroll mais fino em mobile */
    .modal-content::-webkit-scrollbar {
        width: 6px;
    }
    
    .modal::-webkit-scrollbar {
        width: 8px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 1001;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    /* Corrigir sobreposição do navbar no hero */
    .hero {
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-top: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }
    
    .join-step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .modal {
        padding: 5px 0;
    }
    
    .modal-content {
        margin: 5px auto;
        padding: 15px 10px;
        width: 98%;
        max-height: calc(100vh - 10px);
    }
    
    /* Scroll ainda mais fino em telas muito pequenas */
    .modal-content::-webkit-scrollbar {
        width: 4px;
    }
    
    .modal::-webkit-scrollbar {
        width: 6px;
    }
    
    /* Ajuste adicional para telas muito pequenas */
    .hero {
        padding-top: 90px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-top: 10px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .action-card {
        padding: 30px 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .nav-actions .btn-primary {
        padding: 8px 16px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .nav-actions {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .server-ip-text,
    .version-text {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}

/* Discord Link Customization */
.discord-link {
    color: #5865F2 !important; /* Cor oficial do Discord */
    text-decoration: none;
    padding: 8px 16px;
    border: 2px solid #5865F2;
    border-radius: 8px;
    background: rgba(88, 101, 242, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    position: relative;
    overflow: hidden;
}

.discord-link:hover {
    color: white !important;
    background: #5865F2;
    border-color: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

.discord-link:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

/* Efeito de brilho no hover */
.discord-link::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: left 0.5s ease;
}

.discord-link:hover::before {
    left: 100%;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .discord-link {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

/* Estilos para textos com bordas */
.server-ip-text {
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid #58f260;
    border-radius: 8px;
    background: rgba(101, 242, 88, 0.1);
    color: #58f260;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.server-ip-text:hover {
    background: rgba(88, 242, 109, 0.2);
    border-color: #47c458;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 242, 109, 0.3);
}

.version-text {
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid #d4b400;
    border-radius: 8px;
    background: rgba(212, 127, 0, 0.1);
    color: #d4b400;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.version-text:hover {
    background: rgba(212, 173, 0, 0.2);
    border-color: #b88d00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 208, 0, 0.3);
}

/* Efeito de brilho para ambos os textos */
.server-ip-text::before,
.version-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.server-ip-text:hover::before,
.version-text:hover::before {
    left: 100%;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .server-ip-text,
    .version-text {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

/* Estilos para as opções de servidor no modal */
.server-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

.server-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.server-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.server-option h4 {
    color: #16b12b;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.server-option h4 i {
    font-size: 1.2rem;
}

.bedrock-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn-copy {
    padding: 8px 16px;
    background: #2cac1b;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-copy:hover {
    background: #238a15;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 172, 27, 0.3);
}

.btn-copy:active {
    transform: translateY(0);
}

.btn-copy:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

/* Responsividade específica para o modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        padding: 20px 15px;
        width: 95%;
        max-width: none;
    }
    
    .server-options {
        gap: 15px;
    }
    
    .server-option {
        padding: 15px;
    }
    
    .server-option h4 {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .bedrock-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-copy {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .join-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-content {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 2% auto;
        padding: 15px 10px;
        width: 98%;
    }
    
    .server-option {
        padding: 12px;
    }
    
    .server-option h4 {
        font-size: 0.95rem;
    }
    
    .server-option p {
        font-size: 0.9rem;
        margin: 8px 0;
    }
    
    .btn-copy {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .modal {
        padding: 5px 0;
    }
    
    .modal-content {
        margin: 5px auto;
        max-height: calc(100vh - 10px);
        overflow-y: auto;
    }
    
    .server-options {
        gap: 12px;
    }
    
    .server-option {
        padding: 12px;
    }
}