@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;600;700&display=swap');

*, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #6a00ff;
    --secondary-purple: #9900cc;
    --accent-magenta: #ff00aa;
    --dark-bg: #0a0015;
    --card-bg: rgba(16, 0, 32, 0.8);
    --main-card-bg: rgba(0, 0, 0, 0.6);
    --glow-colour: rgba(106, 0, 255, 0.5);
    --text-primary: #ffffff;
    --text-secondary: #b8b8ff;

    --owner-colour: #ffd700;
    --admin-colour: #ff6b6b;
    --mod-colour: #4ecdc4;
    --helper-colour: #45b7d1;

    --success-colour: linear-gradient(90deg, #00c853, #b2ff59);
    --warning-colour: linear-gradient(90deg, #ff9800, #ffcc80);
    --error-colour: linear-gradient(90deg, #d50000, #ff8a80);
}

html {
    scroll-behavior: smooth;
    background: var(--dark-bg);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

#content {
    padding-top: 100px;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Animated Background */
.portal-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: 
        radial-gradient(circle at 20% 80%, rgba(106, 0, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 170, 0.3) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite alternate;
}

.portal-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #6a00ff, #ff00aa);
    border-radius: 50%;
    animation: floatParticle 15s linear infinite;
    opacity: 0;
    box-shadow: 0 0 10px currentColor;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 0, 21, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(106, 0, 255, 0.3);
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(10, 0, 21, 0.98);
    box-shadow: 0 4px 20px rgba(106, 0, 255, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: none;
    background: linear-gradient(45deg, #6a00ff, #ff00aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.navlinks {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navlinks a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.navlinks a:hover {
    color: var(--text-primary);
    background: rgba(106, 0, 255, 0.1);
    box-shadow: 0 0 20px rgba(106, 0, 255, 0.3);
}

.navlinks a:hover, .navlinks a.active {
    color: var(--text-primary);
    background: rgba(106, 0, 255, 0.1);
    box-shadow: 0 0 20px rgba(106, 0, 255, 0.3);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Home Hero Section */
.home-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
}

.home-hero-content {
    max-width: 800px;
    z-index: 10;
}

.home-hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #6a00ff, #ff00aa, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.home-hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.home-hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;    
}

.server-info {
    background: var(--card-bg);
    border: 2px solid rgba(106, 0, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(106, 0, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
    text-align: center;
}

.server-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(106, 0, 255, 0.4);
    border-color: rgba(106, 0, 255, 0.6);
}

.server-ip {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-magenta);
    margin-bottom: 0.5rem;
}

.server-ports {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.copy-hint {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Image Slideshow */
.slideshow-container {
    max-width: 70vw;
    margin: 4rem auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.slides {
    display: none;
    position: relative;
}

.slides.active {
    display: block;
    animation: slideIn 0.5s ease;
}

.slideshow-image {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.slide-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.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: var(--accent-magenta);
    box-shadow: 0 0 20px var(--accent-magenta);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #6a00ff, #ff00aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #6a00ff, #ff00aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.card {
    background-color: var(--main-card-bg);
    box-shadow: 0 0 8px rgba(181, 0, 236, 0.1);
    border: 2px solid rgba(181, 0, 236, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(106, 0, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(106, 0, 255, 0.5);
    box-shadow: 0 20px 60px rgba(106, 0, 255, 0.3);
}

.card-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--accent-magenta);
}

.card-info {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.more-info {
    color: var(--accent-magenta);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Why Play Section */
.why-play {
    background: linear-gradient(135deg, rgba(106, 0, 255, 0.3), rgba(255, 0, 170, 0.3));
    border-radius: 30px;
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
}

.why-play-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.why-play-card {
    background: rgba(16, 0, 32, 0.6);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(106, 0, 255, 0.3);
}

.why-play-text {
    background: linear-gradient(45deg, rgba(106, 0, 255, 0.2), rgba(255, 0, 170, 0.2));
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    border: 2px solid rgba(106, 0, 255, 0.4);
}




/*Buttons*/
.btn {
    margin-top: 5px;
    width: 180px;
    height: 60px;
    cursor: pointer;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 5px;
    outline: none;
    position: relative;
    overflow: hidden;
    transition: 1s ease-in-out;
    transform: translate(0%, 0%);
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}
  
.btn:hover {
    transform: scale(1.05); /* Pop-out effect */
    background: rgba(0, 0, 0, 0.3);
}

.btn-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

/*connect*/
.secondary-card {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(181, 0, 236, 0.2); /* Subtle outline */
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 8px rgba(181, 0, 236, 0.1); /* Faint outer glow */
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/*status*/
.status-card {
    margin-top: 2%;
    display: flex;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 8px rgba(181, 0, 236, 0.1);
    border-radius: 10px;
    padding: 12px;
    flex-direction: column;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    color: rgb(255, 255, 255);
}

.status-img {
    max-height: 5rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.status-title {
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.status-subtitle {
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.status-mini-card {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    border-width: 1px;
    border-color: rgb(209, 213, 219)
}

.status-text {
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.status-status {
    display: flex;
    align-items: center;
}

.status-green {
    width: 0.625rem;
    height: 0.625rem;
    background-color: rgb(34, 197, 94);
    border-radius: 9999px;
    margin-inline-end: 0.375rem;
}

.status-red {
    width: 0.625rem;
    height: 0.625rem;
    background-color: rgb(216, 15, 15);
    border-radius: 9999px;
    margin-inline-end: 0.375rem;
}

/*Footer*/
footer {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem 2rem 1rem;
    border-top: 1px solid rgba(106, 0, 255, 0.3);
    margin-top: 4rem;
    text-align: center;
}

footer img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.footer-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #6a00ff, #ff00aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: var(--accent-magenta);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footerlinks a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footerlinks a:hover {
    color: var(--text-primary);
}

.social-links {
    display: flex;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.copyright-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(106, 0, 255, 0.2);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Other Pages */
/* Hero section */
.hero {
    text-align: center;
    margin-bottom: 4rem;
    background: var(--card-bg);
    border: 2px solid rgba(106, 0, 255, 0.3);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(106, 0, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #6a00ff, #ff00aa, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Main Section Stuff */
.main-section {
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.main-section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.main-section-title.owners {
    color: var(--owner-colour);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.main-section-title.managers {
    color: var(--secondary-purple);
    text-shadow: 0 0 20px rgba(153, 0, 204, 0.5);
}

.main-section-title.admins {
    color: var(--admin-colour);
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.main-section-title.moderators {
    color: var(--mod-colour);
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

.main-section-title.helpers {
    color: var(--helper-colour);
    text-shadow: 0 0 20px rgba(69, 183, 209, 0.5);
}

.section-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-purple), var(--accent-magenta));
    margin: 1rem auto;
    border-radius: 2px;
}

/* Cards Grid */
.main-cards {
    display: grid;
    align-items: flex-start;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.main-card {
    background: var(--card-bg);
    border: 2px solid rgba(106, 0, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(106, 0, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.main-card:hover::before {
    left: 100%;
}

.main-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(106, 0, 255, 0.6);
    box-shadow: 0 20px 60px rgba(106, 0, 255, 0.3);
}

/* Stuff in cards */
.main-card-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid rgba(106, 0, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(106, 0, 255, 0.2);
}

.main-card:hover .main-card-avatar {
    border-color: rgba(106, 0, 255, 0.8);
    box-shadow: 0 0 40px rgba(106, 0, 255, 0.5);
    transform: scale(1.05);
}

.main-card-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.main-card-subtitle {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.owners .main-card-subtitle { color: var(--owner-color); }
.managers .main-card-subtitle { color: var(--secondary-purple); }
.admins .main-card-subtitle { color: var(--admin-color); }
.moderators .main-card-subtitle { color: var(--mod-color); }
.helpers .main-card-subtitle { color: var(--helper-color); }

.status {
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}
/* Success / Live */
.status.success,
.status.live,
.status-online {
  background: var(--success-colour);
  color: #061a0a;
}

/* In Development / Warning */
.status.dev,
.status.warning,
.status-maint {
  background: var(--warning-colour);
  color: #1a0f00;
}

/* Error / Deprecated */
.status.error,
.status.deprecated,
.status-offline {
  background: var(--error-colour);
  color: #1a0000;
}

.apply-btn {
    cursor: pointer;
}

.expand-btn {
    background: linear-gradient(45deg, var(--primary-purple), var(--accent-magenta));
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.expand-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.expand-btn:hover::before {
    left: 100%;
}

.expand-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(106, 0, 255, 0.4);
}

.staff-bio {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 0;
    margin-top: 1rem;
}

.staff-bio.expanded {
    max-height: 300px;
    padding: 1.5rem;
}

.staff-bio p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Gamemode Pages */
.gamemode-container {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 2rem;
    padding: 2rem;
}

.gamemode-sidebar {
    width: 15vw;
    background-color: var(--main-card-bg);
    box-shadow: 0 0 8px rgba(181, 0, 236, 0.1);
    border: 2px solid rgba(181, 0, 236, 0.2);
    padding: 1rem;
    border-radius: 12px;
}

.sidebar-title {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    background: linear-gradient(45deg, #6a00ff, #ff00aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gamemode-sidebar ul {
    list-style: none;
}

.sidebar-link {
    position: relative;
    color: var(--text-secondary);
    display: block;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    overflow: hidden;
}

.sidebar-link::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, var(--primary-purple), var(--accent-magenta));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    border-radius: inherit;
}

.sidebar-link:hover::before {
    opacity: 1;
}

.sidebar-link:hover {
    color: white;
}

.sidebar-link.active {
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, var(--primary-purple), var(--accent-magenta));
}

/* Gamemode page content */
.gamemode-content {
    width: 70vw;
    background-color: var(--main-card-bg);
    box-shadow: 0 0 8px rgba(181, 0, 236, 0.1);
    border: 2px solid rgba(181, 0, 236, 0.2);
    padding: 2rem;
    border-radius: 12px;
}

.gamemode-section {
    text-align: center;
    margin-bottom: 2rem;
}

.gamemode-section img {
    max-width: 80%;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.gamemode-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.gamemode-card {
    text-align: center;
    border-radius: 10px;
    padding: 1.5rem;
    background: linear-gradient(45deg, rgba(106, 0, 255, 0.2), rgba(255, 0, 170, 0.2));
    border-radius: 15px;
    border: 1px solid rgba(106, 0, 255, 0.3);
}

.gamemode-content .server-info {
    animation: none;
    opacity: 100;
}

.application-form {
    width: 70vw;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--main-card-bg);
    background: none;
    box-shadow: 0 0 8px rgba(181, 0, 236, 0.1);
    border: 2px solid rgba(181, 0, 236, 0.2);
    border-radius: 12px;
}

.toast {
    transition: right 0.5s ease-in-out, top 0.5s ease-in-out;
    color: rgba(107, 114, 128, 1);
    padding: 1rem;
    background-color: rgb(0, 0, 0);
    border-radius: .5rem;
    align-items: center;
    max-width: 20rem;
    width: 100%;
    margin-bottom: 1rem;
}

.toast.success {box-shadow: 0 2px 5px #2BB673;}
.toast.danger {box-shadow: 0 2px 5px #b62b2b;}
.toast.warning {box-shadow: 0 2px 5px #b6832b;}

.toast-button {
    color: rgba(156, 163, 175, 1);
    padding: .375rem;
    background-color: black;
    border: none;
    border-radius: .5rem;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    margin-left: auto;
    cursor: pointer;
    transition: box-shadow 0.3s ease, border 0.3s ease;
}

.toast-button.success:hover {
    box-shadow: 0 0 8px 2px rgba(43, 182, 115, 0.7);
}

.toast-button.danger:hover {
    box-shadow: 0 0 8px 2px rgba(182, 43, 43, 0.7);
}

.toast-button.warning:hover {
    box-shadow: 0 0 8px 2px rgba(182, 138, 43, 0.7);
}


/* Animations */
@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translate(100px, 200px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(200px, 400px) scale(0.5);
    }
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(106, 0, 255, 0.5)); }
    100% { filter: drop-shadow(0 0 40px rgba(255, 0, 170, 0.7)); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes backgroundPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navlinks {
        display: none;
        position: fixed;
        top: 70px;
        right: 0;
        width: 100%;
        background: rgba(10, 0, 21, 0.98);
        flex-direction: column;
        padding: 2rem;
        backdrop-filter: blur(20px);
    }

    .navlinks.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .home-hero {
        padding: 0 1rem;
    }

    .features {
        padding: 4rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .why-play {
        margin: 2rem 1rem;
        padding: 2rem 1rem;
    }

    .slideshow-container {
        margin: 2rem 1rem;
    }

    .slideshow-image {
        height: 250px;
    }
}
