
/*
Theme Name: Photon Nodes Premium
Author: OpenAI
Version: 2.0
*/

:root{
--bg:#050816;
--card:#0f172a;
--purple:#8b5cf6;
--blue:#3b82f6;
--text:#ffffff;
--muted:#b7c0db;
--border:rgba(255,255,255,.08);
--gradient:linear-gradient(135deg,#8b5cf6,#3b82f6);
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Inter,Arial,sans-serif;
background:var(--bg);
color:var(--text);
overflow-x:hidden;
}

.container{
width:92%;
max-width:1280px;
margin:auto;
}

header{
position:sticky;
top:0;
z-index:999;
backdrop-filter:blur(14px);
background:rgba(5,8,22,.88);
border-bottom:1px solid var(--border);
}

.navbar{
display:flex;
align-items:center;
justify-content:space-between;
padding:18px 0;
}

.logo{
display:flex;
align-items:center;
gap:14px;
text-decoration:none;
color:white;
font-size:1.2rem;
font-weight:700;
}

.logo img{
width:52px;
height:52px;
object-fit:contain;
border-radius:12px;
}

.nav-links{
display:flex;
align-items:center;
gap:28px;
}

.nav-links a{
text-decoration:none;
color:white;
font-weight:600;
transition:.25s;
}

.nav-links a:hover{
color:#9b87f5;
}

.discord-btn{
padding:13px 22px;
border-radius:14px;
background:var(--gradient);
color:white;
text-decoration:none;
font-weight:700;
box-shadow:0 8px 24px rgba(139,92,246,.35);
}

.hero{
padding:140px 0 100px;
position:relative;
}

.hero::before{
content:'';
position:absolute;
width:600px;
height:600px;
background:radial-gradient(circle,rgba(139,92,246,.25),transparent 70%);
top:-200px;
right:-100px;
filter:blur(20px);
}

.hero-grid{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:60px;
align-items:center;
}

.hero h1{
font-size:4.3rem;
line-height:1.05;
margin-bottom:24px;
font-weight:800;
}

.gradient{
background:var(--gradient);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero p{
font-size:1.15rem;
line-height:1.8;
color:var(--muted);
margin-bottom:34px;
max-width:640px;
}

.buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
}

.btn{
padding:15px 26px;
border-radius:14px;
text-decoration:none;
font-weight:700;
transition:.25s;
}

.primary{
background:var(--gradient);
color:white;
}

.secondary{
border:1px solid var(--border);
background:rgba(255,255,255,.04);
color:white;
}

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

.hero-card{
background:rgba(15,23,42,.92);
border:1px solid var(--border);
border-radius:28px;
padding:30px;
box-shadow:0 12px 40px rgba(0,0,0,.45);
}

.hero-card img{
width:100%;
border-radius:24px;
}

section{
padding:90px 0;
}

.section-title{
font-size:2.5rem;
margin-bottom:20px;
text-align:center;
}

.section-sub{
text-align:center;
max-width:720px;
margin:0 auto 50px;
color:var(--muted);
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:28px;
}

.card{
background:rgba(15,23,42,.92);
padding:32px;
border-radius:24px;
border:1px solid var(--border);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
border-color:rgba(139,92,246,.5);
}

.card h3{
margin-bottom:14px;
font-size:1.3rem;
}

.card p{
color:var(--muted);
line-height:1.7;
}

footer{
padding:50px 0;
border-top:1px solid var(--border);
text-align:center;
color:var(--muted);
margin-top:80px;
}

.mobile-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

@media(max-width:900px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

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

.hero p{
margin-left:auto;
margin-right:auto;
}

.buttons{
justify-content:center;
}

.nav-links{
display:none;
position:absolute;
top:88px;
left:0;
right:0;
background:#08101f;
padding:30px;
flex-direction:column;
border-bottom:1px solid var(--border);
}

.nav-links.active{
display:flex;
}

.mobile-toggle{
display:block;
}
}
