* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #f97316, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #f97316;
}

/* Hero Section */
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grid" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23ffffff;stop-opacity:0.03"/><stop offset="100%" style="stop-color:%23ffffff;stop-opacity:0"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #f97316, #fb923c);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #111;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(249, 115, 22, 0.1),
        transparent
    );
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.3);
}

.service-card h3 {
    color: #f97316;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Tech Stack */
.tech-stack {
    padding: 6rem 0;
    background: #0a0a0a;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.tech-category {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.tech-category:hover {
    transform: scale(1.05);
    border-color: rgba(249, 115, 22, 0.3);
}

.tech-category h4 {
    color: #f97316;
    margin-bottom: 1rem;
}

.tech-list {
    color: #ccc;
    font-size: 0.9rem;
}

/* Approach Section */
.approach {
    padding: 6rem 0;
    background: #111;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-item {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #f97316;
    transition: all 0.3s;
}

.approach-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.approach-item h3 {
    color: #f97316;
    margin-bottom: 1rem;
}

.approach-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #0a0a0a;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #f97316;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #f97316;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Blog Styles - Enhanced for Arc Browser Compatibility */
.blog-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    background: -webkit-linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    background: -moz-linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    text-align: center;
    position: relative;
    z-index: 1;
}

.blog-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #f97316);
    background: -webkit-linear-gradient(45deg, #fff, #f97316);
    background: -moz-linear-gradient(45deg, #fff, #f97316);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    color: transparent;
    /* Fallback for browsers that don't support background-clip: text */
    background-attachment: fixed;
}

.blog-hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-listing {
    padding: 5rem 0;
    background: #111;
    min-height: 50vh;
    position: relative;
    z-index: 1;
}

.blog-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* Arc Browser Grid Fallback */
@supports (display: grid) {
    .blog-grid {
        display: grid;
        display: -ms-grid;
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        -ms-grid-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 3rem;
        margin-top: 2rem;
    }
}

.blog-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    background: -webkit-linear-gradient(135deg, #1a1a2e, #16213e);
    background: -moz-linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    max-width: 550px;
    min-width: 300px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 450px;
    flex: 1 1 450px;
    position: relative;
    will-change: transform;
}

.blog-card:hover {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.4);
    -webkit-box-shadow: 0 15px 40px rgba(249, 115, 22, 0.15);
    -moz-box-shadow: 0 15px 40px rgba(249, 115, 22, 0.15);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.15);
}

.blog-card-content {
    padding: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
}

.blog-card-header {
    margin-bottom: 1.5rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.blog-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-meta time {
    color: #999;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.blog-tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-tag {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
    padding: 0.4rem 0.9rem;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    font-size: 0.8rem;
    border: 1px solid rgba(249, 115, 22, 0.3);
    font-weight: 500;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.blog-tag:hover {
    background: rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.5);
}

.blog-card-title {
    margin: 0;
    line-height: 1.3;
}

.blog-card-title a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.4;
}

.blog-card-title a:hover {
    color: #f97316;
}

.blog-card-body {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.blog-excerpt {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.read-more {
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -ms-flex-item-align: start;
    align-self: flex-start;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.read-more:hover {
    color: #fb923c;
    border-bottom-color: #fb923c;
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    color: #ccc;
}

.no-posts h3 {
    color: #f97316;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Blog Post Styles - Enhanced for Arc Browser Compatibility */
.blog-post-header {
    padding: 2rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    background: -webkit-linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    background: -moz-linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    text-align: center;
    position: relative;
    z-index: 1;
}

.blog-post-meta {
    margin: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.blog-post-meta time {
    color: #999;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.blog-post-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #f97316);
    background: -webkit-linear-gradient(45deg, #fff, #f97316);
    background: -moz-linear-gradient(45deg, #fff, #f97316);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    color: transparent;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    /* Fallback for browsers that don't support background-clip: text */
    background-attachment: fixed;
}

.blog-post-excerpt {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.blog-post-content {
    padding: 4rem 0;
    background: #111;
    position: relative;
    z-index: 1;
}

.prose {
    max-width: 850px;
    margin: 0 auto;
    color: #ddd;
    line-height: 1.8;
    font-size: 1.1rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.prose h2 {
    color: #fff;
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    line-height: 1.3;
}

.prose h2:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.prose h3 {
    color: #f97316;
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.prose p {
    margin-bottom: 1.8rem;
    color: #ddd;
    line-height: 1.8;
}

.prose ul,
.prose ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
    color: #ddd;
}

.prose li {
    margin-bottom: 0.8rem;
    color: #ddd;
    line-height: 1.7;
}

.prose strong {
    color: #fff;
    font-weight: 600;
}

.prose code {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    font-size: 0.9em;
    font-weight: 500;
    border: 1px solid rgba(249, 115, 22, 0.2);
    font-family: "Consolas", "Monaco", "Courier New", monospace;
    white-space: nowrap;
}

.prose pre {
    background: #1a1a2e;
    padding: 2rem;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    overflow-x: auto;
    margin: 2.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    line-height: 1.5;
    -webkit-overflow-scrolling: touch;
}

.prose pre code {
    background: none;
    color: #ccc;
    padding: 0;
    border: none;
    font-size: 0.95rem;
    white-space: pre;
    line-height: 1.5;
    font-family: "Consolas", "Monaco", "Courier New", monospace;
}

.prose blockquote {
    border-left: 4px solid #f97316;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: #bbb;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    position: relative;
    line-height: 1.7;
}

.prose a {
    color: #f97316;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: 500;
}

.prose a:hover {
    border-bottom-color: #f97316;
    color: #fb923c;
}

.prose hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 3rem 0;
}

.blog-post-footer {
    padding: 3rem 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.back-to-blog {
    color: #f97316;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.back-to-blog:hover {
    color: #fb923c;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-share span {
    color: #999;
    font-size: 0.9rem;
}

.blog-share a {
    color: #f97316;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.blog-share a:hover {
    color: #fb923c;
}

/* Blog Responsive */
@media (max-width: 768px) {
    .blog-hero {
        padding: 6rem 0 3rem;
    }

    .blog-hero-content h1 {
        font-size: 2.2rem;
    }

    .blog-hero-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 1rem;
    }

    .blog-card {
        border-radius: 15px;
    }

    .blog-card-content {
        padding: 2rem;
    }

    .blog-card-title a {
        font-size: 1.3rem;
    }

    .blog-post-header {
        padding: 2rem 0;
    }

    .blog-post-title {
        font-size: 2.2rem;
        padding: 0 1rem;
    }

    .blog-post-excerpt {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .prose {
        padding: 0 1.5rem;
        font-size: 1rem;
    }

    .prose h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem;
    }

    .prose h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.75rem;
    }

    .prose pre {
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 8px;
    }

    .blog-navigation {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .blog-post-meta {
        gap: 1rem;
    }
}

/* Arc Browser Specific Fixes */
@supports (-webkit-appearance: none) {
    .blog-grid {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .blog-card {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 450px;
        flex: 1 1 450px;
        max-width: 550px;
        min-width: 300px;
    }
}

/* Enhanced Cross-Browser Support for Grid Layout */
@supports (display: grid) {
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
        gap: 3rem;
        margin-top: 2rem;
    }
}

/* Arc Browser Color Profile Fixes */
@media (color-gamut: p3) {
    .blog-hero-content h1,
    .blog-post-title {
        /* Use more compatible color values for wide gamut displays */
        background: linear-gradient(45deg, #ffffff, #f97316);
        background: -webkit-linear-gradient(45deg, #ffffff, #f97316);
    }

    .blog-tag {
        color: #f97316;
        background: rgba(249, 115, 22, 0.15);
        border-color: rgba(249, 115, 22, 0.3);
    }
}

/* Force Hardware Acceleration for Arc Browser */
.blog-card,
.blog-hero-content h1,
.blog-post-title {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    perspective: 1000;
}
