* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #0b1329;
    color: #ffffff;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(11, 19, 41, 0.8);
    backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: #60a5fa;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: #cbd5e1;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 400;
    font-size: 0.95rem;
    transition: 0.3s;
}

nav a:hover {
    color: #ffffff;
}

.btn-discord {
    background: #5865F2;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-discord:hover {
    background: #4752C4;
}

.btn-nav {
    background: #ffffff;
    color: #0b1329 !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-nav:hover {
    background: #e2e8f0;
}

/* Hero Section with ProjectReal Blurred Blue Gradient Background */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
    overflow: hidden;
}

.projectreal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #172554;
    z-index: -3;
    overflow: hidden;
}

.blur-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(30, 58, 138, 0.7);
    top: -10%;
    left: 20%;
    animation: floatBlob1 12s ease-in-out infinite alternate;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: rgba(59, 130, 246, 0.4);
    bottom: -10px;
    right: 20%;
    animation: floatBlob2 15s ease-in-out infinite alternate;
}

@keyframes floatBlob1 {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(40px) scale(1.1); }
}

@keyframes floatBlob2 {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-50px) scale(1.05); }
}

.tech-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(147, 197, 253, 0.15) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.6;
    z-index: -1;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.15rem;
    color: #93c5fd;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary {
    background: #ffffff;
    color: #0b1329;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: #f1f5f9;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.full-width {
    width: 100%;
}

/* Sections */
.section {
    padding: 100px 50px;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    color: #94a3b8;
    margin-bottom: 50px;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid rgba(96, 165, 250, 0.15);
    background: #111c38;
}

.portfolio-item img {
    width: 100%;
    display: block;
    transition: 0.5s;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Pricing */
.bg-light {
    background: #090f22;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: #111c38;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(96, 165, 250, 0.15);
    text-align: left;
}

.pricing-card.popular {
    border-color: #60a5fa;
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.15);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #60a5fa;
    color: #0b1329;
    padding: 4px 12px;
    font-size: 0.75rem;
    border-radius: 20px;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    color: #94a3b8;
}

.pricing-card ul li {
    margin-bottom: 10px;
}

.btn-card {
    display: block;
    text-align: center;
    background: #1e293b;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

.btn-card:hover {
    background: #60a5fa;
    color: #0b1329;
}

/* Checkout Form */
.checkout-container {
    max-width: 500px;
    margin: 0 auto;
    background: #111c38;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.15);
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.form-group input {
    width: 100%;
    padding: 14px;
    background: #0b1329;
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #60a5fa;
}

.status-output {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    font-size: 0.95rem;
    display: none;
}

.status-output.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    color: #34d399;
    display: block;
}

.status-output.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #f87171;
    display: block;
}

/* Modal Warning */
.security-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.security-alert.hidden {
    display: none;
}

.alert-content {
    background: #111c38;
    border: 2px solid #ef4444;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    text-align: center;
}

.alert-content h3 {
    color: #ef4444;
    margin-bottom: 15px;
}

.alert-content p {
    color: #94a3b8;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.alert-content button {
    background: #ef4444;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

/* Footer */
footer {
    padding: 30px;
    text-align: center;
    background: #060a18;
    color: #64748b;
    font-size: 0.9rem;
    border-top: 1px solid rgba(96, 165, 250, 0.1);
}