.glossy-text-wrapper {
    max-width: 80%;
    margin: 0 auto;
    padding: 1rem;
    background: #111184;
    border-radius: 1rem;
    perspective: 500px;
    border: .5px solid #2D2D2D;
    box-sizing: border-box;
}

.glossy-text {
    font-family: Arial, sans-serif;
    font-size: 3rem;
    font-weight: 900;
    position: relative;
    color: transparent;
    letter-spacing: -1px;
    transform-style: preserve-3d;
    text-align: center;
    text-transform: lowercase;
}

.logo-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
}

.footer-company-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
}

.glossy-text::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        #d3d3d3 0%,
        #a9a9a9 20%,
        #696969 40%,
        #a9a9a9 80%,
        #d3d3d3 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

.glossy-text::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 10%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.4) 90%,
        transparent 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    transform: translateZ(1px);
    animation: shine 3s infinite;
    filter: brightness(1.5) contrast(1.5);
}

@keyframes shine {
    from {
        transform: translateX(-100%) translateZ(1px);
    }
    to {
        transform: translateX(100%) translateZ(1px);
    }
}

/* Add reflection effect */
.glossy-text-wrapper::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    transform: rotateX(180deg) scaleY(0.3);
    filter: blur(2px);
}

/* Add ambient light effect */
.glossy-text::before {
    text-shadow: 
        0 0 10px rgba(255,255,255,0.2),
        0 0 20px rgba(255,255,255,0.1),
        0 0 30px rgba(255,255,255,0.05);
}

.type-condensed {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 0.34em;
  font-weight: 400;
  letter-spacing: 0.01em;
}

:root {
    --bg-primary: #111184;
    --bg-card: #3C3CE8;
    --text-primary: #FFFFFF;
    --text-secondary: #8A8F98;
    --button-bg: #FFFFFF;
    --button-text: #000000;
    --nav-bg: rgba(17, 17, 132, 0.8);
    --border-color: #2D2D2D;
    --hover-card: #3333cc;
}

body {
    background: var(--bg-primary);
    min-height: 100vh;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Video styles */
video {
    object-fit: cover;
    opacity: 1 !important;
    background-color: #111184;
    z-index: 1;
}

/* Hero section styles */
.hero-text {
    z-index: 2;
}

/* Ensure text is above video */
.text-center.md\:text-left {
    z-index: 2;
    position: relative;
}

/* Cube Animation Styles */
.cube-container {
    perspective: 1000px;
}

.cube {
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    animation: rotate 20s infinite linear;
}

.face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #3C3CE8;
    border: 1px solid #2D2D2D;
}

.front  { transform: translateZ(100px); }
.back   { transform: rotateY(180deg) translateZ(100px); }
.right  { transform: rotateY(90deg) translateZ(100px); }
.left   { transform: rotateY(-90deg) translateZ(100px); }
.top    { transform: rotateX(90deg) translateZ(100px); }
.bottom { transform: rotateX(-90deg) translateZ(100px); }

@keyframes rotate {
    from { transform: rotateX(0deg) rotateY(0deg); }
    to { transform: rotateX(360deg) rotateY(360deg); }
}

.floating-nav {
    background: var(--nav-bg);
    border: 1px solid #2D2D2D;
    backdrop-filter: blur(8px);
}

.themed-button {
    background: #FFFFFF;
    color: #000000;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.themed-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.card-gradient {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.card-gradient:hover {
    background: var(--hover-card);
}

.announcement-banner {
    background: linear-gradient(90deg, #FF3366, #CB5EEE);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-text {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.feature-card {
    padding: 1rem;
    background: #3C3CE8;
    border: 1px solid #2D2D2D;
    border-radius: 1rem;
    text-align: center;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.feature-card:hover {
    background: #1A1A1A;
    transform: translateY(-2px);
}

/* Smooth transitions */
* {
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hidden {
    display: none;
}

.full-content {
    margin-top: 1rem;
}

#particles-js {
    pointer-events: auto;
    z-index: 10;
}

.tpo-feature-card {
    background: #2323a3;
    border: 1px solid #2D2D2D;
    border-radius: 1rem;
    text-align: center;
    box-sizing: border-box;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(31,38,135,0.10);
}
.tpo-feature-card:hover {
    background: #111184;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 24px rgba(31,38,135,0.18);
} 