/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff4757);
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 20s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 30%;
    animation-delay: -15s;
    animation-duration: 35s;
}

.shape-5 {
    width: 70px;
    height: 70px;
    top: 40%;
    left: 5%;
    animation-delay: -20s;
    animation-duration: 28s;
}

.shape-6 {
    width: 90px;
    height: 90px;
    top: 70%;
    right: 5%;
    animation-delay: -25s;
    animation-duration: 32s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

/* Main Content */
.main-content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Section */
.logo-section {
    margin-bottom: 60px;
}

.logo {
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
    }
    to {
        filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.8));
    }
}

.logo-image {
    max-width: 200px;
    height: auto;
    animation: logoBounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

@keyframes logoBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.brand-name {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 0;
    animation: taglineSlide 2s ease-out;
}

@keyframes taglineSlide {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Coming Soon Section */
.coming-soon-section {
    margin-bottom: 80px;
}

.coming-soon-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.title-word {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 2s ease-in-out infinite;
    margin: 0 10px;
}

.title-word:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes titlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.description {
    font-size: 20px;
    line-height: 1.6;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    animation: descriptionFade 1s ease-out 0.5s both;
}

@keyframes descriptionFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    animation: featuresSlide 1s ease-out 1s both;
}

@keyframes featuresSlide {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    animation: iconRotate 3s ease-in-out infinite;
}

@keyframes iconRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff6b35;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.5;
}

/* Subscription Section */
.subscription-section {
    margin-bottom: 60px;
    animation: subscriptionFade 1s ease-out 1.5s both;
}

@keyframes subscriptionFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subscription-section h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.email-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.email-form:focus-within {
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

#emailInput {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 25px;
    color: white;
    font-size: 16px;
    outline: none;
}

#emailInput::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border: none;
    border-radius: 45px;
    padding: 15px 30px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.subscribe-btn:hover::before {
    left: 100%;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.subscribe-btn:hover .btn-icon {
    transform: translateX(5px);
}

.subscription-note {
    color: #cccccc;
    font-size: 14px;
}

/* Social Section */
.social-section {
    margin-bottom: 60px;
    animation: socialFade 1s ease-out 2s both;
}

@keyframes socialFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    margin: 0 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.social-link:hover {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Countdown Section */
.countdown-section {
    animation: countdownFade 1s ease-out 2.5s both;
}

@keyframes countdownFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.countdown-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.time-unit {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 20px;
    min-width: 100px;
    transition: all 0.3s ease;
}

.time-unit:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.time-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    animation: numberPulse 1s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.time-label {
    font-size: 14px;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    width: 100%;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    animation: footerFade 1s ease-out 3s both;
    position: relative;
    z-index: 1;
}

@keyframes footerFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.copyright {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 10px;
    font-weight: 400;
}

.developer {
    font-size: 14px;
    color: #999999;
    margin: 0;
}

.pixelx {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pixelx:hover {
    background: linear-gradient(45deg, #f7931e, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
    animation-delay: 0.3s;
    border-top-color: #f7931e;
}

.spinner-ring:nth-child(3) {
    animation-delay: 0.6s;
    border-top-color: #ff4757;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Mobile First Responsive Design */

/* Extra Large Devices (1200px and up) */
@media (min-width: 1200px) {
    .container {
        padding: 40px;
    }
    
    .main-content {
        max-width: 1400px;
    }
    
    .logo-image {
        max-width: 250px;
    }
    
    .brand-name {
        font-size: 56px;
    }
    
    .coming-soon-title {
        font-size: 84px;
    }
    
    .description {
        font-size: 22px;
    }
    
    .features-section {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
}

/* Large Devices (992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        padding: 30px;
    }
    
    .logo-image {
        max-width: 220px;
    }
    
    .brand-name {
        font-size: 52px;
    }
    
    .coming-soon-title {
        font-size: 76px;
    }
    
    .features-section {
        grid-template-columns: repeat(4, 1fr);
        gap: 35px;
    }
}

/* Medium Devices (768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        padding: 25px;
    }
    
    .logo-image {
        max-width: 180px;
    }
    
    .brand-name {
        font-size: 44px;
    }
    
    .tagline {
        font-size: 22px;
    }
    
    .coming-soon-title {
        font-size: 64px;
    }
    
    .description {
        font-size: 20px;
    }
    
    .features-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .countdown-timer {
        gap: 20px;
    }
    
    .time-unit {
        min-width: 90px;
        padding: 18px;
    }
    
    .time-number {
        font-size: 32px;
    }
}

/* Small Devices (576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        padding: 20px;
    }
    
    .logo-image {
        max-width: 160px;
    }
    
    .brand-name {
        font-size: 38px;
    }
    
    .tagline {
        font-size: 20px;
    }
    
    .coming-soon-title {
        font-size: 52px;
    }
    
    .description {
        font-size: 18px;
        padding: 0 10px;
    }
    
    .features-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 15px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .email-form {
        flex-direction: column;
        border-radius: 25px;
        padding: 8px;
    }
    
    .subscribe-btn {
        border-radius: 20px;
        margin-top: 12px;
        padding: 18px 35px;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .time-unit {
        min-width: 80px;
        padding: 15px;
    }
    
    .time-number {
        font-size: 28px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin: 0 12px;
    }
}

/* Extra Small Devices (up to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 15px;
        min-height: 100vh;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .logo-section {
        margin-bottom: 40px;
    }
    
    .logo-image {
        max-width: 140px;
    }
    
    .brand-name {
        font-size: 32px;
        margin-bottom: 8px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .coming-soon-section {
        margin-bottom: 50px;
    }
    
    .coming-soon-title {
        font-size: 42px;
        margin-bottom: 20px;
    }
    
    .title-word {
        margin: 0 5px;
    }
    
    .description {
        font-size: 16px;
        line-height: 1.5;
        padding: 0 5px;
    }
    
    .features-section {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    .subscription-section {
        margin-bottom: 40px;
    }
    
    .subscription-section h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .email-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 6px;
        margin-bottom: 15px;
    }
    
    #emailInput {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .subscribe-btn {
        border-radius: 15px;
        margin-top: 10px;
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .subscription-note {
        font-size: 12px;
        padding: 0 10px;
    }
    
    .social-section {
        margin-bottom: 40px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin: 0 8px;
    }
    
    .countdown-section {
        margin-bottom: 30px;
    }
    
    .countdown-section h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .countdown-timer {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 12px 8px;
    }
    
    .time-number {
        font-size: 24px;
        margin-bottom: 3px;
    }
    
    .time-label {
        font-size: 11px;
    }
    
    .footer {
        padding: 25px 15px;
    }
    
    .copyright {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .developer {
        font-size: 11px;
    }
}

/* Extra Extra Small Devices (up to 375px) */
@media (max-width: 375px) {
    .container {
        padding: 10px;
    }
    
    .logo-image {
        max-width: 120px;
    }
    
    .brand-name {
        font-size: 28px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .coming-soon-title {
        font-size: 36px;
    }
    
    .description {
        font-size: 14px;
    }
    
    .feature-card {
        padding: 20px 12px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .feature-card h3 {
        font-size: 16px;
    }
    
    .feature-card p {
        font-size: 12px;
    }
    
    .subscription-section h3 {
        font-size: 20px;
    }
    
    .email-form {
        padding: 4px;
    }
    
    #emailInput {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .subscribe-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .countdown-timer {
        gap: 6px;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 10px 6px;
    }
    
    .time-number {
        font-size: 20px;
    }
    
    .time-label {
        font-size: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin: 0 6px;
    }
    
    .footer {
        padding: 20px 10px;
    }
    
    .copyright {
        font-size: 12px;
    }
    
    .developer {
        font-size: 10px;
    }
}

/* Landscape Mobile Devices */
@media (max-height: 500px) and (orientation: landscape) {
    .container {
        padding: 10px;
    }
    
    .logo-section {
        margin-bottom: 20px;
    }
    
    .logo-image {
        max-width: 100px;
    }
    
    .brand-name {
        font-size: 24px;
    }
    
    .tagline {
        font-size: 14px;
    }
    
    .coming-soon-section {
        margin-bottom: 20px;
    }
    
    .coming-soon-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .description {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .features-section {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .feature-card {
        padding: 15px 8px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .feature-card h3 {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .feature-card p {
        font-size: 10px;
    }
    
    .subscription-section {
        margin-bottom: 20px;
    }
    
    .subscription-section h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .email-form {
        flex-direction: row;
        padding: 4px;
    }
    
    .subscribe-btn {
        margin-top: 0;
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .countdown-timer {
        gap: 8px;
    }
    
    .time-unit {
        min-width: 50px;
        padding: 8px 4px;
    }
    
    .time-number {
        font-size: 16px;
    }
    
    .time-label {
        font-size: 8px;
    }
    
    .footer {
        padding: 15px 10px;
    }
    
    .copyright {
        font-size: 11px;
    }
    
    .developer {
        font-size: 9px;
    }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .subscribe-btn, .social-link, .feature-card {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better input handling on mobile */
    #emailInput {
        font-size: 16px; /* Prevents zoom on iOS */
        -webkit-appearance: none;
        border-radius: 0;
    }
    
    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent horizontal scroll */
    .container {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Better button spacing */
    .subscribe-btn {
        margin: 10px auto 0;
        display: block;
        width: 100%;
        max-width: 200px;
    }
    
    /* Improve text readability */
    .description, .subscription-note {
        line-height: 1.6;
    }
    
    /* Better feature card layout */
    .feature-card {
        margin: 0 auto;
        max-width: 300px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-shapes .shape {
        animation: none;
    }
    
    .logo-image {
        animation: none;
    }
    
    .title-word {
        animation: none;
    }
}
