:root {
    --primary: #9d00ff; 
    --secondary: #00d4ff;
    --bg-dark: #0a0a12;
    --bg-card: #161625;
    --text-light: #e0e0e0;
    --gradient: linear-reference(90deg, var(--primary), var(--secondary));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}


header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 18, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
}

nav a:hover {
    color: var(--secondary);
}

.btn-discord {
    background: #5865F2;
    padding: 10px 25px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-discord:hover {
    transform: scale(1.05);
    background: #4752c4;
}


.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://w.wallhaven.cc/full/wq/wallhaven-wq8gpx.jpg'); 
    background-size: cover;
    background-position: center;
    padding: 20px;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px 20px rgba(157, 0, 255, 0.5);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
    color: #ccc;
}

.ip-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: 10px;
    border: 1px solid var(--secondary);
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(5px);
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.ip-box:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 15px var(--secondary);
}

.ip-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.copy-hint {
    font-size: 0.8rem;
    color: var(--secondary);
}


.section {
    padding: 80px 10%;
}

.section-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--primary);
    margin: 10px auto;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.feature-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}


.commands-container {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th, td {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

th {
    background: rgba(157, 0, 255, 0.1);
    color: var(--secondary);
    font-family: 'Orbitron', sans-serif;
}

.cmd {
    background: rgba(0,0,0,0.3);
    padding: 5px 10px;
    border-radius: 5px;
    font-family: monospace;
    color: #ff7b00;
    border: 1px solid rgba(255, 123, 0, 0.3);
}


.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.info-image img {
    width: 100%;
    border-radius: 15px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.4);
}
.info-text ul {
    list-style: none;
    margin-top: 20px;
}

.info-text li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.info-text i {
    color: var(--primary);
}

.platform-badge {
    display: inline-block;
    background: linear-gradient(45deg, #1e90ff, #00bfff);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 10px;
}

.platform-badge.android {
    background: linear-gradient(45deg, #a4c639, #76c043);
}

/* --- Footer --- */
footer {
    background: #050508;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer p {
    color: #666;
    font-size: 0.9rem;
}


@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    nav ul { display: none; }
    .info-grid { grid-template-columns: 1fr; }
    header { padding: 15px 20px; }
}


#toast {
    visibility: hidden;
    min-width: 250px;
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 1001;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.4);
}

#toast.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}