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

body {
    font-family: 'Courier New', monospace;
    background-color: black;
    background-size: cover;
    background-attachment: fixed;
    color: #2c2c2c;
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
}



.brand-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Courier New', monospace;
}

.beta-tag {
    background: #ffd700;
    color: #2c2c2c;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
}




.main-content {
    margin-top: 80px;
    padding: 2rem;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.container {
    max-width: 900px;
    width: 100%;
}

.content-card {
    background: rgba(60, 60, 60, 0.95);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    color: #ffd700;
    text-align: center;
}

.subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    font-style: italic;
}

.content-section h2 {
    color: #ffd700;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    font-family: 'Courier New', monospace;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
}

.action-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.social-link:hover {
    background: #ffd700;
    color: #2c2c2c;
    transform: translateY(-2px);
}

.cta-button {
    background: #ffd700;
    color: #2c2c2c;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.cta-button:hover {
    background: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
   
    .content-card {
        padding: 2rem;
        margin: 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .action-section {
        flex-direction: column;
        gap: 1.5rem;
    }

    .main-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
   
    .content-card {
        padding: 1.5rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
}
