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

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

/* Color Variables */
:root {
    --deep-space-navy: #0b0f2b;
    --galactic-purple: #6c00ff;
    --star-silver: #e0e0e0;
    --plasma-blue: #00f6ff;
    --rocket-red: #ff4d4d;
    --cosmic-glow: rgba(108, 0, 255, 0.3);
    --space-dark: #1a1f3a;
}

/* Animated Star Background */
.stars-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, #00f6ff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #6c00ff, transparent),
        radial-gradient(1px 1px at 130px 80px, #ff4d4d, transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.6), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: starField 20s linear infinite;
    z-index: -1;
}

@keyframes starField {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

/* Header Styles */
.cosmic-header {
    background: rgba(26, 31, 58, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--galactic-purple);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
}

.rocket {
    animation: rocketHover 2s ease-in-out infinite;
}

@keyframes rocketHover {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.logo-text {
    background: linear-gradient(45deg, var(--plasma-blue), var(--galactic-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--star-silver);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--plasma-blue);
    text-shadow: 0 0 10px var(--plasma-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--plasma-blue);
    transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--star-silver);
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--star-silver), var(--plasma-blue), var(--galactic-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 246, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 30px rgba(108, 0, 255, 0.8)); }
}

.highlight {
    color: var(--rocket-red);
    text-shadow: 0 0 20px var(--rocket-red);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--star-silver);
    opacity: 0.9;
}

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

/* Floating Planets */
.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-planet {
    position: absolute;
    border-radius: 50%;
    animation: floatOrbit 20s linear infinite;
}

.planet-1 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--galactic-purple), #4a0080);
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.planet-2 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--plasma-blue), #0080b3);
    bottom: 30%;
    left: 10%;
    animation-delay: -10s;
}

.planet-3 {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--rocket-red), #cc0000);
    top: 60%;
    right: 20%;
    animation-delay: -15s;
}

@keyframes floatOrbit {
    0% {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--galactic-purple), var(--plasma-blue));
    color: white;
    box-shadow: 0 5px 20px rgba(108, 0, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--star-silver);
    border: 2px solid var(--galactic-purple);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 0, 255, 0.6);
}

.warp-button {
    position: relative;
}

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

.warp-button:hover::before {
    left: 100%;
}

/* Section Styles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--plasma-blue), var(--galactic-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--star-silver);
    opacity: 0.8;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8), rgba(11, 15, 43, 0.9));
}

.about-text {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--star-silver);
    line-height: 1.8;
}

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

.feature-card {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid var(--galactic-purple);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.zero-gravity {
    animation: zeroGravity 6s ease-in-out infinite;
}

.zero-gravity:nth-child(even) {
    animation-delay: -3s;
}

@keyframes zeroGravity {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 0, 255, 0.3);
    border-color: var(--plasma-blue);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--plasma-blue);
}

/* Games Section */
.games-section {
    padding: 6rem 0;
    background: var(--deep-space-navy);
}

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

.game-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    background: rgba(11, 15, 43, 0.8);
}

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

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

.game-card {
    background: rgba(11, 15, 43, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--galactic-purple);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.1);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
    border-color: var(--cosmic-blue);
}

.game-preview {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.game-card:hover .game-preview {
    transform: scale(1.1);
}

/* Game Preview Backgrounds */
.nebula-bg {
    background: linear-gradient(45deg, #6c00ff, #00f6ff, #9400ff);
    background-size: 400% 400%;
    animation: nebulaPulse 8s ease-in-out infinite;
}

.poker-bg {
    background: linear-gradient(135deg, #ff4d4d, #6c00ff, #00f6ff);
    background-size: 400% 400%;
    animation: pokerstars 6s ease-in-out infinite;
}

.meteor-bg {
    background: radial-gradient(circle, #ff4d4d, #ff8c00, #ffff00);
    background-size: 400% 400%;
    animation: meteorfall 7s ease-in-out infinite;
}

.clash-bg {
    background: linear-gradient(90deg, #6c00ff, #ff4d4d, #00f6ff);
    background-size: 400% 400%;
    animation: battlePulse 5s ease-in-out infinite;
}

.quiz-bg {
    background: conic-gradient(#00f6ff, #6c00ff, #ff4d4d, #00f6ff);
    animation: quizSpin 10s linear infinite;
}

.dice-bg {
    background: linear-gradient(45deg, #ffff00, #ff4d4d, #6c00ff, #00f6ff);
    background-size: 400% 400%;
    animation: diceRoll 4s ease-in-out infinite;
}

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

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

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

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

@keyframes quizSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes diceRoll {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 0%; }
    75% { background-position: 100% 100%; }
}

.game-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.game-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--plasma-blue);
}

.game-info p {
    margin-bottom: 1.5rem;
    color: var(--star-silver);
    opacity: 0.9;
}

.btn-game {
    background: linear-gradient(45deg, var(--rocket-red), var(--galactic-purple));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.3);
}

.btn-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 77, 77, 0.5);
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 4rem 0;
    background: rgba(26, 31, 58, 0.5);
}

.disclaimer-card {
    background: rgba(11, 15, 43, 0.8);
    border: 2px solid var(--galactic-purple);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(108, 0, 255, 0.2);
}

.disclaimer-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--plasma-blue);
}

/* Footer */
.cosmic-footer {
    background: rgba(11, 15, 43, 0.95);
    border-top: 1px solid var(--galactic-purple);
    padding: 3rem 0 1rem;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--plasma-blue);
}

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

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

.footer-section ul li a {
    color: var(--star-silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--plasma-blue);
    text-shadow: 0 0 5px var(--plasma-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(108, 0, 255, 0.3);
    color: var(--star-silver);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .game-card {
        margin: 0 0.5rem;
    }
}

/* Additional Game Page Styles */
.game-header {
    padding: 4rem 0 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.9), rgba(11, 15, 43, 0.8));
}

.game-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--plasma-blue), var(--galactic-purple), var(--rocket-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gameGlow 2s ease-in-out infinite;
}

@keyframes gameGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(0, 246, 255, 0.6)); 
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 30px rgba(108, 0, 255, 0.8)); 
        transform: scale(1.02);
    }
}

.game-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--star-silver);
    line-height: 1.8;
}

.game-content {
    padding: 4rem 0;
    background: var(--deep-space-navy);
}

.game-preview-large {
    height: 400px;
    background: linear-gradient(45deg, var(--galactic-purple), var(--plasma-blue));
    border-radius: 20px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.game-preview-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: previewShine 3s ease-in-out infinite;
}

@keyframes previewShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

.feature-item {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid var(--galactic-purple);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.feature-item h4 {
    font-family: 'Orbitron', monospace;
    color: var(--plasma-blue);
    margin-bottom: 0.5rem;
}

.game-story {
    background: rgba(26, 31, 58, 0.8);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid var(--galactic-purple);
}

.story-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--plasma-blue);
    margin-bottom: 1rem;
}

/* Contact Form Styles */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8), rgba(11, 15, 43, 0.9));
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid var(--galactic-purple);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--plasma-blue);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(11, 15, 43, 0.8);
    border: 1px solid var(--galactic-purple);
    border-radius: 10px;
    color: var(--star-silver);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--plasma-blue);
    box-shadow: 0 0 15px rgba(0, 246, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(224, 224, 224, 0.5);
}

.stardust-input {
    position: relative;
}

.stardust-input::before {
    content: '✨';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stardust-input input:focus + ::before {
    opacity: 1;
    animation: stardustSparkle 1s ease-in-out infinite;
}

@keyframes stardustSparkle {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.2); }
}

/* Policy Pages */
.policy-section {
    padding: 4rem 0;
    background: var(--deep-space-navy);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 31, 58, 0.8);
    border: 1px solid var(--galactic-purple);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.policy-content h2 {
    font-family: 'Orbitron', monospace;
    color: var(--plasma-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.policy-content h3 {
    font-family: 'Orbitron', monospace;
    color: var(--galactic-purple);
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.policy-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--star-silver);
}

.policy-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    color: var(--star-silver);
}

/* Hologram Effect for Policy Cards */
.hologram-card {
    position: relative;
    background: linear-gradient(45deg, rgba(26, 31, 58, 0.8), rgba(11, 15, 43, 0.6));
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 20px;
    backdrop-filter: blur(15px);
}

.hologram-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, var(--plasma-blue), var(--galactic-purple), var(--rocket-red));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: hologramShimmer 3s linear infinite;
}

@keyframes hologramShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Back to Games Button */
.back-to-games {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--plasma-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-to-games:hover {
    color: var(--galactic-purple);
    transform: translateX(-5px);
}

.back-to-games::before {
    content: '←';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.back-to-games:hover::before {
    transform: translateX(-3px);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 246, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--plasma-blue);
    animation: spin 1s ease-in-out infinite;
}

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

/* Utility Classes */
.text-center { text-align: center; }
.text-glow { text-shadow: 0 0 10px currentColor; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo-link:hover {
    text-decoration: none;
    color: inherit;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--galactic-purple), var(--cosmic-blue));
    color: var(--star-silver);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--galactic-purple);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
    background: linear-gradient(135deg, var(--cosmic-blue), var(--galactic-purple));
    color: var(--star-silver);
    text-decoration: none;
}

.cta-button:active {
    transform: translateY(1px);
}