body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
    color: #333;
    overflow-x: hidden;
}

h1, h2 {
    color: #ffffff;
    text-align: center;
}

.dark-mode h1 {
    color: white;
}

.dark-mode h2 {
    color: white;
}

.hero {
    position: relative;
    color: white;
    padding: 120px 20px;
    text-align: center;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    z-index: 2;
    animation: fadeInUp 1.5s ease-out;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    animation: fadeIn 1.2s ease-out;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeIn 1.4s ease-out;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

.hashtags {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
    color: white;
    animation: glow 1.5s infinite alternate;
}

.hashtags a {
    text-decoration: none;
    background: linear-gradient(45deg, #00eaff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    animation: glow 1.5s infinite alternate;
}

.hashtags a:hover {
    opacity: 0.8;
}


@keyframes glow {
    0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
    100% { text-shadow: 0 0 20px rgba(255, 255, 255, 1); }
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 10px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
}


.social-links {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.social-links h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #000000;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.dark-mode .social-button {
    background-color: #181818;
    color: white;
}

.social-button:hover {
    background-color: #007bff;
    transform: scale(1.1);
}

.social-button.instagram:hover {
    background-color: #e4405f;
}

.social-button.twitter:hover {
    background-color: #1da1f2;
}

.social-button.discord:hover {
    background-color: #7289da;
}

.social-button .social-icon {
    margin-right: 10px;
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

.social-button:hover .social-icon {
    transform: rotate(360deg);
}

.social-button span {
    display: inline-block;
}

@media (max-width: 768px) {
    .social-buttons {
        flex-direction: column;
    }
}

#why-choose {
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
    color: #000;
    overflow: hidden;
}

.text-content:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 8px #000;
}

.why-choose-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}

.text-content {
    max-width: 500px;
    margin: 0 20px;
    padding: 20px;
    background-color: black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.text-content p {
    color: white;
}

.image-placeholder {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: #ccc;
}

.top-left {
    top: -40px;
    left: -40px;
}

.bottom-right {
    bottom: -40px;
    right: -40px;
}

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

@media (max-width: 768px) {
    .why-choose-section h2 {
        font-size: 2rem;
    }

    .content {
        flex-direction: column;
        align-items: center;
    }

    .text-content {
        max-width: 100%;
        margin: 20px 0;
        padding: 15px;
    }

    .image-placeholder {
        width: 250px;
        height: 250px;
        top: 0;
        left: 0;
    }
}

@media (max-width: 480px) {
    .why-choose-section h2 {
        font-size: 1.75rem;
    }

    .content {
        padding: 10px;
    }

    .text-content {
        padding: 10px;
    }

    .image-placeholder {
        width: 200px;
        height: 200px;
        top: 0;
        left: 0;
    }
}

.scripts-section {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.scripts-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.product-card {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    overflow: hidden;
    position: relative;
    max-width: 100%;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-card .product-header {
    position: relative;
}

.product-card .badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background-color: #ff5722;
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.product-card .modified {
    background-color: #ff9800;
}

.product-card .in-progress {
    background-color: #607d8b;
}

.product-title {
    font-size: 1.6rem;
    color: #333;
    margin: 20px 0 10px;
    text-transform: capitalize;
    font-weight: 600;
}

.product-description {
    flex-grow: 1;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-card .download-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    margin-top: auto;
    min-height: 50px;
}

.product-card .btn {
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.product-card .btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.product-card .btn-disabled, 
.product-card .btn-coming-soon {
    background-color: #b0bec5;
    color: #fff;
    cursor: not-allowed;
}

.product-card .os-type {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    gap: 5px;
}

.product-card .os-icon {
    font-size: 24px;
    color: #333;
}

.faq-section {
    padding: 60px 20px;
    background: #fafafa;
    text-align: center;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

.faq-question h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.faq-question .toggle-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #007bff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.faq-question .toggle-btn:hover {
    color: #0056b3;
}

.faq-question .toggle-btn.active {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    margin-top: 15px;
    padding-left: 20px;
    font-size: 1.1rem;
    color: #555;
}

.faq-item.active .faq-answer {
    display: block;
}

button.mode-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: black;
    border: 2px solid #333;
    color: #333;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

button.mode-toggle i {
    font-size: 24px;
}

body.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}

.dark-mode h1, .dark-mode h2, .dark-mode h3 {
    color: #dddddd;
}

.dark-mode .product-card {
    background-color: #282828;
    color: #e0e0e0;
}

.dark-mode .product-title {
    color: #fff;
}

.dark-mode .product-description {
    color: #c0c0c0;
}

.dark-mode .product-card .btn,
.dark-mode .product-card .btn:hover {
    background-color: #007bff;
    color: white;
}

.dark-mode .scripts-section,
.dark-mode .faq-section {
    background-color: #121212;
}

.dark-mode .faq-item {
    background-color: #282828;
}

.dark-mode .faq-question h3 {
    color: #fff;
}

.dark-mode .faq-answer {
    color: #a0a0a0;
}

.dark-mode .social-links {
    background-color: #121212;
    border-color: #666;
    color: #fff;
}

button.mode-toggle {
    background-color: #333;
    border-color: #666;
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

body.dark-mode button.mode-toggle {
    background-color: #e0e0e0;
    border-color: #333;
    color: #333;
}

button.mode-toggle:hover {
    background-color: #666;
    color: #fff;
}

header, footer, section {
    transition: all 0.3s ease;
}

button.mode-toggle:hover {
    background-color: #333;
    color: #f4f4f4;
}

@media (max-width: 600px) {
    button.mode-toggle {
        font-size: 20px;
        padding: 12px;
    }
}

.why-choose-section {
    padding: 60px 0;
    background:#f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-size: 2.5rem;
    font-weight: 600;
}

.content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.feature {
    text-align: center;
}

.feature-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.25);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.feature-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

.feature-description {
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.dark-mode #why-choose {
    background-color: #000000;
}

.dark-mode .testimonials-section {
    background: #121212;
}

.dark-mode .section-title {
    color: #ffffff;
}

.dark-mode .testimonial-card {
    background: #121212;
}

.dark-mode .testimonial-comment {
    color: #7c9da0;
}

.dark-mode .testimonial-header h3 {
    color: white;
}

.testimonials-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.testimonial-carousel {
    position: relative;
    padding-bottom: 50px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    max-width: 350px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-header h3 {
    font-size: 1.1rem;
    color: #222;
    margin: 0;
}

.testimonial-header .stars i {
    color: #ffc107;
    margin-left: 2px;
}

.testimonial-comment {
    font-style: italic;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #333;
}

.swiper-pagination-bullet-active {
    background-color: #333;
}

.dark-mode .page-title {
    color: white;
}

.page-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: black;
}

.dark-mode .script-card {
    background-color: rgb(0, 0, 0);
}

.script-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.script-card {
    background-color: white;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease-in-out;
}

.script-card:hover {
    transform: scale(1.03);
}

.script-card h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.script-card p {
    margin: 5px 0;
    color: #ccc;
}

.download-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.2s ease-in-out;
}

.download-button:hover {
    background-color: #2980b9;
}

.in-progress {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #555;
    color: #eee;
    border-radius: 8px;
    font-style: italic;
}
