* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: relative;
    z-index: 100;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: brightness(1.1);
}

.brand-name {
    flex: 1;
    text-align: center;
}

.brand-name h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #64b5f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.language-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4px;
    gap: 4px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.lang-btn.active {
    background: rgba(100, 181, 246, 0.8);
    color: #ffffff;
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #64b5f6;
}

.icon-link svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.icon-link:hover svg {
    transform: scale(1.1);
}

/* Main Content Styles */
.main {
    padding: 80px 0;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
}

.hero-section {
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

/* Left Section */
.hero-left {
    display: none;
}

/* Center Section - Tablet Showcase */
.hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tablet-showcase {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.tablet-showcase:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) scale(1.05);
}

.tablet-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Right Section */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-right: 20px;
}

.product-info {
    text-align: left;
}

.product-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #64b5f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #b0bec5;
    margin-bottom: 32px;
    line-height: 1.4;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.tag {
    background: rgba(100, 181, 246, 0.2);
    color: #64b5f6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(100, 181, 246, 0.3);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(100, 181, 246, 0.3);
    transform: translateY(-2px);
}

.tag.coming-soon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 107, 53, 0.5);
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.tag.coming-soon:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 53, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }
}

/* Button Styles */
.product-actions,
.product-actions-right {
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.btn-primary {
    background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(100, 181, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(100, 181, 246, 0.4);
    background: linear-gradient(135deg, #42a5f5 0%, #2196f3 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

/* Apps Section */
.apps-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.apps-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.apps-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #64b5f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.apps-subtitle {
    font-size: 18px;
    color: #b0bec5;
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.app-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.app-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(100, 181, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.app-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(100, 181, 246, 0.1);
}

.app-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.app-name {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.app-description {
    font-size: 14px;
    color: #b0bec5;
    line-height: 1.5;
}

/* Partnership Section */
.partnership-section {
    padding: 80px 0;
}

.partnership-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.partnership-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #64b5f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partnership-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: #64b5f6;
    margin-bottom: 60px;
    text-shadow: 0 2px 10px rgba(100, 181, 246, 0.3);
}

.partnership-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.logo-left, .logo-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-left img, .logo-right img {
    max-height: 220px;
    max-width: 300px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo-left img:hover, .logo-right img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

.logo-center {
    flex: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-x {
    font-size: 80px;
    font-weight: 300;
    color: #64b5f6;
    text-shadow: 0 4px 20px rgba(100, 181, 246, 0.5);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 4px 20px rgba(100, 181, 246, 0.5);
    }
    to {
        text-shadow: 0 4px 30px rgba(100, 181, 246, 0.8);
    }
}

/* Partnership Discord Button */
.partnership-discord {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.3);
    border: 1px solid rgba(88, 101, 242, 0.5);
}

.discord-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(88, 101, 242, 0.4);
    background: linear-gradient(135deg, #4752c4 0%, #3c45a5 100%);
    color: #ffffff;
}

.discord-button svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.discord-button:hover svg {
    transform: scale(1.1);
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 20px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #64b5f6;
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: #b0bec5;
    font-size: 14px;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.footer-disclaimer {
    max-width: 600px;
    font-size: 12px !important;
    opacity: 0.7;
}

.footer-certifications {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cert-badge {
    background: rgba(100, 181, 246, 0.1);
    color: #64b5f6;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(100, 181, 246, 0.2);
}

/* Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(100, 181, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(63, 81, 181, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-left {
    animation-delay: 0.2s;
}

.hero-center {
    animation-delay: 0.4s;
}

.hero-right {
    animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-left {
        display: none;
    }
    
    .hero-right {
        padding: 0;
    }
    
    .product-info {
        text-align: center;
    }
    
    .product-actions-right {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-right {
        gap: 20px;
    }
    
    .brand-name h2 {
        font-size: 20px;
    }
    
    .product-title {
        font-size: 36px;
    }
    
    .product-subtitle {
        font-size: 18px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 120px;
    }
    
    .product-actions-right {
        flex-direction: column;
        align-items: center;
    }
    
    .apps-title {
        font-size: 48px;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .app-card {
        padding: 24px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .footer-certifications {
        justify-content: center;
    }
    
    .partnership-title {
        font-size: 36px;
    }
    
    .partnership-subtitle {
        font-size: 24px;
    }
    
    .partnership-logos {
        flex-direction: column;
        gap: 40px;
    }
    
    .logo-x {
        font-size: 60px;
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main {
        padding: 40px 0;
    }
    
    .product-title {
        font-size: 28px;
    }
    
    .brand-name h2 {
        font-size: 18px;
    }
    
    .header-icons {
        gap: 15px;
    }
    
    .apps-title {
        font-size: 36px;
    }
    
    .apps-subtitle {
        font-size: 16px;
    }
    
    .language-switcher {
        gap: 2px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .cert-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .partnership-title {
        font-size: 28px;
    }
    
    .partnership-subtitle {
        font-size: 20px;
        margin-bottom: 40px;
    }
    
    .partnership-logos {
        gap: 30px;
    }
    
    .logo-left img, .logo-right img {
        max-height: 80px;
        max-width: 150px;
    }
    
    .logo-x {
        font-size: 40px;
    }
}