@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

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

html, body {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #e5e7eb;
}

/* BACKGROUND */
body {
    background: radial-gradient(circle at 20% 20%, #1e293b, #020617);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.02),
        rgba(255,255,255,0.02) 2px,
        transparent 2px,
        transparent 30px
    );
    animation: move 30s linear infinite;
    z-index: 0;
}

@keyframes move {
    from { transform: translate(0,0); }
    to { transform: translate(-80px,-80px); }
}

/* MAIN CONTENT WRAPPER */
.content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: auto;
    padding: 30px 20px;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 30px;
}

.navbar a {
    color: #9ca3af;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.2s;
}

.navbar a:hover {
    color: white;
}

/* LOGO */
#logo {
    width: 100px;
    display: block;
    margin: 0 auto 10px;
}

/* HERO */
h1 {
    text-align: center;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #22c55e;
}

h2 {
    font-size: 26px;
    margin: 40px 0 15px;
    font-weight: 500;
}

h3 {
    font-size: 20px;
    margin-top: 30px;
}

/* TEXT */
p {
    font-size: 15px;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 15px;
}

/* LINKS */
a {
    color: #facc15;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* CARD (IMPORTANT UPGRADE) */
.card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
}

/* BUTTON */
button, .myButton {
    background: #22c55e;
    border: none;
    border-radius: 8px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 500;
    color: white;
    cursor: pointer;
    transition: 0.2s ease;
}

button:hover, .myButton:hover {
    background: #16a34a;
    transform: translateY(-1px);
}

/* TABLE */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table th {
    text-align: left;
    padding: 12px;
    font-weight: 500;
    color: #9ca3af;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
}

/* FOOTER */
#footer {
    text-align: center;
    margin-top: 50px;
    color: #6b7280;
}

/* SOCIAL BAR */
.sticky-social-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
}

.sticky-social-bar button {
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 13px;
}

/* UTILITIES */
.center {
    text-align: center;
}