/* Home Page */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: beige;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    font-family: monospace;
}
h1 {
    font-size: 45px;
    text-align: center;
}
nav {
    text-align: center;
    
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    width: 200px;
    margin-right: 25px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 50px;
    font-size: 26px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}
a:hover{
    color: red;
}

main {
    padding: 20px;
}
.content-section {
    margin-bottom: 40px;
}

.features {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.feature {
    flex: 0 1 30%;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

section {
    margin-bottom: 20px;
}

.featured-video,
.cta-buttons {
    margin-bottom: 30px;
}
#game-video{
    width: 100%;
    height: 100%;
}

.cta-buttons {
    text-align: center;
}

.cta-buttons .buttons {
    display: flex;
    justify-content: center;
}

.cta-buttons .cta-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 10px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-family: monospace;
    font-size: 16px;
}
.social-media img {
    width: 40px;
    height: auto;
}

.social-media a {
    margin-right: 10px;
}
.contact-info,
.disclaimer {
    margin-top: 10px;
}

/* Skills Page */

h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.content {
    display: flex;
    flex-wrap: wrap;
}

.video {
    flex: 1;
    margin-right: 20px;
}

.text {
    flex: 2;
    margin-left: 30px;
}

.text h3 {
    color: #333;
    font-size: 20px;
    margin-top: 20px;
    
}

.text p {
    color: #666;
}

.text img {
    display: block;
    width: 80%;
    height: 450px;
    margin-top: 10px;
    margin-left: 100px;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 30px;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image {
    flex: 1;
    margin-right: 20px;
}

.image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.text {
    flex: 2;
}

.text h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.text p {
    color: #666;
    font-size: 18px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

/* Training Page */

.module {
    display: flex;
    margin-bottom: 40px;
}

.module-content {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.module-content h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.module-content p {
    color: #666;
}

.module-image {
    flex: 1;
    background-color: #fff;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
}

.module-image img {
    width: 100%;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

thead th {
    background-color: #333;
    color: #fff;
    text-align: left;
    padding: 10px;
}

tbody td {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

tbody td:first-child {
    font-weight: bold;
}

tbody td:nth-child(2),
tbody td:nth-child(3) {
    width: 50%;
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Contact Us Page */

#contact {
    padding: 20px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #FFD700;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: monospace;
}

input[type="file"] {
    margin-top: 5px;
}

button[type="submit"] {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.confirmation-message {
    margin-top: 20px;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

textarea {
    width: 100%;
    height: 100px;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

#feedback-message {
    margin-top: 10px;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

#faq {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 10px;
}
#h2 {
    color: #FFD700;
}

.faq-item p {
    color: white;
    font-size: 16px;
    line-height: 1.5;
}

.container {
    display: flex;
}

#contact,
#faq {
    flex: 1;
    margin: 0 10px;
}
.half-width {
    flex: 1;
    margin-right: 10px;
}

#feedback,
#contact-info {
    width: 80%;
}

#feedback {
    padding: 20px;
    margin-left: 60px;
}
.contact-info {
    margin-left: 30px;
    padding: 30px;
    color: white;
}
.h2 {
    color: #FFD700;
}
.background-image {
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.1)),url(/Pics/images26.avif);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Player Page */

#players-corner {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    border: 2px solid #ccc;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}

.section {
    width: 45%;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.interview img {
    border-radius: 50%;
    width: 350px;
    height: 350px;
    object-fit: cover;
}






