@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto/Roboto-Regular.ttf");
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: "Orbitron";
    src: url("fonts/Orbitron/Orbitron-Bold.ttf") ;
    font-weight: 700;
    font-style: normal;
  }

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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #2e2e2e);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.5;
}
img{
    max-width: 100%;
    object-fit: cover;
    display: block;
}
a{
    color: inherit;
    text-decoration: none;
}
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
section{
    padding: 80px 0;
}
.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ff4d4d;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}
.logo .mobile{
    display: none;
}
@media (max-width: 768px){
.logo .mobile{
    display: block;
}
.logo .pk{
    display: none;
}
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff4d4d;
}

.burger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ff4d4d;
}

/* Hero Section (index.html) */
.hero {
    height: 100vh;
    max-height: 1200px;
    display: flex;
    align-items: center;
    background: url('image/banner.jpg') center/cover;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 20px auto;
}

.btn {
    margin-top: 10px;
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff4d4d, #ff8c1a);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.5);
}

/* Features Section (index.html) */
.features {
    padding: 80px 0;
    background: #2e2e2e;
}

h1, h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #ff4d4d;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin: 20px 0;
}


/* Gameplay Section (index.html) */
.gameplay {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
}

.gameplay-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 50px;
}

.gameplay-text {
    flex: 1;
}


.gameplay-text p {
    font-size: 1.2rem;
    max-width: 600px;
}

.gameplay-img {
    flex: 1;
    text-align: right;
}

.gameplay-img img {
    max-width: 100%;
    border-radius: 10px;
}

/* Slider Section (index.html) */
.slider {
    padding: 80px 0;
    background: #2e2e2e;
}

.slider-container {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-item {
    min-width: 100%;
    padding: 0 15px;
}

.slider-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.slider-item h3 {
    font-size: 1.5rem;
    margin: 15px 0;
    text-align: center;
}

.slider-item p {
    text-align: center;
}

/* Accordion Section (index.html) */
.accordion {
    padding: 80px 0;
}

.accordion-item {
    margin-bottom: 20px;
    background: #1a1a1a;
    border-radius: 10px;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h3 {
    font-size: 1.5rem;
}

.accordion-content {
    display: none;
    padding: 20px;
}

.accordion-content.active {
    display: block;
}

/* Tips Section (index.html) */
.tips {
    padding: 80px 0;
    background: #2e2e2e;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.tip-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.tip-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.tip-card h3 {
    font-size: 1.8rem;
    margin: 20px 0;
}
/* Story Section (index.html) */
.story {
     background: rgba(0, 0, 0, 0.7);
}

.story-content {
    position: relative;
    text-align: center;
}

.story-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section (index.html) */
.contact {
    padding: 80px 0;
    background: #2e2e2e;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.red{color: #ff4d4d;}

.contact-form button {
    background: linear-gradient(45deg, #ff4d4d, #ff8c1a);
    border: none;
    padding: 15px 30px;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}

.contact-form button:hover {
    transform: scale(1.05);
}
.checkbox input{
    width: auto;
    margin: 0;
}

/* World Section (about.html) */
.world {
    padding: 150px 0;
    background: url('image/roosters-chicks.jpg') center/cover;
    position: relative;
}

.world::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.world-content {
    position: relative;
    text-align: center;
}

.world-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Characters Section (about.html) */
.characters {
    padding: 80px 0;
    background: #2e2e2e;
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.character-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.character-card:hover {
    transform: scale(1.05);
}

.character-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.character-card h3 {
    font-size: 1.8rem;
    margin: 20px 0;
}

.character-card p {
    font-size: 1rem;
}

/* Mechanics Section (about.html) */
.mechanics {
    display: flex;
    align-items: center;
  
}

.mechanics-content {
    position: relative;
    display: flex;
    gap: 50px;
    align-items: center;
}

.mechanics-text {
    flex: 1;
}

.mechanics-text ul {
    list-style: none;
    font-size: 1.2rem;
}

.mechanics-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.mechanics-text ul li::before {
    content: '\f1b0';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 0;
    color: #ff4d4d;
}

.mechanics-img {
    flex: 1;
    text-align: right;
}

.mechanics-img img {
    max-width: 100%;
    border-radius: 10px;
}

/* Challenges Section (about.html, strategy.html, community.html) */
.challenges, .community-challenges {
    padding: 80px 0;
    background: #2e2e2e;
}
.challenge-slider {
    overflow: hidden;
    position: relative;
}

.challenge-track {
    display: flex;
    transition: transform 0.5s ease;
}

.challenge-item {
    min-width: 100%;
    padding: 0 15px;
}

.challenge-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.challenge-item h3 {
    font-size: 1.5rem;
    margin: 15px 0;
    text-align: center;
}

.challenge-item p {
    font-size: 1rem;
    text-align: center;
}

.strategy-content {
    position: relative;
    text-align: center;
}
.strategy-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.lore-content {
    position: relative;
    display: flex;
    gap: 50px;
    align-items: center;
}

.lore-text {
    flex: 1;
}

.lore-text p {
    font-size: 1.2rem;
}

.lore-img {
height: 350px;
    flex: 1;
    text-align: right;
}

.lore-img img {
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    border-radius: 10px;
}

/* Future Section (about.html) */
.future {
    padding: 80px 0;
    background: #2e2e2e;
}
.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.future-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.future-card:hover {
    transform: scale(1.05);
}

.future-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.future-card h3 {
    font-size: 1.8rem;
    margin: 20px 0;
}

.future-card p {
    font-size: 1rem;
}

/* Unit Guide Section (strategy.html) */
.unit-guide {
    padding: 100px 0;
    background: #2e2e2e;
}

.unit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.unit-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.unit-card:hover {
    transform: translateY(-10px);
}

.unit-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.unit-card h3 {
    font-size: 1.8rem;
    margin: 20px 0;
}

.unit-card p {
    font-size: 1rem;
}

.unit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 77, 77, 0.2), transparent);
    transition: 0.5s;
}

.unit-card:hover::before {
    left: 100%;
}

.tactics-content {
    position: relative;
    display: flex;
    gap: 40px;
    align-items: center;
}

.tactics-text {
    flex: 1;
}

.tactics-text p {
    font-size: 1.2rem;
    max-width: 600px;
}

.tactics-img {
    flex: 1;
    text-align: right;
}

.tactics-img img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.3);
}

/* Difficulty Breakdown Section (strategy.html) */
.difficulty {
    padding: 80px 0;
    background: #2e2e2e;
}

.difficulty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.difficulty-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.difficulty-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.difficulty-card h3 {
    font-size: 1.8rem;
    margin: 20px 0;
}

.difficulty-card p {
    font-size: 1rem;
}

.combo-content {
    position: relative;
    text-align: center;
}

.combo-content ul {
    list-style: none;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.combo-content ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.combo-content ul li::before {
    content: '\f005';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 0;
    color: #ff4d4d;
}

/* Enemy Analysis Section (strategy.html) */
.enemy-analysis {
    padding: 80px 0;
    background: #2e2e2e;
}

.enemy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.enemy-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.enemy-card:hover {
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.5);
}

.enemy-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.enemy-card h3 {
    font-size: 1.8rem;
    margin: 20px 0;
}

.enemy-card p {
    font-size: 1rem;
}

.upgrade-content {
    position: relative;
    display: flex;
    gap: 40px;
    align-items: center;
}

.upgrade-text {
    flex: 1;
}

.upgrade-text p {
    font-size: 1.2rem;
    max-width: 600px;
}

.upgrade-img {
    flex: 1;
    text-align: right;
}

.upgrade-img img {
    max-width: 100%;
    border-radius: 10px;
}

.endgame-content {
    position: relative;
    text-align: center;
}

.endgame-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}
.download-content{
    text-align: center;
}
.download-btn {
    margin-top: 20px;
            display: inline-flex;
            align-items: center;
            padding: 15px 30px;
            background: linear-gradient(45deg, #ff4d4d, #ff8c1a);
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.2rem;
            font-family: 'Orbitron', sans-serif;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .download-btn i {
            margin-right: 10px;
        }

        .download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(255, 77, 77, 0.5);
        }
/* Leaderboard Section (community.html) */
.leaderboard {
    padding: 80px 0;
    background: url('image/company.jpeg') center/cover;
    position: relative;
}

.leaderboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.leaderboard-content {
    position: relative;
    text-align: center;
}

.leaderboard-table {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
}

.leaderboard-table table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table th, .leaderboard-table td {
    padding: 15px;
    text-align: left;
    font-size: 1.1rem;
}

.leaderboard-table th {
    color: #ff4d4d;
    font-family: 'Orbitron', sans-serif;
}

.leaderboard-table td {
    border-bottom: 1px solid #333;
}

/* Events Section (community.html) */
.events {
    padding: 120px 0 80px 0;
    background: #2e2e2e;
}
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.event-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.event-card:hover {
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.5);
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.event-card h3 {
    font-size: 1.8rem;
    margin: 20px 0;
}

.event-card p {
    font-size: 1rem;
}

.stories-content {
    position: relative;
    display: flex;
    gap: 40px;
    align-items: center;
}

.stories-text {
    flex: 1;
}

.stories-text p {
    font-size: 1.2rem;
    max-width: 600px;
}

.stories-img {
    flex: 1;
    text-align: right;
}

.stories-img img {
    max-width: 100%;
    border-radius: 10px;
}

/* Policy/Terms Sections (privacy-policy.html, terms-of-service.html) */
.policy, .terms {
    padding: 120px 0 80px;
}

.policy-section, .terms-section {
    margin-bottom: 40px;
}

.policy-section p, .terms-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.policy-section ul, .terms-section ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.policy-section ul li, .terms-section ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Thanks Section (thanks.html) */
.thanks {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
}

.thanks h1 {
    font-size: 3rem;
    color: #ff4d4d;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
}

.thanks p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.thanks .btn {
    font-family: 'Orbitron', sans-serif;
}

/* Footer */
footer {
    background: #1a1a1a;
    padding: 50px 0;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
}

.footer-column p,
.footer-column a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    font-size: 1rem;
}

.footer-column a:hover {
    color: #ff4d4d;
}
.reviews {
            padding: 120px 0 80px;
            background: #2e2e2e;
        }

        .reviews h1 {
            font-size: 3rem;
            color: #ff4d4d;
            font-family: 'Orbitron', sans-serif;
            text-align: center;
            margin-bottom: 50px;
        }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 30px;
        }

        .review-card {
            background: #1a1a1a;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s;
        }

        .review-card:hover {
            transform: translateY(-10px);
        }

        .review-card img{
            margin-bottom: 10px;
        }

        .review-card .stars {
            color: #ff4d4d;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .review-card p {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .review-card .author {
            font-size: 1rem;
            color: #ccc;
            font-style: italic;
        }
        .app-download-content .download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(255, 77, 77, 0.5);
        }
         .app-download {
            height: 100vh;
            display: none;
            align-items: center;
            text-align: center;
        }
        .header-row{
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 20px;
        }
        .header-row p, .header-row a{
            margin: 0;
            font-size: 14px;
        }
        .download-btn-header{
            padding: 5px 10px;
        }
/* Responsive */
@media (max-width: 768px) {
    .header-row{
        display: none;
    }
    .app-download{
        display: flex;
    }
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #1a1a1a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .burger {
        display: block;
        position: relative;
        z-index: 999;
    }
    .logo {font-size: 1.5em;}
  
    body.no-scroll {
        overflow: hidden;
    }

    .gameplay-content,
    .mechanics-content,
    .lore-content,
    .tactics-content,
    .upgrade-content,
    .stories-content,
    .spotlight-content {
        flex-direction: column;
        text-align: center;
    }

    .gameplay-img,
    .mechanics-img,
    .lore-img,
    .tactics-img,
    .upgrade-img,
    .stories-img,
    .spotlight-img {
        text-align: center;
    }

    .slider-item,
    .challenge-item,
    .tip-item {
        min-width: 100%;
    }
    .container{
        padding: 0 10px;
    }

    .thanks p {
        font-size: 1rem;
    }
     .hero h1 {
        font-size: 3rem;
    }

     h2,h1 {
        font-size: 2.5rem;
    }
    .leaderboard-table tr, .leaderboard-table td, .leaderboard-table th {
        font-size: 12px ;
        padding: 10px 5px;
    }
     .leaderboard-table table{
        padding: 10px;
     }
    .challenge-item img, .slider-item img {
        height: 350px;
    }
}