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

/* ========== BODY ========== */
body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    transition: background-color 0.8s ease;
}

body.day {
    background-color: #f5e6d3;
}

body.night {
    background-color: #1a1520;
}

/* ========== SWITCH ========== */
.switch-wrapper {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.theme-switch {
    --toggle-size: 22px;
    --container-width: 5.625em;
    --container-height: 2.5em;
    --container-radius: 6.25em;
    --container-light-bg: #3D7EAE;
    --container-night-bg: #1D1F2C;
    --circle-container-diameter: 3.375em;
    --sun-moon-diameter: 2.125em;
    --sun-bg: #ECCA2F;
    --moon-bg: #C4C9D1;
    --spot-color: #959DB1;
    --circle-container-offset: calc((var(--circle-container-diameter) - var(--container-height)) / 2 * -1);
    --stars-color: #fff;
    --clouds-color: #F3FDFF;
    --back-clouds-color: #AACADF;
    --transition: .5s cubic-bezier(0, -0.02, 0.4, 1.25);
    --circle-transition: .3s cubic-bezier(0, -0.02, 0.35, 1.17);
}

.theme-switch, .theme-switch *, .theme-switch *::before, .theme-switch *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: var(--toggle-size);
}

.theme-switch__container {
    width: var(--container-width);
    height: var(--container-height);
    background-color: var(--container-light-bg);
    border-radius: var(--container-radius);
    overflow: hidden;
    cursor: pointer;
    -webkit-box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
    box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    position: relative;
}

.theme-switch__container::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    -webkit-box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
    box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
    border-radius: var(--container-radius);
}

.theme-switch__checkbox {
    display: none;
}

.theme-switch__circle-container {
    width: var(--circle-container-diameter);
    height: var(--circle-container-diameter);
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: var(--circle-container-offset);
    top: var(--circle-container-offset);
    border-radius: var(--container-radius);
    -webkit-box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: var(--circle-transition);
    -o-transition: var(--circle-transition);
    transition: var(--circle-transition);
    pointer-events: none;
}

.theme-switch__sun-moon-container {
    pointer-events: auto;
    position: relative;
    z-index: 2;
    width: var(--sun-moon-diameter);
    height: var(--sun-moon-diameter);
    margin: auto;
    border-radius: var(--container-radius);
    background-color: var(--sun-bg);
    -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
    box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
    -webkit-filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
    overflow: hidden;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.theme-switch__moon {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    width: 100%;
    height: 100%;
    background-color: var(--moon-bg);
    border-radius: inherit;
    -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
    box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    position: relative;
}

.theme-switch__spot {
    position: absolute;
    top: 0.75em;
    left: 0.312em;
    width: 0.75em;
    height: 0.75em;
    border-radius: var(--container-radius);
    background-color: var(--spot-color);
    -webkit-box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
    box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
}

.theme-switch__spot:nth-of-type(2) {
    width: 0.375em;
    height: 0.375em;
    top: 0.937em;
    left: 1.375em;
}

.theme-switch__spot:nth-last-of-type(3) {
    width: 0.25em;
    height: 0.25em;
    top: 0.312em;
    left: 0.812em;
}

.theme-switch__clouds {
    width: 1.25em;
    height: 1.25em;
    background-color: var(--clouds-color);
    border-radius: var(--container-radius);
    position: absolute;
    bottom: -0.625em;
    left: 0.312em;
    -webkit-box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--back-clouds-color);
    box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--back-clouds-color);
    -webkit-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
    -o-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
    transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
}

.theme-switch__stars-container {
    position: absolute;
    color: var(--stars-color);
    top: -100%;
    left: 0.312em;
    width: 2.75em;
    height: auto;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

/* Checked State - Night Mode */
.theme-switch__checkbox:checked + .theme-switch__container {
    background-color: var(--container-night-bg);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__circle-container {
    left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter));
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__circle-container:hover {
    left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter) - 0.187em);
}

.theme-switch__circle-container:hover {
    left: calc(var(--circle-container-offset) + 0.187em);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__moon {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__clouds {
    bottom: -4.062em;
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__stars-container {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* ========== LENS FLARE EFEKTİ ========== */
.lens-flare {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.8s ease;
    background: radial-gradient(ellipse at 85% 15%, 
        rgba(255, 200, 100, 0.35) 0%, 
        rgba(255, 180, 80, 0.15) 20%, 
        rgba(255, 160, 60, 0.05) 40%, 
        transparent 60%);
}

/* Ana güneş ışığı - parlak */
.lens-flare::before {
    content: '';
    position: absolute;
    top: -50px;
    right: 50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, 
        rgba(255, 220, 150, 0.5) 0%, 
        rgba(255, 200, 100, 0.25) 30%, 
        transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
    animation: sun-glow 6s ease-in-out infinite;
}

/* Lens flare çizgisi */
.lens-flare::after {
    content: '';
    position: absolute;
    top: 5%;
    right: 10%;
    width: 500px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 220, 150, 0.4) 30%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 220, 150, 0.4) 70%, 
        transparent 100%);
    transform: rotate(-25deg);
    filter: blur(2px);
}

/* Ek ışık spotları */
.flare-spot {
    position: fixed;
    pointer-events: none;
    z-index: 100;
    border-radius: 50%;
    opacity: 1;
    transition: opacity 0.8s ease;
}

.flare-spot-1 {
    top: 25%;
    right: 30%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 200, 100, 0.4) 0%, transparent 70%);
    filter: blur(10px);
}

.flare-spot-2 {
    top: 40%;
    left: 35%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 180, 80, 0.3) 0%, transparent 70%);
    filter: blur(8px);
}

.flare-spot-3 {
    top: 55%;
    left: 25%;
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, rgba(255, 220, 120, 0.35) 0%, transparent 70%);
    filter: blur(5px);
}

@keyframes sun-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

/* Gece modunda güneş efekti gizle, ay efekti göster */
body.night .lens-flare {
    background: radial-gradient(ellipse at 15% 15%, 
        rgba(150, 180, 255, 0.2) 0%, 
        rgba(100, 150, 255, 0.08) 20%, 
        rgba(80, 120, 200, 0.03) 40%, 
        transparent 60%);
}

body.night .lens-flare::before {
    top: -50px;
    left: 50px;
    right: auto;
    background: radial-gradient(circle, 
        rgba(200, 220, 255, 0.3) 0%, 
        rgba(150, 180, 255, 0.15) 30%, 
        transparent 60%);
}

body.night .lens-flare::after {
    display: none;
}

body.night .flare-spot-1 {
    top: 15%;
    left: 10%;
    right: auto;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    filter: blur(1px);
    animation: star-twinkle 2s ease-in-out infinite;
}

body.night .flare-spot-2 {
    top: 25%;
    left: 25%;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    filter: blur(1px);
    animation: star-twinkle 3s ease-in-out infinite 0.5s;
}

body.night .flare-spot-3 {
    display: block;
    top: 10%;
    right: 20%;
    left: auto;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    filter: blur(1px);
    animation: star-twinkle 2.5s ease-in-out infinite 1s;
}

@keyframes star-twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* ========== CAROUSEL ========== */
.carousel {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 500px;
    perspective: 1000px;
}

.carousel-slide {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

/* Varsayılan: Küçük ve yanda */
.carousel-slide {
    width: 340px;
    height: 340px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0.7;
    z-index: 5;
}

/* Aktif: Büyük ve ortada */
.carousel-slide.active {
    width: 500px;
    height: 500px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
    opacity: 1;
    z-index: 10;
    cursor: default;
}

/* Pozisyonlar */
.carousel-slide.pos-left {
    transform: translateX(-480px) scale(0.9);
}

.carousel-slide.pos-center {
    transform: translateX(0) scale(1);
}

.carousel-slide.pos-right {
    transform: translateX(480px) scale(0.9);
}

.carousel-slide.pos-hidden-left {
    transform: translateX(-800px) scale(0.7);
    opacity: 0;
    pointer-events: none;
}

.carousel-slide.pos-hidden-right {
    transform: translateX(800px) scale(0.7);
    opacity: 0;
    pointer-events: none;
}

/* Hover efekti (sadece yanlardakiler için) */
.carousel-slide:not(.active):hover {
    opacity: 0.95;
    transform: translateX(-480px) scale(0.95);
}

.carousel-slide.pos-right:not(.active):hover {
    transform: translateX(480px) scale(0.95);
}

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 20;
}

.carousel-slide:not(.active):hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    color: #fff;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.photo, .portfolio-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.6s ease;
}

/* Hover Video */
.hover-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 15;
    pointer-events: none;
}

/* Gündüz modunda */
.video-day {
    display: block;
}

.video-night {
    display: none;
}

/* Gece modunda */
body.night .video-day {
    display: none;
}

body.night .video-night {
    display: block;
}

/* Hover durumunda video göster */
#mainSlide:hover .hover-video {
    opacity: 1;
}

#mainSlide:hover .photo {
    opacity: 0;
}

/* Mobil touch için */
#mainSlide.video-playing .hover-video {
    opacity: 1;
}

#mainSlide.video-playing .photo {
    opacity: 0;
}

/* Gündüz modunda */
.portfolio-day {
    opacity: 1;
}

.portfolio-night {
    opacity: 0;
}

/* Gece modunda */
body.night .portfolio-day {
    opacity: 0;
}

body.night .portfolio-night {
    opacity: 1;
}

body.night .carousel-slide {
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
}

/* Carousel Navigation Dots */
.carousel-nav {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.carousel-dot.active {
    background: #fff;
    transform: scale(1.2);
}

body.day .carousel-dot {
    background: rgba(0, 0, 0, 0.3);
}

body.day .carousel-dot:hover {
    background: rgba(0, 0, 0, 0.5);
}

body.day .carousel-dot.active {
    background: #333;
}


/* Responsive */
@media (max-width: 1400px) {
    .carousel-slide {
        width: 280px;
        height: 280px;
    }
    
    .carousel-slide.active {
        width: 450px;
        height: 450px;
    }
    
    .carousel-slide.pos-left {
        transform: translateX(-420px) scale(0.9);
    }
    
    .carousel-slide.pos-right {
        transform: translateX(420px) scale(0.9);
    }
}

@media (max-width: 1200px) {
    .carousel-slide {
        width: 240px;
        height: 240px;
    }
    
    .carousel-slide.active {
        width: 400px;
        height: 400px;
    }
    
    .carousel-slide.pos-left {
        transform: translateX(-360px) scale(0.9);
    }
    
    .carousel-slide.pos-right {
        transform: translateX(360px) scale(0.9);
    }
}

@media (max-width: 900px) {
    .carousel-slide {
        width: 180px;
        height: 180px;
    }
    
    .carousel-slide.active {
        width: 320px;
        height: 320px;
    }
    
    .carousel-slide.pos-left {
        transform: translateX(-280px) scale(0.9);
    }
    
    .carousel-slide.pos-right {
        transform: translateX(280px) scale(0.9);
    }
    
    .carousel-nav {
        bottom: 200px;
    }
}

@media (max-width: 700px) {
    .carousel {
        top: 40%;
    }
    
    .carousel-slide:not(.active) {
        display: none;
    }
    
    .carousel-slide.active {
        width: 90vw;
        max-width: 450px;
        height: auto;
        aspect-ratio: 1;
    }
    
    .carousel-nav {
        bottom: auto;
        top: 72%;
    }
}

@media (max-width: 480px) {
    .carousel {
        top: 28%;
    }
    
    .carousel-slide.active {
        width: 70vw;
        max-width: 280px;
    }
    
    .carousel-nav {
        top: 55%;
    }
}

.photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Gündüz fotoğrafı */
.day-photo {
    background-image: url('first.jpg');
    z-index: 2;
    opacity: 1;
}

/* Gece fotoğrafı */
.night-photo {
    background-image: url('end.jpg');
    z-index: 1;
    opacity: 1;
}

/* Gece modunda */
body.night .day-photo {
    opacity: 0;
    transform: scale(1.02);
}

body.night .night-photo {
    z-index: 2;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .switch-wrapper {
        top: 30px;
    }
    
    .theme-switch {
        --toggle-size: 24px;
    }
}

@media (max-width: 480px) {
    .switch-wrapper {
        top: 20px;
    }
    
    .theme-switch {
        --toggle-size: 20px;
    }
}

/* ========== LOGOLAR ========== */
.logos-wrapper {
    position: fixed;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    z-index: 50;
}

.logos {
    width: 100%;
    height: auto;
    color: #212121;
    opacity: 0.6;
    transition: color 0.5s ease, opacity 0.5s ease;
}

body.night .logos {
    color: #a0a0a0;
    opacity: 0.4;
}

/* Desktop: Sadece tam SVG göster */
.logos-desktop {
    display: block;
}

.logos-mobile-row1,
.logos-mobile-row2 {
    display: none;
}

@media (max-width: 768px) {
    .logos-wrapper {
        bottom: 80px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    /* Desktop SVG gizle */
    .logos-desktop {
        display: none;
    }
    
    /* Mobil: İki satır göster */
    .logos-mobile-row1,
    .logos-mobile-row2 {
        display: block;
        width: 100%;
        height: auto;
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .logos-wrapper {
        bottom: 65px;
        gap: 14px;
    }
    
    .logos-mobile-row1,
    .logos-mobile-row2 {
        width: 100%;
        max-height: 70px;
    }
    
    .logos {
        opacity: 0.5;
    }
}

/* ========== CONTACT TRIGGER ========== */
.contact-trigger {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: #212121;
    cursor: pointer;
    padding: 12px 24px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 60;
}

.contact-trigger:hover {
    transform: translateX(-50%) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.contact-trigger:active {
    transform: translateX(-50%) scale(0.95);
}

body.night .contact-trigger {
    color: #e0e0e0;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

body.night .contact-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .contact-trigger {
        bottom: 20px;
        font-size: 12px;
        padding: 10px 24px;
    }
}

@media (max-width: 480px) {
    .contact-trigger {
        bottom: 15px;
        font-size: 11px;
        padding: 10px 20px;
    }
}
