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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
    
    /* Imagem de fundo com overlay escuro para melhor contraste */
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('/assets/img/CyberSyn-WEB.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container {
    max-width: 800px;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(253, 187, 45, 0.3);
}

header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(253, 187, 45, 0.5);
}

h1 {
    font-size: 2.8rem;
    color: #fdbb2d;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.phrases {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin: 40px 0;
}

.phrase {
    font-size: 3.2rem;
    text-align: center;
    padding: 15px 30px;
    width: 100%;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.plan {
    color: #fdbb2d;
    border: 2px solid rgba(253, 187, 45, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.4);
}

.build {
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(178, 31, 31, 0.3);
}

.divider {
    height: 2px;
    width: 80%;
    background: linear-gradient(90deg, transparent, rgba(253, 187, 45, 0.8), transparent);
    margin: 10px 0;
}

.content {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #fdbb2d;
    margin-top: 30px;
}

.content h2 {
    color: #fdbb2d;
    margin-bottom: 15px;
    font-size: 1.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

a {
        color: #fdbb2d; /* Amarelo dourado para combinar com o tema */
        text-decoration: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(253, 187, 45, 0.3);
        padding-bottom: 2px;
        font-weight: 500;
    }
    
    a:hover {
        color: #ffd166; /* Amarelo mais claro no hover */
        border-bottom: 2px solid #fdbb2d;
        text-shadow: 0 0 8px rgba(253, 187, 45, 0.5);
    }
    
    a:active {
        color: #fefee3; /* Amarelo quase branco quando clicado */
        transform: translateY(1px);
    }
    
    a:focus {
        outline: 2px solid #fdbb2d;
        outline-offset: 2px;
        border-radius: 2px;
    }
    
    /* Estilo especial para links em fundos escuros */
    .content a, .tribute a {
        color: #ffd166; /* Amarelo mais claro para melhor contraste */
        border-bottom: 1px solid rgba(255, 209, 102, 0.4);
    }
    
    .content a:hover, .tribute a:hover {
        color: #fefee3; /* Quase branco no hover */
        border-bottom: 2px solid #ffd166;
    }
    
    .tribute {
        background: rgba(178, 31, 31, 0.2);
        padding: 20px;
        border-radius: 10px;
        margin-top: 30px;
        text-align: center;
        border: 1px solid rgba(178, 31, 31, 0.4);
    }
    
    .tribute p {
        font-style: italic;
        margin-bottom: 0;
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .footer {
        margin-top: 30px;
        text-align: center;
        font-size: 0.9rem;
        opacity: 0.8;
    }
    
    @media (max-width: 600px) {
        h1 {
            font-size: 2.2rem;
        }
        
        .phrase {
            font-size: 2.5rem;
            padding: 10px 20px;
        }
        
        .container {
            padding: 20px;
        }
    }
