/* Global Styles */
:root {
    --primary: #9d4edd;
    --primary-dark: #7b2cbf;
    --secondary: #5a189a;
    --accent: #ff9e00;
    --background-dark: #0f0f1a;
    --background-light: #f5f5f7;
    --text-dark: #121212;
    --text-light: #f5f5f7;
    --nav-bg-dark: rgba(15, 15, 26, 0.8);
    --nav-bg-light: rgba(245, 245, 247, 0.8);
    --card-bg-dark: rgba(30, 30, 50, 0.7);
    --card-bg-light: rgba(255, 255, 255, 0.7);
    --footer-bg-dark: #0a0a12;
    --footer-bg-light: #e5e5e7;
}

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

body {
    background-color: var(--background-dark);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.light-theme {
    background-color: var(--background-light);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary);
    color: var(--text-light);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Stars Background */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.light-theme .stars-container {
    display: none;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: var(--nav-bg-dark);
    border-radius: 50px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.light-theme .navbar {
    background-color: var(--nav-bg-light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 30px;
    width: auto;
}

.logo span {
    font-weight: 700;
    font-size: 1.2rem;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    position: relative;
    padding: 5px 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-links a.active {
    color: var(--primary);
}

.theme-toggle {
    display: flex;
    gap: 10px;
    cursor: pointer;
}

.theme-toggle i {
    font-size: 1.2rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.theme-toggle i.active {
    opacity: 1;
    color: var(--accent);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
}

.hero-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: translateX(10px);
}

/* Studios Section */
.studios-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.studio-card {
    display: flex;
    align-items: center;
    gap: 50px;
}

.studio-card.reverse {
    flex-direction: row-reverse;
}

.studio-content {
    flex: 1;
}

.studio-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.studio-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.studio-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.studio-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

/* Auradynamics Preview */
.auradynamics-preview {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.auradynamics-content {
    flex: 1;
}

.auradynamics-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auradynamics-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.auradynamics-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.auradynamics-image img {
    width: 100%;
    height: auto;
}

/* Footer */
footer {
    position: relative;
    padding: 80px 20px 20px;
    background-color: var(--footer-bg-dark);
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.light-theme footer {
    background-color: var(--footer-bg-light);
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.footer-fade-text {
    position: absolute;
    font-size: 15vw;
    font-weight: 900;
    opacity: 0.05;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: fadeInOut 10s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.02; }
    50% { opacity: 0.08; }
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-section {
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section a {
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.light-theme .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Social Media Links in Footer */
.social-media-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.light-theme .social-btn {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.social-btn:hover {
    transform: translateY(-3px);
    background-color: var(--primary);
    color: var(--text-light);
}

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

.social-btn:hover i {
    transform: scale(1);
}

.footer-section a i {
    margin-right: 8px;
}

/* Our Story Page */
.our-story {
    padding: 150px 20px 100px;
    max-width: 800px;
    margin: 0 auto;
}

.story-container h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-content p {
    margin-bottom: 20px;
}

.story-content em {
    font-style: italic;
    color: var(--primary);
}

/* Game Series Page */
.game-series {
    padding: 150px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-series-header {
    text-align: center;
    margin-bottom: 80px;
}

.game-series-header h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-series-header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.game-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.game-card {
    background-color: var(--card-bg-dark);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.light-theme .game-card {
    background-color: var(--card-bg-light);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.game-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.game-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Bot Showcase Page */
.bot-showcase-container {
    padding: 120px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.bot-showcase {
    width: 100%;
    max-width: 800px;
    padding: 40px 30px;
    background-color: var(--card-bg-dark);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.light-theme .bot-showcase {
    background-color: var(--card-bg-light);
}

.bot-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.light-theme .bot-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.bot-header h1 {
    font-size: 2rem;
    color: var(--primary);
}

.bot-header h1 i {
    margin-right: 10px;
    color: var(--accent);
}

.bot-features {
    padding: 0 20px;
}

.bot-features h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--accent);
}

.bot-features h2 i {
    margin-right: 10px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.light-theme .feature-item {
    background-color: rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.bot-update {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background-color: rgba(255, 152, 0, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

.bot-update p {
    font-weight: 600;
    color: var(--accent);
}

.bot-update i {
    margin-right: 10px;
}

.bot-cta {
    text-align: center;
    margin: 40px 0;
}

.bot-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.light-theme .bot-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.bot-footer i.fa-heart {
    color: #e91e63;
}

/* Auradynamics Page */
.auradynamics-section {
    padding: 150px 0 100px;
}

.aura-hero {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 50px;
}

.aura-hero-content {
    flex: 1;
}

.aura-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.aura-logo {
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aura-hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.light-theme .social-links a {
    background-color: rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
    background-color: var(--primary);
}

.social-links i {
    font-size: 1.2rem;
}

.aura-hero-image {
    flex: 1;
}

.aura-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.aura-wave-divider {
    height: 150px;
    background-image: url('wave-divider.svg');
    background-size: cover;
    background-position: center;
    margin: 50px 0;
}

.aura-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.aura-main h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aura-tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.aura-description {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
}

.aura-description p {
    margin-bottom: 20px;
}

.dunemotors-preview {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.dunemotors-image {
    flex: 1;
}

.dunemotors-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dunemotors-content {
    flex: 1;
}

.dunemotors-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dunemotors-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* About Page */
.about-section {
    padding: 150px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

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

.about-card {
    background-color: var(--card-bg-dark);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.light-theme .about-card {
    background-color: var(--card-bg-light);
}

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

.about-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-card p, .about-card ul {
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-card ul {
    margin-top: 10px;
    padding-left: 20px;
}

.about-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.about-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.about-card ul li strong {
    color: var(--primary);
}

/* Dune Motors Styles */
.dunemotors-hero-section {
    padding: 150px 0 100px;
}

.dunemotors-hero {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 50px;
}

.dunemotors-hero-content {
    flex: 1;
}

.dunemotors-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.motors-text {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dunemotors-tagline {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.dunemotors-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.6;
}

.dunemotors-hero-image {
    flex: 1;
}

.dunemotors-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dunemotors-about-section {
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.light-theme .dunemotors-about-section {
    background-color: rgba(0, 0, 0, 0.05);
}

.dunemotors-about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.dunemotors-about-container h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dunemotors-about-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.dunemotors-about-content p {
    margin-bottom: 20px;
}

.dunemotors-philosophy-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.dunemotors-philosophy-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.dunemotors-philosophy-content {
    flex: 1;
}

.dunemotors-philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dunemotors-philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.dunemotors-philosophy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.philosophy-point {
    text-align: center;
    padding: 20px;
    background-color: var(--card-bg-dark);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.light-theme .philosophy-point {
    background-color: var(--card-bg-light);
}

.philosophy-point:hover {
    transform: translateY(-5px);
}

.philosophy-point i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.philosophy-point h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.dunemotors-philosophy-image {
    flex: 1;
}

.dunemotors-philosophy-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dunemotors-projects-section {
    padding: 100px 20px;
    background-color: rgba(0, 0, 0, 0.2);
}

.light-theme .dunemotors-projects-section {
    background-color: rgba(0, 0, 0, 0.05);
}

.dunemotors-projects-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.dunemotors-projects-container h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.projects-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 60px;
}

.dunemotors-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.project-card {
    background-color: var(--card-bg-dark);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.light-theme .project-card {
    background-color: var(--card-bg-light);
}

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

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

.project-content {
    padding: 20px;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.project-content p {
    font-size: 1rem;
    line-height: 1.6;
}

.dunemotors-coming-soon-section {
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.dunemotors-coming-soon-container h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dunemotors-coming-soon-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.coming-soon-cta {
    margin-top: 30px;
}

/* Dune Motors Simple Page Styles */
.dunemotors-simple-section {
    padding: 150px 20px 100px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.dunemotors-simple-container h1 {
    font-size: 3.5rem;
    margin-bottom: 40px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dunemotors-image {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dunemotors-image img {
    width: 100%;
    height: auto;
    display: block;
}

.dunemotors-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: 30px;
}

/* Responsive styles for Dune Motors */
@media (max-width: 1024px) {
    .dunemotors-hero, .dunemotors-philosophy-container {
        flex-direction: column;
    }

    .dunemotors-hero-content, .dunemotors-philosophy-content {
        order: 1;
    }

    .dunemotors-hero-image, .dunemotors-philosophy-image {
        order: 0;
        margin-bottom: 30px;
    }

    .dunemotors-hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .dunemotors-hero-content h1 {
        font-size: 2.5rem;
    }

    .dunemotors-about-container h2,
    .dunemotors-projects-container h2,
    .dunemotors-coming-soon-container h2,
    .dunemotors-simple-container h1 {
        font-size: 2.5rem;
    }

    .dunemotors-philosophy-content h2 {
        font-size: 2rem;
    }

    .dunemotors-philosophy-points {
        grid-template-columns: 1fr;
    }

    .dunemotors-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .dunemotors-hero-content h1 {
        font-size: 2rem;
    }

    .dunemotors-tagline {
        font-size: 1.2rem;
    }

    .project-card {
        min-width: 100%;
    }

    .dunemotors-simple-container h1 {
        font-size: 2rem;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .studio-card, .studio-card.reverse, .auradynamics-preview, .aura-hero, .dunemotors-preview {
        flex-direction: column;
    }

    .studio-content, .auradynamics-content, .aura-hero-content, .dunemotors-content {
        order: 1;
    }

    .studio-image, .auradynamics-image, .aura-hero-image, .dunemotors-image {
        order: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        border-radius: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .game-series-header h1, .about-header h1 {
        font-size: 2.5rem;
    }

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

@media (max-width: 480px) {
    .navbar {
        width: 95%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .tagline, .subtitle {
        font-size: 1rem;
    }

    .studio-content h2, .auradynamics-content h2, .dunemotors-content h2 {
        font-size: 2rem;
    }

    .game-card, .about-card {
        padding: 20px;
    }
}

/* Animation for stars */
@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

.star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    animation: twinkle var(--duration, 3s) infinite var(--delay, 0s);
}

/* Animation for text */
.animate-text {
    animation: colorShift 8s infinite;
}

@keyframes colorShift {
    0%, 100% {
        background: linear-gradient(45deg, var(--primary), var(--accent));
        -webkit-background-clip: text;
        background-clip: text;
    }
    50% {
        background: linear-gradient(45deg, var(--accent), var(--primary));
        -webkit-background-clip: text;
        background-clip: text;
    }
}

/* Partners Page Styles */
.partners-section {
    padding: 150px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.partners-header {
    text-align: center;
    margin-bottom: 80px;
}

.partners-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partners-header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.partners-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.partner-card {
    display: flex;
    background-color: var(--card-bg-dark);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.light-theme .partner-card {
    background-color: var(--card-bg-light);
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-image {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

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

.partner-content {
    flex: 2;
    padding: 40px;
}

.partner-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.partner-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.partner-links {
    display: flex;
    gap: 20px;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: #5865F2;
    color: white;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.discord-btn:hover {
    background-color: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.discord-btn i {
    font-size: 1.2rem;
}

/* Responsive styles for Partners page */
@media (max-width: 1024px) {
    .partner-card {
        flex-direction: column;
    }

    .partner-image {
        max-width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .partners-header h1 {
        font-size: 2.5rem;
    }

    .partner-content h2 {
        font-size: 1.8rem;
    }

    .partner-content {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .partners-header h1 {
        font-size: 2rem;
    }

    .partner-image {
        height: 200px;
    }

    .partner-content {
        padding: 20px;
    }

    .partner-content h2 {
        font-size: 1.5rem;
    }
}
/* Hiring Section */
#hiring {
    padding: 60px 20px;
    background: linear-gradient(to right, #2c3e50, #4ca1af);
    color: white;
    text-align: center;
    border-radius: 15px;
    margin-top: 40px;
}

#hiring h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#hiring p {
    font-size: 1.2em;
}

#hiring ul {
    list-style: none;
    padding: 0;
    font-size: 1.1em;
    margin: 20px 0;
}

#hiring ul li {
    margin-bottom: 10px;
}

#hiring .apply-now-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff6f61;
    color: white;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.3s;
}

#hiring .apply-now-btn:hover {
    background-color: #e65a50;
}