/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #004E92, #000428);
    color: white;
    padding: 30px 0;
    text-align: center;
}
.header .large-logo {
    width: 250px; /* Increased the size for more prominence */
    margin-bottom: 20px;
}

/* Title */
.title {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Language Selector */
.language-selector {
    display: flex; /* Arrange links horizontally */
    justify-content: center; /* Center align the links */
    gap: 15px; /* Add spacing between the language options */
    margin-top: 20px; /* Add space below the header */
}

/* Individual Language Links */
.language-selector a {
    font-size: 1.1em; /* Slightly larger font size */
    color: #f7f2f2; /* Very dark black color */
    text-decoration: none; /* Remove underline */
    font-weight: 600; /* Bold font weight */
    transition: color 0.3s ease; /* Smooth hover effect */
    padding: 5px 10px; /* Add padding for better clickability */
    border-radius: 5px; /* Rounded corners */
}

/* Hover Effect for Language Links */
.language-selector a:hover {
    color: #333; /* Slightly lighter black on hover */
    text-decoration: underline; /* Add underline on hover */
    background-color: #f0f0f0; /* Light background on hover */
}

/* Referral Section */
.referral-section {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-top: 30px;
}
.referral-section p {
    font-size: 1.2em;
    margin-bottom: 15px;
}
.link {
    color: #007bff;
    text-decoration: none;
}
.link:hover {
    text-decoration: underline;
}
.referral-code-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e6f7ff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    font-size: 1.2em;
}
.copy-container {
    text-align: center;
}
.copy-container p {
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 10px;
}
.copy-icon {
    font-size: 2em;
    cursor: pointer;
    color: #007bff;
    transition: color 0.3s;
}
.copy-icon:hover {
    color: #0056b3;
}
.copy-message {
    margin-top: 10px;
    font-size: 1.1em;
    color: #4CAF50;
    display: none;
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}
.cta-button:hover {
    background-color: #0056b3;
}

/* Info Section */
.info-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.info-section h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}
.info-section p {
    font-size: 1.2em;
    line-height: 1.6;
}
.logo-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: contain; /* Ensures the logos don't distort */
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}
.footer p {
    font-size: 1em;
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
.main {
    animation: fadeIn 1s ease-in-out;
}
