body {
    background-color: #0f172a;
    color: #f8fafc;
    background-image: 
        radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(139, 92, 246, 0.15) 0px, transparent 50%);
}

#vanta-bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

/* Premium Bento Card Base Style */
.bento-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.4) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem; /* 32px - daha yuvarlak */
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.6) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-6px) scale(1.01);
    box-shadow: 
        0 20px 60px -12px rgba(99, 102, 241, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

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

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.6), rgba(139, 92, 246, 0.6));
    border-radius: 10px;
    border: 2px solid rgba(15, 23, 42, 0.5);
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.8), rgba(139, 92, 246, 0.8));
}

/* Markdown Prose Styles */
.prose-custom {
    color: #cbd5e1;
}

.prose-custom p {
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.prose-custom p:last-child {
    margin-bottom: 0;
}

/* Linkler - Tıklanabilir ve görsel olarak belirgin */
.prose-custom a {
    color: #818cf8;
    text-decoration: underline;
    text-decoration-color: rgba(129, 140, 248, 0.4);
    text-underline-offset: 3px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.prose-custom a:hover {
    color: #a5b4fc;
    text-decoration-color: rgba(165, 180, 252, 0.8);
    text-decoration-thickness: 2px;
}

.prose-custom a:visited {
    color: #c084fc;
}

/* Başlıklar */
.prose-custom h1,
.prose-custom h2,
.prose-custom h3,
.prose-custom h4,
.prose-custom h5,
.prose-custom h6 {
    font-weight: 700;
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.prose-custom h1:first-child,
.prose-custom h2:first-child,
.prose-custom h3:first-child,
.prose-custom h4:first-child,
.prose-custom h5:first-child,
.prose-custom h6:first-child {
    margin-top: 0;
}

.prose-custom h1 { font-size: 1.875rem; }
.prose-custom h2 { font-size: 1.5rem; }
.prose-custom h3 { font-size: 1.25rem; }
.prose-custom h4 { font-size: 1.125rem; }
.prose-custom h5 { font-size: 1rem; }
.prose-custom h6 { font-size: 0.875rem; }

/* Listeler */
.prose-custom ul,
.prose-custom ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: #cbd5e1;
}

.prose-custom ul {
    list-style-type: disc;
}

.prose-custom ol {
    list-style-type: decimal;
}

.prose-custom li {
    margin: 0.5rem 0;
    line-height: 1.7;
}

.prose-custom ul ul,
.prose-custom ol ol,
.prose-custom ul ol,
.prose-custom ol ul {
    margin: 0.5rem 0;
}

/* Kod */
.prose-custom code {
    background-color: rgba(0, 0, 0, 0.3);
    color: #fbbf24;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
    font-family: 'Courier New', monospace;
}

.prose-custom pre {
    background-color: rgba(0, 0, 0, 0.4);
    color: #e2e8f0;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prose-custom pre code {
    background-color: transparent;
    color: inherit;
    padding: 0;
    border-radius: 0;
    font-size: inherit;
}

/* Blockquote */
.prose-custom blockquote {
    border-left: 4px solid #6366f1;
    padding-left: 1rem;
    margin: 1rem 0;
    color: #94a3b8;
    font-style: italic;
    background-color: rgba(99, 102, 241, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

/* Kalın ve İtalik */
.prose-custom strong {
    color: #ffffff;
    font-weight: 600;
}

.prose-custom em {
    font-style: italic;
    color: #cbd5e1;
}

/* Görsel */
.prose-custom img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

/* Yatay çizgi */
.prose-custom hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

/* Premium glow effects */
.premium-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.bento-card:hover .premium-glow {
    opacity: 0.6;
}

/* Enhanced tech stack badges */
.tech-badge {
    position: relative;
    overflow: hidden;
}

.tech-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tech-badge:hover::before {
    left: 100%;
}

/* Premium image overlay */
.project-image-overlay {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(15, 23, 42, 0.3) 50%,
        rgba(15, 23, 42, 0.8) 100%
    );
}

/* Smooth fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bento-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.bento-card:nth-child(1) { animation-delay: 0.1s; }
.bento-card:nth-child(2) { animation-delay: 0.2s; }
.bento-card:nth-child(3) { animation-delay: 0.3s; }
.bento-card:nth-child(4) { animation-delay: 0.4s; }
.bento-card:nth-child(5) { animation-delay: 0.5s; }
.bento-card:nth-child(6) { animation-delay: 0.6s; }

/* Flip Card Container */
.flip-card-container {
    overflow: visible;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.flip-card-content {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-radius: 1rem;
    position: relative;
}

/* Hover'da kartı çevir - Sadece masaüstünde */
@media (min-width: 768px) and (hover: hover) {
    .flip-card-container:hover .flip-card-content {
        transform: rotateY(180deg);
    }
}

/* Mobilde tıklama ile çevir */
@media (max-width: 767px) {
    .flip-card-container.flipped .flip-card-content {
        transform: rotateY(180deg);
    }
}

.flip-card-front,
.flip-card-back {
    background-color: rgba(15, 23, 42, 0.9);
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 1rem;
    overflow: hidden;
}

/* Arka Yüz - Animasyonlu Border Efekti */
.flip-card-back {
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    transform: rotateY(180deg);
}

.flip-card-back::before {
    position: absolute;
    content: ' ';
    display: block;
    width: 300px;
    height: 400%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.15), transparent);
    animation: flip-card-rotation 5000ms infinite linear;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    margin-top: -200%;
    margin-left: -150px;
    pointer-events: none;
    z-index: 0;
}

@keyframes flip-card-rotation {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

.flip-card-back-content {
    position: absolute;
    width: 99%;
    height: 99%;
    background-color: rgba(15, 23, 42, 0.95);
    border-radius: 1rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1.5rem;
    z-index: 1;
}

.flip-card-back-content .prose-custom {
    width: 100%;
    max-height: 100%;
    padding-right: 8px;
    overflow-y: auto;
}

.flip-card-back-content .prose-custom::-webkit-scrollbar {
    width: 6px;
}

.flip-card-back-content .prose-custom::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.flip-card-back-content .prose-custom::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.5);
    border-radius: 3px;
}

.flip-card-back-content .prose-custom::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.7);
}

/* Ön Yüz - Görsel ve İçerik */
.flip-card-front {
    transform: rotateY(0deg);
    color: white;
}

.flip-card-img-area {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.flip-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 0;
}

/* Animasyonlu Daireler */
.flip-card-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    filter: blur(20px);
    animation: flip-card-floating 2600ms infinite ease-in-out;
    z-index: 1;
    left: -20px;
    top: -20px;
}

#flip-circle-bottom {
    background-color: rgba(255, 255, 255, 0.08);
    left: 50px;
    top: 0px;
    width: 150px;
    height: 150px;
    animation-delay: -800ms;
}

#flip-circle-right {
    background-color: rgba(255, 255, 255, 0.06);
    right: 20px;
    top: -80px;
    width: 80px;
    height: 80px;
    animation-delay: -1800ms;
}

@keyframes flip-card-floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.flip-card-front-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.flip-card-badge {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    width: fit-content;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.flip-card-description {
    box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.6);
    width: 100%;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.flip-card-title-area {
    font-size: 0.875rem;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.flip-card-title-text {
    width: 90%;
    margin: 0;
    color: white;
    font-size: 1.125rem;
    line-height: 1.4;
}

.flip-card-title-text strong {
    color: white;
    font-weight: 700;
}

.flip-card-title-area svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Comet Card Inner (önceki stiller korunuyor) */
.comet-card .comet-card-inner {
    height: 100%;
    width: 100%;
}

.comet-card img {
    filter: contrast(0.75);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 6px 0px;
}

/* Telefon Kamera Modal */
.phone-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.phone-modal.active {
    opacity: 1;
    visibility: visible;
}

.phone-container {
    position: relative;
    width: 90vw;
    max-width: 375px;
    height: 85vh;
    max-height: 812px;
    background: #000;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.8) translateY(50px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.phone-modal.active .phone-container {
    transform: scale(1) translateY(0);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-camera-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.phone-camera-area.active {
    opacity: 1;
    transform: scale(1);
}

.camera-flash {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    opacity: 0;
    pointer-events: none;
}

.camera-flash.active {
    animation: flash 0.3s ease;
}

@keyframes flash {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.captured-photo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

.captured-photo.show {
    opacity: 1;
    transform: scale(1);
}

.phone-gallery-view {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a1a1a;
    display: none;
    flex-direction: column;
}

.phone-gallery-view.active {
    display: flex;
}

.gallery-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.gallery-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gallery-image img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-phone-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
    transition: background 0.2s ease;
}

.close-phone-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Yeni Müşteri Kartı - Işıltılı Efektler */
.sparkle-card {
    position: relative;
    overflow: hidden;
}

.sparkle-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: sparkle 3s infinite;
    pointer-events: none;
}

.sparkle-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.top-secret-card.phone-transform {
    animation: phoneReveal 2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transform-style: preserve-3d;
}

@keyframes phoneReveal {
    0% {
        transform: translateY(0) scale(1) rotateY(0deg) rotateX(0deg);
        border-radius: 2rem;
    }
    20% {
        transform: translateY(-20px) scale(1.05) rotateY(45deg) rotateX(-10deg);
    }
    40% {
        transform: translateY(-40px) scale(1.1) rotateY(90deg) rotateX(-20deg);
        border-radius: 2.5rem;
    }
    60% {
        transform: translateY(-30px) scale(1.05) rotateY(180deg) rotateX(-10deg);
        border-radius: 3rem;
    }
    80% {
        transform: translateY(-20px) scale(1.02) rotateY(270deg) rotateX(-5deg);
    }
    100% {
        transform: translateY(0) scale(1) rotateY(360deg) rotateX(0deg);
        border-radius: 3rem;
    }
}

.phone-flash-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
}

.phone-flash-overlay.flash {
    animation: phoneFlash 0.4s ease;
}

@keyframes phoneFlash {
    0% { opacity: 0; }
    50% { opacity: 0.9; }
    100% { opacity: 0; }
}

.phone-screen-reveal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border-radius: 3rem;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    z-index: 999;
    overflow: hidden;
}

.phone-screen-reveal.active {
    animation: screenReveal 0.8s ease 0.5s forwards;
}

@keyframes screenReveal {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.phone-svg-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.phone-svg-container img#phone-svg {
    width: 100%;
    max-width: 310px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 5;
}

/* Scratch Card */
#js-container {
    border: 3px solid #fbbf24;
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    border-radius: 15px;
    overflow: hidden;
}

#js-canvas {
    position: absolute;
    top: 0;
    left: 0;
    cursor: grab;
}

#js-canvas:active {
    cursor: grabbing;
}

.scratch-form {
    padding: 20px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scratch-form h1 {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
    letter-spacing: 0.1em;
    margin: 0;
}

/* Kar Yağışı Stilleri */
.snow {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9997;
    overflow: hidden;
}

.flake {
    position: absolute;
    border-radius: 50%;
    background-image: 
        linear-gradient(180deg, rgba(255,255,255,0) 30%, #ffffff 50%, #ffffff 60%, rgba(255,255,255,0) 60%),
        linear-gradient(90deg, rgba(255,255,255,0) 30%, #ffffff 50%, #ffffff 60%, rgba(255,255,255,0) 60%),
        linear-gradient(45deg, rgba(255,255,255,0) 33%, #ffffff 53%, #ffffff 57%, rgba(255,255,255,0) 65%),
        linear-gradient(135deg, rgba(255,255,255,0) 33%, #ffffff 53%, #ffffff 57%, rgba(255,255,255,0) 65%);
    transform: translateY(0) rotateX(0) rotateY(0);
}

@keyframes flakes {
    100% {
        transform: translateY(1000px) rotateX(50deg) rotateY(50deg);
        opacity: 0;
    }
}

/* Kardan Adam Widget Stilleri */
.snowman-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 160px;
    z-index: 9999;
    pointer-events: none;
}

.snowman-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
    animation: gentle-bounce 3s ease-in-out infinite;
}

@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.eye-blink {
    animation: blink 4s infinite;
}

@keyframes blink {
    0%, 48%, 52%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Mobil için kardan adam boyutu */
@media (max-width: 768px) {
    .snowman-widget {
        width: 80px;
        height: 110px;
        bottom: 15px;
        right: 15px;
    }
}

