/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Rajdhani:wght@500;700&display=swap');

:root {
    --bg-color: #0d041a;
    --primary-color: #9f55ff;
    --secondary-color: #00f2ea;
    --text-color: #f0f0f0;
    --card-bg: #1a0e2e;
    --border-color: rgba(159, 85, 255, 0.5);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Rajdhani', sans-serif;
    display: flex;
    justify-content: center;
    padding: 25px 15px;
}

.container {
    max-width: 700px;
    width: 100%;
    background-color: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(159, 85, 255, 0.5);
    padding: 20px;
}

/* Header */
.header {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.header h1 {
    font-family: 'Orbitron', sans-serif;
    color: var(--secondary-color);
    font-size: 1.8em;
    margin: 5px 0 0;
    text-shadow: 0 0 10px var(--secondary-color);
}

/* Logo */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}
.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
}

/* General Section Styling */
.section {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 3px solid var(--secondary-color);
}

/* Info Section */
.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1em;
    padding: 5px 0;
}
.info-item span {
    color: #b0b0b0;
}
.info-item p {
    margin: 0;
    font-weight: 700;
}
.info-item.goal p {
    color: #ff5555;
}

/* Contact & Links */
.contact-section h2, .links-section h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}
.email-info {
    text-align: center;
    margin-top: 15px;
    font-size: 1.1em;
    font-weight: 500;
}
.btn {
    display: block;
    padding: 12px;
    margin-bottom: 10px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.1em;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px var(--color);
}
.messenger { --color: #00b2ff; background: var(--color); }
.telegram { --color: #2aabee; background: var(--color); }
.whatsapp { --color: #25d366; background: var(--color); }

.link-btn {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.link-btn:hover {
    box-shadow: 0 0 20px var(--primary-color);
}

/* Team Section */
.team-section {
    text-align: center;
    border: 1px solid var(--secondary-color);
    background: none;
}
.team-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    color: var(--secondary-color);
    text-shadow: 0 0 8px var(--secondary-color);
}
.team-subtitle {
    font-size: 1em;
    color: #ccc;
    margin-bottom: 10px;
}
.team-details p {
    margin: 5px 0;
    font-size: 1.1em;
    font-weight: 700;
}

/* Services Section */
.services-section h2 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.3em;
    margin-bottom: 15px;
}
.services-section ul {
    list-style: none;
    padding: 0;
}
.services-section ul li {
    background: rgba(0,0,0,0.3);
    margin-bottom: 8px;
    padding: 10px;
    border-radius: 5px;
    font-weight: 500;
}

/* Tagline, Disclaimer & Footer */
.tagline, .disclaimer, .footer {
    text-align: center;
}
.disclaimer h3 {
    color: #ffcc00;
}
.disclaimer p {
    color: #ff5555;
    font-weight: bold;
}
.footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    color: var(--secondary-color);
    font-weight: 700;
}
