.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.logo {
    color: #DC0000;
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 20px;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar {
    background-color: #333;
    width: 100%;
    padding: 15px 0;
    position: absolute;
    top: 100px;
    left: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    margin-bottom: 20px;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    padding-right: 50px;
    padding-left: 200px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    padding: 6px 10px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #DC0000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

.navbar a:hover,
.navbar a.active {
    color: #DC0000;
    text-shadow: 0 0 10px rgba(220, 0, 0, 0.3);
    padding-left: 30px;
}

.puan-tablosu {
    max-width: 800px;
    margin: 200px auto;
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    color: white;
}

.corner-logo {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100px;
    z-index: 1000;
    object-fit: contain;
}

.slider-container {
    width: calc(100% - 60px);
    height: 400px;
    margin: 140px auto 0 auto;
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 1;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: #DC0000;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.slider-button:hover {
    background: rgba(220, 0, 0, 0.9);
}

.prev-button {
    left: 20px;
}

.next-button {
    right: 20px;
}

.section-title {
    margin-top: 20px;
    font-family: 'Orbitron', sans-serif;
    color: #DC0000;
    text-align: left;
    font-size: 2.5rem;
    position: relative;
    padding-left: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 550px;
    right: 35px;
    top: 50%;
    height: 2px;
    background-color: #DC0000;
    z-index: -1;
}

.motorsport-container {
    width: calc(100% - 60px);
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.motorsport-box {
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: white;
    position: relative;
    padding-bottom: 80px;
    text-align: center;
}

.motorsport-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(220, 0, 0, 0.3);
}

.motorsport-box img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 15px;
}

.motorsport-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: #FF6347;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.motorsport-box p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.motorsport-button {
    background: #FF6347;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.motorsport-button:hover {
    background: #FF4500;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 3px 10px rgba(220, 0, 0, 0.3);
}

.team-container {
    width: calc(100% - 60px);
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.team-box {
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: white;
    position: relative;
    padding-bottom: 80px;
    text-align: center;
}

.team-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(220, 0, 0, 0.3);
}

.team-box img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 15px;
}

.team-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: #FF6347;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.team-box p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0px;
}

.team-button {
    background: #FF6347;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.team-button:hover {
    background: #FF4500;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 3px 10px rgba(220, 0, 0, 0.3);
}

.news-container {
    width: calc(100% - 60px);
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.news-box {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: white;
    position: relative;
    padding-bottom: 80px;
}

.news-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(220, 0, 0, 0.3);
}

.news-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.news-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: #FF6347;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.news-box p {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.news-box .date {
    color: #888;
    font-size: 0.8rem;
    text-align: right;
}

.news-box .button-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    width: 100%;
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.news-box .news-button {
    background: #FF6347;
    color: white;
    border: none;
    padding: 10px 0;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.news-box .news-button:hover {
    background: #FF4500;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(220, 0, 0, 0.3);
}

.pilot-container {
    width: calc(100% - 60px);
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.pilot-box {
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pilot-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(220, 0, 0, 0.3);
}

.pilot-image {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

.pilot-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.pilot-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FF6347;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
}

.pilot-info {
    width: 100%;
}

.pilot-info h3 {
    font-family: 'Orbitron', sans-serif;
    color: #FF6347;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.pilot-info p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.pilot-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.pilot-stats span {
    background: rgba(255, 99, 71, 0.2);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #ffffff;
}

.pilot-button {
    background: #FF6347;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.pilot-button:hover {
    background: #FF4500;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(220, 0, 0, 0.3);
}

.race-container {
    width: calc(100% - 60px);
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.race-box {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    padding-bottom: 25px;
}

.race-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(220, 0, 0, 0.3);
}

.race-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.race-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.race-info h3 {
    font-family: 'Orbitron', sans-serif;
    color: #FF6347;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.race-info p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.race-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.race-details span {
    background: rgba(220, 0, 0, 0.2);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.race-details i {
    color: #DC0000;
}

.race-button {
    background: #FF6347;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.race-button:hover {
    background: #FF4500;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 3px 10px rgba(220, 0, 0, 0.3);
}

.maps-container {
    width: calc(100% - 60px);
    margin: 20px auto 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.map-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: white;
    position: relative;
    padding-bottom: 80px;
    text-align: center;
}

.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(220, 0, 0, 0.3);
}

.map-card img {
    width: 90%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.map-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #FF6347;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.map-card p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.detail-btn {
    background: #FF6347;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.detail-btn:hover {
    background: #FF4500;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 3px 10px rgba(220, 0, 0, 0.3);
}

.map-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
    text-align: left;
}

.map-details span {
    background: rgba(220, 0, 0, 0.2);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-details i {
    color: #DC0000;
    width: 20px;
}

.about-content {
    width: calc(100% - 60px);
    margin: 120px auto 30px auto;
    padding: 0 20px;
}

.about-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: calc(100% - 60px);
    margin: 30px auto;
    padding: 0 20px;
}

.about-box {
    background-color: #333;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
    padding-bottom: 80px;
}

.about-box:hover {
    transform: translateY(-5px);
}

.about-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.about-box h3 {
    color: #FF6347;
    font-family: 'Orbitron', sans-serif;
    margin: 15px 0;
}

.about-box p {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.about-button {
    background: #FF6347;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.about-button:hover {
    background: #FF4500;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 3px 10px rgba(220, 0, 0, 0.3);
}

@media (max-width: 1200px) {
    .about-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section {
        grid-template-columns: 1fr;
    }
}

.creator-info {
    text-align: left;
    padding: 20px 30px;
    margin-top: 30px;
    color: #888;
    font-size: 0.9rem;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-left: 20px;
}

.social-icons a {
    color: #888;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #DC0000;
    transform: translateY(-3px);
}

.motorsport-box h3,
.team-box h3,
.news-box h3,
.pilot-info h3,
.race-info h3,
.map-card h3,
.about-box h3 {
    color: #FF6347;
}

.pilot-number {
    background: #FF6347;
}

.pilot-stats span {
    background: rgba(255, 99, 71, 0.2);
}

.view-all-pilots {
    text-align: center;
    margin: 20px 0;
}

.view-all-button {
    display: block;
    background: #DC0000;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
}

.view-all-button:hover {
    background: #a00000;
    box-shadow: 0 3px 10px rgba(220, 0, 0, 0.3);
}