html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    margin-top: 20px;
    border: 2px solid #4a4a4a;
    border-radius: 5px;
    background-color: rgba(15, 15, 15, 0.8);
    backdrop-filter: none;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
}

/* Hamburger Menu - FIXED */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    margin-top: 2.5px;
    width: 60px;
    height: 50px;
}

.brand-name {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(224, 216, 216, 0.7);
    letter-spacing: 1px;
}

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

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff3333;
    transition: width 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 14px;
}

.support-btn {
    background-color: #36393f;
    color: #fff;
    border: 1px solid #4a4a4a;
}

.support-btn:hover {
    background-color: #4a4d52;
}

.add-btn {
    background-color: #ff3333;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.5);
    animation: addBtnGlow 2s infinite alternate;
}

.add-btn:hover {
    background-color: #e43d3d;
    box-shadow: 0 0 20px rgba(255, 85, 85, 0.7);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    min-height: 80vh;
    gap: 40px;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out forwards;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.3s forwards;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #ff3333;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.5s forwards;
}

.hero-description {
    font-size: 18px;
    color: #c4bdbd;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.7s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.9s forwards;
}

.hero-add-btn {
    background-color: #ff3333;
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.5);
    animation: heroBtnGlow 2s infinite alternate;
}

.hero-add-btn:hover {
    background-color: #ff5555;
    box-shadow: 0 0 20px rgba(255, 85, 85, 0.7);
}

.features-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #4a4a4a;
    padding: 12px 25px;
    font-size: 16px;
}

.features-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.5s forwards;
}

.logo-large {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.logo-large img {
    font-size: 120px;
    max-width: 100%;
    height: auto;
}

/* Why Choose ScrimX Section */
.why-choose {
    padding: 80px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out 0.4s forwards;
}

.section-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ff3333;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.6s forwards;
}

.para {
    font-size: 18px;
    color: #c4bdbd;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.7s forwards;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
}

.feature-box {
    background-color: rgba(30, 30, 46, 0.7);
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    height: auto;
    min-height: 280px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.5);
    animation: heroBtnGlow 2s infinite alternate;
    opacity: 0;
    transform: translateY(40px);
}

.feature-box:nth-child(1) {
    animation: slideUp 0.8s ease-out 0.8s forwards;
}

.feature-box:nth-child(2) {
    animation: slideUp 0.8s ease-out 0.9s forwards;
}

.feature-box:nth-child(3) {
    animation: slideUp 0.8s ease-out 1.0s forwards;
}

.feature-box:nth-child(4) {
    animation: slideUp 0.8s ease-out 1.1s forwards;
}

.feature-box:nth-child(5) {
    animation: slideUp 0.8s ease-out 1.2s forwards;
}

.feature-box:nth-child(6) {
    animation: slideUp 0.8s ease-out 1.3s forwards;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-top {
    height: 4px;
    background-color: #ff3333;
    width: 100%;
}

.feature-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 51, 51, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: #ff3333;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.feature-box p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Commands Section */
.commands-section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out 0.5s forwards;
}

.commands-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ff3333;
    margin-bottom: 5px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.7s forwards;
}

.commands-description {
    text-align: center;
    color: #b0b0b0;
    max-width: 700px;
    margin: 5px auto 20px;
    line-height: 1.6;
    font-size: 16px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.8s forwards;
}

.category-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.9s forwards;
}

.category-btn {
    padding: 12px 25px;
    background-color: rgba(30, 30, 46, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
}

.category-btn:nth-child(1) {
    animation: slideUp 0.8s ease-out 0.5s forwards;
}

.category-btn:nth-child(2) {
    animation: slideUp 0.8s ease-out 0.6s forwards;
}

.category-btn:nth-child(3) {
    animation: slideUp 0.8s ease-out 0.7s forwards;
}

.category-btn:nth-child(4) {
    animation: slideUp 0.8s ease-out 0.8s forwards;
}

.category-btn:nth-child(5) {
    animation: slideUp 0.8s ease-out 0.9s forwards;
}

.category-btn:nth-child(6) {
    animation: slideUp 0.8s ease-out 1s forwards;
}

.category-btn:hover {
    background-color: rgba(255, 51, 51, 0.2);
}

.category-btn.active {
    background-color: #ff3333;
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.5);
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 20px auto;
}

.command-item {
    background-color: rgba(30, 30, 46, 0.7);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(40px);
}

.command-item:nth-child(1) {
    animation: slideUp 0.8s ease-out 0.6s forwards;
}

.command-item:nth-child(2) {
    animation: slideUp 0.8s ease-out 0.7s forwards;
}

.command-item:nth-child(3) {
    animation: slideUp 0.8s ease-out 0.8s forwards;
}

.command-item:nth-child(4) {
    animation: slideUp 0.8s ease-out 0.9s forwards;
}

.command-item:nth-child(5) {
    animation: slideUp 0.8s ease-out 1s forwards;
}

.command-item:nth-child(6) {
    animation: slideUp 0.8s ease-out 1.1s forwards;
}

.command-item:nth-child(7) {
    animation: slideUp 0.8s ease-out 1.2s forwards;
}

.command-item:nth-child(8) {
    animation: slideUp 0.8s ease-out 1.3s forwards;
}

.command-item i {
    font-size: 30px;
    color: #ff3333;
    padding: 10px;
    align-items: center;
}

.command-item i p {
    color: white;
    font-size: 24px;
    font-family: sans-serif;
    margin-left: 0.5rem;
}

.command-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(212, 13, 13, 0.5);
}

.command-item:hover i {
    border-color: #ff3333;
}

.command-name {
    font-weight: 600;
    color: #fff;
    font-size: 18px;
}

.command-category {
    display: none;
}

.command-category.active {
    display: block;
}

/* Premium Section */
.premium-section {
    padding: 80px 0;
    background: rgba(15, 15, 25, 0.8);
    margin-top: 40px;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out 0.6s forwards;
}

.section-title2 {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ff3333;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.8s forwards;
}

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

.premium-header {
    text-align: center;
    margin-bottom: 60px;
}

.premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.premium-plans {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.plan-card {
    background: rgba(30, 30, 46, 0.8);
    border-radius: 15px;
    padding: 40px 30px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.plan-card:nth-child(1) {
    animation: slideUp 0.8s ease-out 0.9s forwards;
}

.plan-card:nth-child(2) {
    animation: slideUp 0.8s ease-out 1.0s forwards;
}

.plan-card:nth-child(3) {
    animation: slideUp 0.8s ease-out 1.1s forwards;
}

.plan-card.featured {
    border-color: #ff3333;
    box-shadow: 0 0 15px rgba(212, 13, 13, 0.5);
}

.plan-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: #ff5555;
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 15px rgba(212, 13, 13, 0.5);
}

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

.plan-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 51, 51, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.plan-icon i {
    font-size: 36px;
    color: #ff3333;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.plan-price {
    font-size: 48px;
    font-weight: 800;
    color: #ff5555;
    margin-bottom: 10px;
}

.plan-duration {
    color: #b0b0b0;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features li {
    padding: 10px 0;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: #4CAF50;
}

.plan-btn {
    text-decoration: none;
    background: #ff3333;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.5);
}

.plan-btn:hover {
    background: linear-gradient(135deg, #ff5555, #d45050);
    box-shadow: 0 0 20px rgba(255, 85, 85, 0.7);
}

.premium-features {
    margin-top: 80px;
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.premium-feature {
    background: rgba(30, 30, 46, 0.7);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    border-left: 4px solid #ff3333;
    opacity: 0;
    transform: translateY(40px);
}

.premium-feature:nth-child(1) {
    animation: slideUp 0.8s ease-out 1.2s forwards;
}

.premium-feature:nth-child(2) {
    animation: slideUp 0.8s ease-out 1.3s forwards;
}

.premium-feature:nth-child(3) {
    animation: slideUp 0.8s ease-out 1.4s forwards;
}

.premium-feature:nth-child(4) {
    animation: slideUp 0.8s ease-out 1.5s forwards;
}

.premium-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.premium-feature i {
    font-size: 40px;
    color: #ff3333;
    margin-bottom: 20px;
}

.premium-feature h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.premium-feature p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Support Section */
.support-section {
    padding: 80px 0;
    background: rgba(15, 15, 25, 0.8);
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out 0.7s forwards;
}

.section-title1 {
    font-size: 90px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ff3333;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.9s forwards;
}

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

.support-container .para1 {
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
    color: #c4bdbd;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 1.0s forwards;
}

.support-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.support-info {
    flex: 1;
    width: 100%;
}

.support-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.support-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(30, 30, 46, 0.7);
    border-radius: 10px;
    transition: all 0.3s;
    border-left: 4px solid #ff3333;
    opacity: 0;
    transform: translateY(40px);
}

.support-method:nth-child(1) {
    animation: slideUp 0.8s ease-out 1.1s forwards;
}

.support-method:nth-child(2) {
    animation: slideUp 0.8s ease-out 1.2s forwards;
}

.support-method:nth-child(3) {
    animation: slideUp 0.8s ease-out 1.3s forwards;
}

.support-method:nth-child(4) {
    animation: slideUp 0.8s ease-out 1.4s forwards;
}

.support-method:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 51, 51, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-icon i {
    font-size: 24px;
    color: #ff3333;
}

.support-details h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #fff;
}

.support-details p {
    color: #b0b0b0;
    margin-bottom: 10px;
}

.support-link {
    color: #ff3333;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.support-link:hover {
    color: #ff5555;
    gap: 8px;
}

/* Footer Section */
.footer {
    background: rgba(10, 10, 20, 0.95);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out 0.8s forwards;
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    opacity: 0;
    transform: translateY(30px);
}

.footer-column:nth-child(1) {
    animation: slideUp 0.8s ease-out 0.9s forwards;
}

.footer-column:nth-child(2) {
    animation: slideUp 0.8s ease-out 1.0s forwards;
}

.footer-column:nth-child(3) {
    animation: slideUp 0.8s ease-out 1.1s forwards;
}

.footer-column:nth-child(4) {
    animation: slideUp 0.8s ease-out 1.2s forwards;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .brand-name {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(30, 30, 46, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #ff3333;
    transform: translateY(-5px);
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #ff3333;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: #ff5555;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 12px;
    color: #ff3333;
}

.footer-newsletter p {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 1.3s forwards;
}

.copyright {
    color: #b0b0b0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-bottom-links a:hover {
    color: #ff5555;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes logoGlow {
    0% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    }

    100% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.9);
    }
}

@keyframes addBtnGlow {
    0% {
        box-shadow: 0 0 15px rgba(255, 107, 0, 0.5);
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.7);
    }
}

@keyframes heroBtnGlow {
    0% {
        box-shadow: 0 0 15px rgba(255, 51, 51, 0.5);
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 85, 85, 0.7);
    }
}

/* New Slide Up Animation */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar poora container ke liye */
::-webkit-scrollbar {
    width: 8px;
    /* Scrollbar ki width */
}

/* Scrollbar ka track (background) */
::-webkit-scrollbar-track {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    /* Track ka color */
}

/* Scrollbar ka thumb (jo move hota hai) */
::-webkit-scrollbar-thumb {
    background-color: #ff3333;
    /* Scrollbar ka color */
    border-radius: 6px;
    /* Rounded edges */
    border: 3px solid #ff3333;
    /* Thumb ke around border */
}

/* Hover state optional */
::-webkit-scrollbar-thumb:hover {
    background-color: #ff5555;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* Tablets and below (992px) */
@media screen and (max-width: 992px) {
    .section-title {
        font-size: 48px;
    }

    .section-title1 {
        font-size: 60px;
    }

    .section-title2 {
        font-size: 50px;
    }

    .commands-title {
        font-size: 3rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-image {
        justify-content: center;
    }

    .logo-large {
        width: 300px;
        height: 300px;
    }

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

    .commands-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .nav-links {
        gap: 20px;
    }
}

/* Mobile Landscape and below (768px) - HAMBURGER FIXED */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    /* Mobile Navigation Layout */
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }

    .logo-section {
        order: 1;
    }

    .hamburger {
        order: 3;
    }

    .nav-links {
        order: 4;
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(15, 15, 15, 1);
        border-radius: 6px;
        z-index: 9999;
        padding: 20px;
        backdrop-filter: none;
    }

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

    .nav-buttons {
        order: 5;
        display: none;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 200px);
        left: 0;
        width: 100%;
        background-color: rgba(15, 15, 15, 1);
        z-index: 9999;
        padding: 20px;
        backdrop-filter: none;
        gap: 15px;
    }
.nav-buttons .add-btn{
    display: none;
}
    .nav-buttons.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .nav-buttons .btn {
        width: 100%;
        justify-content: center;
        max-width: 250px;
        margin: 0 auto;
    }

    /* Adjust other mobile styles */
    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .section-title {
        font-size: 36px;
    }

    .section-title1 {
        font-size: 42px;
    }

    .section-title2 {
        font-size: 36px;
    }

    .commands-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .feature-box {
        max-width: 100%;
    }

    .commands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .command-item i p {
        font-size: 20px;
    }

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

    .plan-card {
        max-width: 100%;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .premium-features-grid {
        grid-template-columns: 1fr;
    }

    .support-method {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-column {
        min-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Portrait (480px) */
@media screen and (max-width: 480px) {
    .brand-name {
        font-size: 20px;
    }

    .logo img {
        width: 45px;
        height: 40px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
    }

    .logo-large {
        width: 250px;
        height: 250px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-title1 {
        font-size: 32px;
    }

    .section-title2 {
        font-size: 28px;
    }

    .commands-title {
        font-size: 2rem;
    }

    .para,
    .para1,
    .commands-description {
        font-size: 14px;
    }

    .category-btn {
        padding: 10px 15px;
        font-size: 14px;
    }

    .commands-grid {
        grid-template-columns: 1fr;
    }

    .command-item i {
        font-size: 24px;
    }

    .command-item i p {
        font-size: 18px;
    }

    .plan-price {
        font-size: 36px;
    }

    .plan-name {
        font-size: 20px;
    }

    .btn {
        font-size: 12px;
        padding: 8px 16px;
    }

    .feature-box h3 {
        font-size: 18px;
    }

    .feature-box p {
        font-size: 14px;
    }

    .support-icon {
        width: 50px;
        height: 50px;
    }

    .support-details h3 {
        font-size: 18px;
    }

    .support-details p {
        font-size: 14px;
    }

    .footer-logo .brand-name {
        font-size: 20px;
    }

    .footer-column h3 {
        font-size: 18px;
    }
}

/* Extra Small Mobile (360px) */
@media screen and (max-width: 360px) {
    .container {
        padding: 0 15px;
    }

    nav {
        padding: 10px 15px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .logo-large {
        width: 200px;
        height: 200px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-title1 {
        font-size: 28px;
    }

    .section-title2 {
        font-size: 24px;
    }

    .commands-title {
        font-size: 1.75rem;
    }

    .why-choose,
    .commands-section,
    .premium-section,
    .support-section {
        padding: 60px 0;
    }
}