/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #a855f7;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
    position: relative;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    justify-content: space-between;
}

.lang-dropdown-btn:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: #a855f7;
}

.lang-dropdown-btn.active {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-color: #a855f7;
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    min-width: 150px;
    overflow: hidden;
}

.lang-dropdown-content a {
    color: #ffffff;
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-dropdown-content a:hover {
    background: rgba(168, 85, 247, 0.2);
}

.lang-dropdown-content a.active {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.lang-dropdown-content.show {
    display: block;
}

.flag {
    font-size: 1.1rem;
}

.lang-dropdown-btn i {
    transition: transform 0.3s ease;
}

.lang-dropdown-btn.active i {
    transform: rotate(180deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, rgba(10, 10, 15, 1) 70%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    margin-right: 8rem;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(135deg, #a855f7, #c084fc, #e879f9, #f0abfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #b3b3b3;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #a855f7;
    border: 2px solid #a855f7;
}

.btn-secondary:hover {
    background: #a855f7;
    color: white;
    transform: translateY(-2px);
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
}

/* Image Slider Styles */
.image-slider {
    position: relative;
    width: 1000px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    z-index: 3;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

.slide-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #a855f7;
}

.slide-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.placeholder-slide {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.placeholder-content {
    text-align: center;
    color: white;
}

.placeholder-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.placeholder-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.placeholder-content p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 4;
}

.slider-btn {
    background: rgba(139, 92, 246, 0.8);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(139, 92, 246, 1);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

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

.dot.active {
    background: #a855f7;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(168, 85, 247, 0.8);
}



.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(168, 85, 247, 0.3));
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(10, 10, 15, 1) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #b3b3b3;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.stat h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #a855f7;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #b3b3b3;
    font-weight: 500;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 2400px;
    width: 100%;
}

.about-tech-image {
    width: 100%;
    height: 400px;
    max-width: 2400px;
    border-radius: 5px;
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    object-fit: cover;
}

.about-tech-image:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.4);
}

/* Why AXG Gaming Section */
.why-atomix {
    background: url('pictures/whysectionbg.png') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.why-atomix::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.05) 0%, rgba(10, 10, 15, 1) 70%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.why-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

.central-card {
    grid-column: 2;
    grid-row: 1 / 3;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.3);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.why-card:nth-child(6) {
    grid-column: 3;
    grid-row: 3;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.why-icon i {
    font-size: 1.5rem;
    color: #a855f7;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    transform: scale(1.1) rotate(10deg);
}

.why-card:hover .why-icon i {
    color: white;
    transform: scale(1.1);
}

.why-icon-large {
    margin-bottom: 2rem;
}

.atomix-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(168, 85, 247, 0.3));
    border: 3px solid rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 3s ease-in-out infinite;
}

.logo-gradient {
    width: 60px;
    height: 60px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.logo-gradient:hover {
    transform: scale(1.1);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
        transform: scale(1.05);
    }
}

.why-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.central-card h3 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.why-card p {
    color: #b3b3b3;
    line-height: 1.6;
    font-size: 0.95rem;
}

.central-card p {
    font-size: 1rem;
    text-align: center;
}

/* Games Section */
.games {
    background: url('pictures/gamesectionbg.gif') center/cover no-repeat, linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(10, 10, 15, 1) 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.game-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.game-image {
    height: 200px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

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

.game-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Orbitron', monospace;
}

.badge.new {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
}

.badge.hot {
    background: linear-gradient(135deg, #ff3030, #ff6b6b);
    color: white;
}



.game-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.btn-buy, .btn-more, .btn-try {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    min-width: 120px;
}





a.btn-more,
a.btn-try {
    text-decoration: none;
}

.btn-more {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
    border: 2px solid #a855f7;
}

.btn-more:hover {
    background: #a855f7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.4);
}

.btn-try {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    border: 2px solid #ff6b35;
}

.btn-try:hover {
    background: linear-gradient(135deg, #ff8e53, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.game-title-overlay {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.game-placeholder {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    color: #a855f7;
    text-align: center;
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.game-info p {
    color: #b3b3b3;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.game-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(139, 92, 246, 0.2);
    color: #a855f7;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Page Header Styles */
.page-header {
    padding: 8rem 0 4rem;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, rgba(10, 10, 15, 1) 70%);
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-description {
    font-size: 1.2rem;
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* All Games Section */
.all-games-section {
    padding: 4rem 0;
    background: url('pictures/gamesectionbg.gif') center/cover no-repeat, linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(10, 10, 15, 1) 100%);
}

/* Game Filters */
.game-filters {
    margin-bottom: 3rem;
    text-align: center;
}

.game-filters h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 25px;
    color: #a855f7;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.filter-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: #a855f7;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-color: #a855f7;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

/* Game Statistics */
.game-stats {
    margin-top: 4rem;
    padding: 3rem 0;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Game Types Section */
.game-types {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23, #1a1a2e);
}

.section-description {
    text-align: center;
    color: #b3b3b3;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.game-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.game-type-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.game-type-card:hover {
    transform: translateY(-10px);
    border-color: #a855f7;
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
}

.game-type-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    color: #a855f7;
    opacity: 0.7;
}

.game-type-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.game-type-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(168, 85, 247, 0.05));
    border-radius: 10px;
}

.game-type-icon {
    font-size: 3rem;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.game-type-card:hover .game-type-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.game-count {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.game-count span {
    display: block;
    font-size: 0.8rem;
    color: #a855f7;
    font-weight: 400;
    margin-top: 0.2rem;
}

@media (max-width: 768px) {
    .game-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .game-type-card {
        padding: 1.5rem;
    }
    
    .game-type-image {
        height: 80px;
    }
    
    .game-type-icon {
        font-size: 2rem;
    }
    
    .game-count {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .game-types-grid {
        grid-template-columns: 1fr;
    }
}

/* Next Update Section */
.next-update {
    padding: 5rem 0;
    background: linear-gradient(135deg, #16213e, #0f0f23);
    position: relative;
    overflow: hidden;
}

.next-update::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.05) 0%, rgba(10, 10, 15, 0) 70%);
    pointer-events: none;
}

.next-update-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.next-update-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.next-update-card:hover {
    transform: translateY(-10px);
    border-color: #a855f7;
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
}

.next-update-image {
    height: 200px;
    overflow: hidden;
}

.next-update-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.next-update-card:hover .next-update-image img {
    transform: scale(1.05);
}

.next-update-content {
    padding: 1.5rem;
}

.next-update-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.next-update-content p {
    color: #b3b3b3;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.update-status {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* News Section */
.news {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(10, 10, 15, 1) 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.news-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

.news-card.featured {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.news-date {
    color: #a855f7;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-card p {
    color: #b3b3b3;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #a855f7;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #c084fc;
    transform: translateX(5px);
}

/* Events Section */
.events {
    background: rgba(10, 10, 15, 1);
}

.events-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.event-date {
    text-align: center;
    min-width: 80px;
}

.event-date .month {
    display: block;
    color: #a855f7;
    font-weight: 700;
    font-size: 0.9rem;
}

.event-date .day {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.event-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.event-content p {
    color: #b3b3b3;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a855f7;
    font-weight: 500;
}

/* Partners Section */
.partners {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(10, 10, 15, 1) 100%);
}

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

.partner-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

.partner-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 1rem;
}

.partner-card p {
    color: #b3b3b3;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: rgba(10, 10, 15, 1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #b3b3b3;
}

.contact-item i {
    color: #a855f7;
    font-size: 1.2rem;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    color: #a855f7;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group select option {
    background: #1a1a2e;
    color: #ffffff;
    padding: 10px;
}

.form-group select option:hover {
    background: #a855f7;
    color: #ffffff;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(10, 10, 15, 1) 100%);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: #a855f7;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #b3b3b3;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #a855f7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    color: #666;
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(168, 85, 247, 0.02));
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    color: #b3b3b3;
    font-size: 0.9rem;
}

.softhand-logo {
    height: 30px;
    width: auto;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.powered-by:hover .softhand-logo {
    filter: brightness(1);
}

.powered-by strong {
    color: #a855f7;
    font-weight: 600;
}

/* Game Detail Pages */
.game-detail-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 20px;
    color: white;
    font-family: 'Orbitron', monospace;
}

.game-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(168, 85, 247, 0.3);
}

.back-btn {
    padding: 10px 20px;
    background: rgba(168, 85, 247, 0.2);
    border: 2px solid #a855f7;
    border-radius: 25px;
    color: white;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

.back-btn:hover {
    background: rgba(168, 85, 247, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.game-detail-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-detail-header {
    position: relative;
    top: 50px;
    z-index: 10;
    padding: 20px 0;
    margin-bottom: 30px;
}

.game-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 80px auto 0 auto;
}

.game-detail-image {
    width: 100%;
    margin-bottom: 30px;
}

.game-detail-image img {
    width: 513px;
    height: 683px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.game-features {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    margin-bottom: 30px;
}

.game-features h3 {
    color: #a855f7;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.game-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.game-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
}

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

.game-features strong {
    color: #3b82f6;
    font-weight: 600;
}

.game-actions-detail {
    text-align: center;
}

.btn-try-detail {
    padding: 15px 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 30px;
    color: white;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-try-detail:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.game-intro {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    margin-bottom: 30px;
}

.game-intro h3 {
    color: #a855f7;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.game-intro p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.game-stats {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    margin-bottom: 30px;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.stat-value {
    font-size: 1.1rem;
    color: #3b82f6;
    font-weight: 600;
}

.supported-platforms,
.supported-languages {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    margin-bottom: 20px;
}

.supported-platforms h4,
.supported-languages h4 {
    color: #a855f7;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.platform-icons,
.language-flags {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

/* Enhanced Mobile-First Responsive Design */

/* Mobile Viewport Height Fix */
:root {
    --vh: 1vh;
}

.mobile-device {
    /* Use custom viewport height on mobile */
    --mobile-vh: calc(var(--vh, 1vh) * 100);
}

/* Mobile Touch Interactions */
.mobile-touch {
    -webkit-tap-highlight-color: rgba(168, 85, 247, 0.3);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Mobile Performance Optimizations */
.mobile-device * {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.mobile-device .floating-elements {
    will-change: transform;
}

/* Mobile Scroll Behavior */
.mobile-device {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Mobile Focus States */
.mobile-device input:focus,
.mobile-device textarea:focus,
.mobile-device select:focus {
    outline: 2px solid #a855f7;
    outline-offset: 2px;
}

/* Mobile Button Enhancements */
.mobile-device .btn {
    min-height: 44px; /* iOS recommended touch target size */
    min-width: 44px;
}

/* Mobile Card Hover States (converted to active states) */
.mobile-device .game-card:active,
.mobile-device .news-card:active,
.mobile-device .why-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Mobile Loading States */
.mobile-loading {
    pointer-events: none;
    opacity: 0.7;
}

.mobile-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #a855f7;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Enhanced Hamburger Animation */
.hamburger {
    z-index: 1001;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Swipe Gesture Indicators */
.swipe-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    animation: swipeHint 2s infinite;
}

@keyframes swipeHint {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(-5px); }
}

/* Mobile-Optimized Cards */
.mobile-card-stack {
    display: none;
}

/* Pull-to-Refresh Indicator */
.pull-refresh {
    position: fixed;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

.pull-refresh.active {
    top: 20px;
}

/* Enhanced Mobile Responsive Breakpoints */

/* Large Mobile Devices (768px and down) */
@media (max-width: 768px) {
    /* Navigation Enhancements */
    .hamburger {
        display: flex;
        order: 3;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(10, 10, 15, 0.98), rgba(26, 26, 46, 0.98));
        width: 80%;
        height: 100vh;
        text-align: left;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
        padding: 5rem 2rem 2rem;
        backdrop-filter: blur(20px);
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        opacity: 0;
        transform: translateX(-20px);
        animation: slideInLeft 0.3s ease forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu.active li:nth-child(6) { animation-delay: 0.6s; }
    .nav-menu.active li:nth-child(7) { animation-delay: 0.7s; }
    .nav-menu.active li:nth-child(8) { animation-delay: 0.8s; }
    .nav-menu.active li:nth-child(9) { animation-delay: 0.9s; }
    .nav-menu.active li:nth-child(10) { animation-delay: 1.0s; }
    
    @keyframes slideInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        color: #a855f7;
        padding-left: 1rem;
    }
    
    .language-switcher {
        order: 2;
        margin-left: 0;
        margin-right: 1rem;
    }
    
    .lang-dropdown-content {
        right: 0;
        left: auto;
        min-width: 120px;
    }
    
    /* Hero Section Mobile Optimization */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 1rem 2rem 1rem;
        min-height: 100vh;
        justify-content: flex-start;
        align-items: center;
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(10, 10, 15, 1) 100%);
        padding-top: 6rem;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 3rem;
        max-width: 90%;
        z-index: 2;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 3rem);
        line-height: 1.2;
        margin-bottom: 1rem;
        font-weight: 900;
        background: linear-gradient(135deg, #8b5cf6, #a855f7, #c084fc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        word-wrap: break-word;
        hyphens: none;
        white-space: normal;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        color: #e2e8f0;
        line-height: 1.6;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
        font-size: 1.1rem;
        border-radius: 50px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .hero-buttons .btn-primary {
        background: linear-gradient(135deg, #8b5cf6, #a855f7);
        border: none;
        box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    }
    
    .hero-visual {
        height: 200px;
        margin-top: 2rem;
        width: 100%;
        position: relative;
    }

    /* Enhanced Image Slider for Mobile */
    .image-slider {
        width: 95%;
        height: 200px;
        margin: 1rem auto;
        border-radius: 15px;
        touch-action: pan-y;
        position: relative;
    }

    .slider-controls {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        padding: 0 0.5rem;
        z-index: 10;
        pointer-events: none;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        background: rgba(168, 85, 247, 0.9);
        backdrop-filter: blur(10px);
        border: none;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        pointer-events: auto;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-btn:hover {
        background: rgba(168, 85, 247, 1);
        transform: scale(1.1);
    }
    
    .slider-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        gap: 8px;
        z-index: 10;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .dot.active {
        background: #a855f7;
        border-color: rgba(255, 255, 255, 0.3);
        transform: scale(1.2);
    }
    
    .swipe-indicator {
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.8rem;
        text-align: center;
        z-index: 10;
        transition: opacity 0.3s ease;
    }
    
    /* Mobile-Optimized Sections */
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-card {
        transform: none;
        transition: all 0.3s ease;
    }
    
    .game-card:active {
        transform: scale(0.98);
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        order: 2;
    }
    
    .contact-info {
        order: 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .event-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .why-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
    }
    
    /* Central card (with Atomix logo) appears first on mobile */
    .why-card.central-card {
        order: -1;
        padding: 2rem 1.5rem;
        text-align: center;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        border: 2px solid #a855f7;
        border-radius: 15px;
        margin-bottom: 1rem;
    }
    
    .why-card.central-card .why-icon-large {
        margin-bottom: 1.5rem;
    }
    
    .why-card.central-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: #ffffff;
        font-weight: 600;
    }
    
    .why-card.central-card p {
        font-size: 1rem;
        line-height: 1.5;
        color: #e2e8f0;
    }
    
    /* Other cards in a single column below */
    .why-card:not(.central-card) {
        padding: 1.5rem;
        text-align: center;
        background: rgba(26, 26, 46, 0.8);
        border-radius: 10px;
        border: 1px solid rgba(168, 85, 247, 0.3);
    }
    
    .why-card {
        padding: 2rem 1.5rem;
    }
    
    .why-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: #ffffff;
    }
    
    .why-card p {
        font-size: 0.9rem;
        line-height: 1.4;
        color: #cbd5e1;
    }
    
    .central-card {
        grid-column: 1;
        grid-row: auto;
        order: -1;
    }
    
    /* Mobile Form Enhancements */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem;
    }
    
    /* Mobile Game Detail Pages */
    .game-detail-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
        max-width: 100%;
    }
    
    .game-detail-left {
        order: 1;
        width: 100%;
    }
    
    .game-detail-right {
        order: 2;
        width: 100%;
    }
    
    .game-detail-image {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .game-detail-image img {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 3/4;
        object-fit: cover;
        border-radius: 15px;
        border: 2px solid rgba(168, 85, 247, 0.3);
    }
    
    .game-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
        padding: 1rem;
    }
    
    .game-detail-header h1 {
        font-size: 1.8rem;
        text-align: center;
        width: 100%;
    }
    
    .back-btn {
        align-self: flex-start;
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .game-features,
    .game-intro,
    .game-stats,
    .supported-platforms,
    .supported-languages {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .game-features h3,
    .game-intro h3,
    .game-stats h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .game-actions-detail {
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-try-detail {
        width: 100%;
        max-width: 280px;
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Medium Mobile Devices (600px and down) */
@media (max-width: 600px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 1.5rem 0.8rem;
        min-height: 100vh;
    }
    
    .hero-content {
        max-width: 95%;
        margin-bottom: 2.5rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 9vw, 3.5rem);
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.8rem;
        max-width: 90%;
    }
    
    .hero-buttons .btn {
        max-width: 260px;
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 180px;
        margin-top: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .why-card {
        padding: 1.5rem 1rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Small Mobile Devices (480px and down) */
@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .hero {
        padding: 4rem 0.5rem 1rem 0.5rem;
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: 6rem;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 5.5vw, 2.2rem);
        margin-bottom: 0.6rem;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: none;
        white-space: normal;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        max-width: 95%;
        line-height: 1.5;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        max-width: 240px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-visual {
        height: 160px;
        margin-top: 1rem;
    }
    
    .image-slider {
        height: 180px;
        border-radius: 10px;
        position: relative;
    }

    .slider-controls {
        display: flex !important;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        justify-content: space-between;
        padding: 0 0.3rem;
        z-index: 10;
        pointer-events: none;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        background: rgba(168, 85, 247, 0.9);
        border: none;
        border-radius: 50%;
        color: white;
        pointer-events: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-dots {
        display: flex !important;
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        gap: 6px;
        z-index: 10;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
    }
    
    .dot.active {
        background: #a855f7;
        transform: scale(1.1);
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat {
        padding: 1rem;
    }
    
    .why-card {
        padding: 1.5rem 1rem;
    }
    
    .why-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .game-card {
        padding: 1rem;
    }
    
    .news-card {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    /* Game Detail Pages - Small Mobile */
    .game-detail-container {
        padding: 15px;
    }
    
    .game-detail-header {
        padding: 0.8rem;
    }
    
    .game-detail-header h1 {
        font-size: 1.6rem;
    }
    
    .game-detail-image img {
        max-width: 280px;
    }
    
    .game-features,
    .game-intro,
    .game-stats,
    .supported-platforms,
    .supported-languages {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .game-features h3,
    .game-intro h3,
    .game-stats h3 {
        font-size: 1.1rem;
    }
    
    .btn-try-detail {
        padding: 10px 25px;
        font-size: 13px;
    }
}

/* Extra Small Devices (360px and down) */
@media (max-width: 360px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 4rem 0.3rem 0.8rem 0.3rem;
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: 5rem;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.2rem, 4.5vw, 1.8rem);
        margin-bottom: 0.5rem;
        line-height: 1.4;
        word-wrap: break-word;
        hyphens: none;
        white-space: normal;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        max-width: 100%;
        line-height: 1.4;
    }
    
    .hero-buttons {
        gap: 0.6rem;
    }
    
    .hero-buttons .btn {
        max-width: 220px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .hero-visual {
        height: 140px;
        margin-top: 0.8rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .image-slider {
        height: 150px;
        position: relative;
    }
    
    .slider-controls {
        display: flex !important;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        justify-content: space-between;
        padding: 0 0.2rem;
        z-index: 10;
        pointer-events: none;
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        background: rgba(168, 85, 247, 0.9);
        border: none;
        border-radius: 50%;
        color: white;
        pointer-events: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-dots {
        display: flex !important;
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        gap: 4px;
        z-index: 10;
    }
    
    .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
    }
    
    .dot.active {
        background: #a855f7;
        transform: scale(1.2);
    }
    
    .section-title {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        margin-bottom: 1.5rem;
    }
    
    .why-card,
    .game-card,
    .news-card {
        padding: 1rem 0.8rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    /* Game Detail Pages - Extra Small Mobile */
    .game-detail-container {
        padding: 10px;
    }
    
    .game-detail-header {
        padding: 0.6rem;
        gap: 10px;
    }
    
    .game-detail-header h1 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .back-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .game-detail-content {
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .game-detail-image {
        margin-bottom: 1rem;
    }
    
    .game-detail-image img {
        max-width: 250px;
    }
    
    .game-features,
    .game-intro,
    .game-stats,
    .supported-platforms,
    .supported-languages {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .game-features h3,
    .game-intro h3,
    .game-stats h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .game-features li {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .game-intro p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .btn-try-detail {
        padding: 8px 20px;
        font-size: 12px;
        max-width: 250px;
    }
    
    .platform-icons,
    .language-flags {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .platform-icon,
    .language-flag {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #a855f7, #c084fc);
}

/* Blog Page Styles */
.blog-content {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(10, 10, 15, 1) 100%);
    min-height: 100vh;
    padding: 8rem 0 4rem;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-header {
    margin-bottom: 3rem;
    text-align: center;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.blog-date {
    color: #a855f7;
    font-weight: 600;
    font-size: 0.9rem;
}

.blog-category {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-body {
    color: #e5e5e5;
    line-height: 1.8;
}

.blog-section {
    margin-bottom: 3rem;
}

.blog-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
    padding-bottom: 0.5rem;
}

.blog-section h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    color: #a855f7;
    margin: 2rem 0 1rem;
}

.blog-section h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #c084fc;
    margin: 1.5rem 0 0.5rem;
}

.blog-section p {
    margin-bottom: 1.5rem;
}

.blog-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.blog-section li {
    margin-bottom: 0.5rem;
    color: #b3b3b3;
}

.code-block {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-block code {
    color: #e5e5e5;
    background: none;
    padding: 0;
    border-radius: 0;
}

.example-steps {
    margin: 2rem 0;
}

.step {
    background: rgba(139, 92, 246, 0.05);
    border-left: 4px solid #8b5cf6;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0 10px 10px 0;
}

.step code {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 5px;
    display: block;
    margin-top: 0.5rem;
    font-family: 'Courier New', monospace;
    color: #c084fc;
    line-height: 1.4;
}

.note {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.note p {
    margin: 0;
    font-style: italic;
    color: #d1d5db;
}

/* View All Games Button */
.view-all-games-container {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
}

.btn-view-all-games {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    border: 2px solid transparent;
}

.btn-view-all-games:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, #0099cc, #00d4ff);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-view-all-games:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-content {
        padding: 6rem 1rem 2rem;
    }
    
    .blog-article {
        padding: 2rem 1.5rem;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .code-block {
        padding: 1rem;
    }
    
    .step {
        padding: 1rem;
    }
    
    /* Page Header Responsive */
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    /* Game Filters Responsive */
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Game Stats Responsive */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* View All Games Button Responsive */
    .view-all-games-container {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .btn-view-all-games {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Exclusive ShopBet Styling */
.exclusive-badge {
    text-align: center;
    margin: 10px 0;
}

.badge.exclusive-large {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: exclusivePulse 2s infinite;
}

@keyframes exclusivePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.exclusive-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.4);
}

.btn-try-detail.exclusive-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    margin-bottom: 10px;
}

.btn-try-detail.exclusive-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #f7931e, #ff6b35);
}

.exclusive-note {
    font-size: 12px;
    color: #ff6b35;
    font-style: italic;
    text-align: center;
    margin-top: 10px;
}

.exclusive-benefits {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.exclusive-benefits h3 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    font-size: 14px;
    color: #ffffff;
}

.benefits-list li:last-child {
    border-bottom: none;
}

/* Responsive styling for exclusive elements */
@media (max-width: 768px) {
    .exclusive-badge {
        margin: 5px 0;
    }
    
    .badge.exclusive-large {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .exclusive-overlay {
        top: 5px;
        right: 5px;
        padding: 3px 8px;
        font-size: 10px;
    }
    
    .btn-try-detail.exclusive-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .exclusive-benefits {
        padding: 15px;
        margin-top: 15px;
    }
    
    .exclusive-benefits h3 {
        font-size: 16px;
    }
    
    .benefits-list li {
        font-size: 13px;
        padding: 6px 0;
        color: #ffffff;
    }
}