@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #07070e;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-card: rgba(255, 255, 255, 0.07);
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --accent-teal: #00f2fe;
    --accent-purple: #9b51e0;
    --accent-pink: #ff007a;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    position: relative;
}

/* Background glowing blobs */
body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(155, 81, 224, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Navbar */
.navbar-brand {
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar {
    background: rgba(7, 7, 14, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-card);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px 0;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-purple) 50%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2rem auto;
    font-weight: 400;
}

/* Glassmorphism Platform Card */
.platform-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.platform-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 30px rgba(0, 242, 254, 0.05);
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-logo-wrapper {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 2;
}

.platform-logo-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.platform-card:hover .platform-logo-img {
    transform: scale(1.05);
}

.platform-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
}

.platform-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.platform-link {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
    position: relative;
    z-index: 2;
}

.platform-link:hover {
    color: #ffffff;
    gap: 12px;
}

/* Brand Ownership Section */
.ownership-banner {
    background: linear-gradient(90deg, rgba(0, 242, 254, 0.05) 0%, rgba(155, 81, 224, 0.05) 100%);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    margin-top: 5rem;
    position: relative;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-card);
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 3.5rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-email {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-teal);
    text-decoration: none;
    transition: all 0.3s ease;
    word-break: break-all;
}

.contact-email:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
}

/* Footer styling */
footer {
    border-top: 1px solid var(--border-card);
    padding: 3rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}
footer a:hover {
    color: #ffffff;
}

/* Badges */
.badge-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-card);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}
