@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

body {
    background-color: #f9f9f9;
    overflow-x: hidden;
    position: relative;
    color: #333;
}

/* Scroll Bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e63936;
    border-radius: 10px;
    transition: all 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #0066ff;
}

/* Timer Animation */
.timer-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(to bottom, #e63936, #f9f9f9);
    opacity: 0.8;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Analog Saat */
.timer-circle {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(16, 33, 90, 0.5);
    animation: float 8s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.timer-circle::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #e63936;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 10px rgba(230, 57, 54, 0.7);
}

.timer-circle::after {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.timer-tick {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    animation: rotate 60s linear infinite;
}

/* Saat rakamları */
.timer-circle::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #e63936;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 10px rgba(230, 57, 54, 0.7);
}

/* 12 rakamı */
.timer-circle::after {
    content: '12';
    position: absolute;
    top: 15px;
    font-size: 16px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
}

/* 3 rakamı */
.timer-circle .hour-3 {
    content: '3';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
}

/* 6 rakamı */
.timer-circle .hour-6 {
    content: '6';
    position: absolute;
    bottom: 15px;
    font-size: 16px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
}

/* 9 rakamı */
.timer-circle .hour-9 {
    content: '9';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
}

/* Akrep */
.timer-hand {
    position: absolute;
    top: calc(15% + 90px);
    right: calc(10% + 90px);
    width: 6px;
    height: 50px;
    background: #e63936;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(45deg);
    border-radius: 5px 5px 0 0;
    box-shadow: 0 0 10px rgba(230, 57, 54, 0.7);
    animation: hour-hand 12s linear infinite;
    z-index: 2;
}

/* Yelkovan */
.timer-minute-hand {
    position: absolute;
    top: calc(15% + 90px);
    right: calc(10% + 90px);
    width: 4px;
    height: 65px;
    background: rgba(255, 255, 255, 0.8);
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(180deg);
    border-radius: 5px 5px 0 0;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    animation: minute-hand 60s linear infinite;
    z-index: 3;
}

/* Saniye */
.timer-second-hand {
    position: absolute;
    top: calc(15% + 90px);
    right: calc(10% + 90px);
    width: 2px;
    height: 75px;
    background: rgba(230, 57, 54, 0.9);
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(90deg);
    border-radius: 5px 5px 0 0;
    animation: second-hand 60s steps(60) infinite;
    z-index: 4;
}

/* Kum Saati */
.hourglass {
    position: absolute;
    top: 30%;
    left: 15%;
    width: 100px;
    height: 160px;
    animation: float 10s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hourglass-top {
    position: absolute;
    top: 0;
    left: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: none;
    clip-path: polygon(0 0, 100% 0, 75% 100%, 25% 100%);
    box-shadow: inset 0 5px 10px rgba(255, 255, 255, 0.2);
}

.hourglass-middle {
    position: absolute;
    top: 60px;
    left: 37.5px;
    width: 25px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    z-index: 1;
    transform: scaleX(0.6);
}

.hourglass-middle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    filter: blur(2px);
}

.hourglass-middle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    filter: blur(2px);
}

.hourglass-bottom {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: none;
    clip-path: polygon(25% 0, 75% 0, 100% 100%, 0 100%);
    box-shadow: inset 0 -5px 10px rgba(255, 255, 255, 0.2);
}

.hourglass-sand {
    position: absolute;
    top: 60px;
    left: 37.5px;
    width: 25px;
    height: 0;
    background: rgba(255, 217, 102, 0.8);
    animation: sand-flow 10s linear infinite;
    box-shadow: 0 0 15px rgba(255, 217, 102, 0.6);
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 150% 100%, -50% 100%);
    transform: scaleX(0.6);
}

/* Üst kısımdaki kum */
.hourglass-top-sand {
    position: absolute;
    top: 10px;
    left: 25px;
    width: 50px;
    height: 40px;
    background: rgba(255, 217, 102, 0.8);
    clip-path: polygon(0 0, 100% 0, 75% 100%, 25% 100%);
    animation: top-sand 10s linear infinite;
    box-shadow: 0 0 15px rgba(255, 217, 102, 0.6);
    z-index: 0;
}

/* Kum tanecikleri */
.hourglass::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 50px;
    width: 2px;
    height: 2px;
    background: rgba(255, 217, 102, 0.9);
    border-radius: 50%;
    animation: sand-particle 2s linear infinite;
    box-shadow: 0 0 5px rgba(255, 217, 102, 0.8);
    z-index: 3;
}

.hourglass::after {
    content: '';
    position: absolute;
    top: 75px;
    left: 47px;
    width: 3px;
    height: 3px;
    background: rgba(255, 217, 102, 0.9);
    border-radius: 50%;
    animation: sand-particle 1.5s linear infinite 0.5s;
    box-shadow: 0 0 5px rgba(255, 217, 102, 0.8);
    z-index: 3;
}

/* Ekstra kum tanecikleri */
.hourglass-middle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: rgba(255, 217, 102, 0.9);
    border-radius: 50%;
    filter: blur(1px);
    animation: sand-particle-middle 1s linear infinite;
    box-shadow: 0 0 5px rgba(255, 217, 102, 0.8);
}

@keyframes sand-particle-middle {
    0% {
        top: -5px;
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    100% {
        top: 40px;
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
}

@keyframes sand-flow {
    0% {
        top: 60px;
        height: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        top: 60px;
        height: 40px;
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100px;
        height: 0;
        opacity: 0;
    }
}

@keyframes top-sand {
    0% {
        height: 40px;
        opacity: 1;
    }
    50% {
        height: 20px;
        opacity: 0.8;
    }
    100% {
        height: 5px;
        opacity: 0.5;
    }
}

@keyframes sand-particle {
    0% {
        top: 60px;
        opacity: 1;
    }
    100% {
        top: 100px;
        opacity: 0;
    }
}

@keyframes rotate-y {
    0% {
        transform: rotateY(0deg) translateY(0);
    }
    50% {
        transform: rotateY(180deg) translateY(-20px);
    }
    100% {
        transform: rotateY(360deg) translateY(0);
    }
}

/* Klasik Duvar Saati */
.wall-clock {
    position: absolute;
    top: 20%;
    left: 70%;
    width: 120px;
    height: 120px;
    animation: float 12s ease-in-out infinite 2s;
}

.clock-face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(16, 33, 90, 0.3);
}

.clock-hour-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 30px;
    background: rgba(255, 255, 255, 0.8);
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(45deg);
    border-radius: 2px;
    animation: clock-hour 43200s linear infinite;
}

.clock-minute-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(90deg);
    border-radius: 2px;
    animation: clock-minute 3600s linear infinite;
}

.clock-second-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 45px;
    background: #e63936;
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(0deg);
    border-radius: 1px;
    animation: clock-second 60s linear infinite;
}

.clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #e63936;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 5px rgba(230, 57, 54, 0.5);
}

@keyframes clock-hour {
    0% { transform: translate(-50%, -100%) rotate(0deg); }
    100% { transform: translate(-50%, -100%) rotate(360deg); }
}

@keyframes clock-minute {
    0% { transform: translate(-50%, -100%) rotate(0deg); }
    100% { transform: translate(-50%, -100%) rotate(360deg); }
}

@keyframes clock-second {
    0% { transform: translate(-50%, -100%) rotate(0deg); }
    100% { transform: translate(-50%, -100%) rotate(360deg); }
}

/* Dijital Saat */
.digital-clock {
    position: absolute;
    bottom: 25%;
    right: 20%;
    width: 100px;
    height: 40px;
    background: rgba(16, 33, 90, 0.6);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(16, 33, 90, 0.4);
    animation: float 9s ease-in-out infinite 1s;
}

.digital-display {
    font-family: 'Digital-7', monospace;
    color: rgba(255, 107, 107, 0.9);
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
    animation: blink 2s infinite;
}

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

/* Alarm Saati */
.alarm-clock {
    position: absolute;
    bottom: 30%;
    left: 30%;
    width: 80px;
    height: 100px;
    animation: float 11s ease-in-out infinite 3s, alarm-shake 0.5s infinite alternate 5s;
}

.alarm-body {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 107, 0.3);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
}

.alarm-bells {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px 10px 0 0;
}

@keyframes alarm-shake {
    0% { transform: rotate(-5deg) translateY(0); }
    100% { transform: rotate(5deg) translateY(-5px); }
}

/* Cep Saati */
.pocket-watch {
    position: absolute;
    top: 60%;
    left: 20%;
    width: 70px;
    height: 120px;
    animation: float 10s ease-in-out infinite 4s, swing 5s ease-in-out infinite;
}

.pocket-watch-chain {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: rgba(255, 217, 102, 0.6);
    box-shadow: 0 0 5px rgba(255, 217, 102, 0.4);
}

.pocket-watch-body {
    position: absolute;
    top: 40px;
    left: 0;
    width: 70px;
    height: 70px;
    background: rgba(255, 217, 102, 0.3);
    border-radius: 50%;
    border: 3px solid rgba(255, 217, 102, 0.5);
    box-shadow: 0 0 15px rgba(255, 217, 102, 0.3);
}

.pocket-watch-face {
    position: absolute;
    top: 50px;
    left: 10px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

@keyframes swing {
    0% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
    100% { transform: rotate(-10deg); }
}



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

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes hour-hand {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes minute-hand {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes second-hand {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes glow {
    0% {
        opacity: 0.5;
        box-shadow: 0 0 5px #ffdd59;
    }
    100% {
        opacity: 0.9;
        box-shadow: 0 0 20px #ffdd59;
    }
}

/* Container and Logo */
.container {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 30px;
    border: 2px solid #ff6b6b;
    padding: 20px;
    border-radius: 30px;
    background: transparent;
    box-shadow: 0 10px 30px rgba(16, 33, 90, 0.1);
    position: relative;
    overflow: hidden;
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    z-index: 2;
}

.bg-text {
    font-size: 60px;
    font-weight: 800;
    color: #e63936;
    position: relative;
    z-index: 2;
}

/* Description */
.description {
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
    padding: 0 20px;
}

.description span {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

/* App Showcase */
.app-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 40px;
}

.showcase-content {
    flex: 1;
}

.showcase-content h2 {
    font-size: 32px;
    color: #e63936;
    margin-bottom: 20px;
}

.showcase-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    color: #e63936;
    font-size: 20px;
}

.showcase-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #333;
    border-radius: 40px;
    padding: 15px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid #555;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timer-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e63936, #ff8f87);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

.timer-circle-ui {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.timer-text {
    font-size: 42px;
    font-weight: 700;
    color: white;
    position: absolute;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    left: 50%;
    transform: translate(-50%, -50%);
}

.timer-controls {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

.control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.play::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid white;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
}

.pause::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 16px;
    background: white;
    top: 50%;
    left: 44%;
    transform: translate(-50%, -50%);
    box-shadow: 8px 0 0 white;
}

.reset::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-right-color: transparent;
}

/* Mouse Scroll Indicator */
.middle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #e63936;
    border-radius: 20px;
    display: inline-block;
    position: relative;
    box-shadow: 0 0 10px rgba(230, 57, 54, 0.5);
}

.mouse::before {
    content: '';
    width: 6px;
    height: 6px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e63936;
    border-radius: 50%;
    opacity: 1;
    animation: wheel 2s infinite;
    box-shadow: 0 0 5px rgba(230, 57, 54, 0.8);
}

@keyframes wheel {
    to {
        opacity: 0;
        top: 30px;
    }
}

/* Key Features */
.key-features {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.key-features header, 
.wheel-section h2,
.timers-section header,
.screenImage header,
.testimonials header {
    font-size: 36px;
    color: #e63936;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.key-features header::after,
.wheel-section h2::after,
.timers-section header::after,
.screenImage header::after,
.testimonials header::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: #e63936;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #f0f5ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 30px;
    color: #e63936;
}

.feature-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Wheel of Fortune Section */
.wheel-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 80px auto;
    padding: 30px 20px;
    background: #f0f5ff;
    border-radius: 20px;
    gap: 40px;
}

.wheel-content {
    flex: 1;
}

.wheel-content h2 {
    font-size: 32px;
    color: #e63936;
    margin-bottom: 20px;
    text-align: left;
}

.wheel-content h2::after {
    left: 0;
    transform: none;
}

.wheel-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.wheel-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wheel-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wheel-feature i {
    color: #e63936;
    font-size: 20px;
}

.wheel-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fortune-wheel {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: white;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 3s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    overflow: hidden;
    border: 5px solid #e63936;
}

.fortune-wheel.spin {
    transform: rotate(1800deg);
}

.fortune-wheel .wheel-pointer {
    transform: translateX(-50%) rotate(0deg);
    transform-origin: bottom center;
}

.wheel-center {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #e63936;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-center i {
    color: white;
    font-size: 24px;
}

.wheel-segment {
    position: absolute;
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.segment-content {
    position: absolute;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 14px;
}

.segment-value {
    font-size: 16px;
    margin-bottom: 2px;
}

.segment-text {
    font-size: 12px;
}

.seg1 {
    background: #e63936;
    transform: rotate(0deg);
    width: 150px;
    height: 150px;
}
.seg1 .segment-content {
    transform: rotate(299deg) translate(0, 0);
}

.seg2 {
    background: #f05545;
    transform: rotate(60deg);
}
.seg2 .segment-content {
    transform: rotate(299deg) translate(32px, 0);
}

.seg3 {
    background: #fa7268;
    transform: rotate(120deg);
}
.seg3 .segment-content {
    transform: rotate(299deg) translate(32px, 0);
}

.seg4 {
    background: #ff8f87;
    transform: rotate(180deg);
}
.seg4 .segment-content {
    transform: rotate(299deg) translate(32px, 0);
}

.seg5 {
    background: #ffb3ae;
    transform: rotate(240deg);
}
.seg5 .segment-content {
    transform: rotate(299deg) translate(32px, 0);
}

.seg6 {
    background: #ffd0cc;
    transform: rotate(300deg);
}
.seg6 .segment-content {
    transform: rotate(299deg) translate(32px, 0);
}

.wheel-pointer {
    position: relative;
    width: 30px;
    height: 50px;
    background: #e63936;
    top: -150px;
    left: 162px;
    transform: rotate(179deg);
    /* transform: translateX(-50%); */
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border: 2px solid white;
    pointer-events: none;
    border-top: none;
}

/* Customizable Timers */
.timers-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.timers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.timer-option {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.timer-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.timer-icon {
    width: 70px;
    height: 70px;
    background: #f0f5ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.timer-icon i {
    font-size: 30px;
    color: #e63936;
}

.timer-option h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.timer-option p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Download Section */
.download {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    animation: fadeIn 1.5s ease-in-out;
}

.store-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.googlePlay,
.appStore {
    transition: transform 0.3s ease;
}

.googlePlay:hover,
.appStore:hover {
    transform: scale(1.05);
}

.store-badge {
    height: 60px;
    width: auto;
    cursor: pointer;
}

.apkButton:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3DDC84; /* Android yeşili */
    z-index: -1;
}

.android {
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.apkButton:hover .android {
    width: 40px;
    height: 40px;
}

.apkButton span {
    transition: all 0.3s ease;
}

.apkButton:hover span {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

/* App Screenshots */
.screenImage {
    margin: 80px auto;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
}

.screen-shot-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.screen-shot-container img {
    height: 450px;
    max-width: 230px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.screen-shot-container img:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(16, 33, 90, 0.2);
}

/* Testimonials */
.testimonials {
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonial-card {
    min-width: 350px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    scroll-snap-align: start;
}

.quote {
    font-size: 30px;
    color: #e63936;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.user {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stars {
    color: #ffdd59;
    margin-bottom: 5px;
}

.user span {
    font-weight: 600;
    color: #333;
}

/* Footer */
.modern-footer {
    background: #ea615f;
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #ff6b6b, #ffdd59, #4cd964, #5ac8fa, #5856d6, #ff2d55);
}

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

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #fff;
    padding-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: background 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.link-group h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 10px;
}

.link-group a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.link-group a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-app-links {
    display: flex;
    gap: 15px;
}

.footer-app-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-app-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .app-showcase,
    .wheel-section {
        flex-direction: column;
    }
    
    .wheel-content h2 {
        text-align: center;
    }
    
    .wheel-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .container .bg-text {
        font-size: 40px;
    }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .feature-card,
    .timer-option {
        padding: 20px;
    }
    
    .fortune-wheel {
        width: 250px;
        height: 250px;
    }
    
    .seg1, .seg2, .seg3, .seg4, .seg5, .seg6 {
        border-width: 125px 40px 0;
    }

    .wheel-pointer {
        position: relative;
        width: 24px;
        height: 32px;
        background: #e63936;
        top: -96px;
        left: 111px;
        transform: rotate(179deg);
        /* transform: translateX(-50%); */
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        z-index: 10;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        border: 2px solid white;
        pointer-events: none;
        border-top: none;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
        .wheel-pointer {
        position: relative;
        width: 24px;
        height: 32px;
        background: #e63936;
        top: -96px;
        left: 111px;
        transform: rotate(179deg);
        /* transform: translateX(-50%); */
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        z-index: 10;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        border: 2px solid white;
        pointer-events: none;
        border-top: none;
    }
    .screen-shot-container img {
        height: auto;
        max-width: 100%;
    }
    
    .testimonial-card {
        min-width: 280px;
        padding: 20px;
    }
    
    .fortune-wheel {
        width: 200px;
        height: 200px;
    }
    
    .seg1, .seg2, .seg3, .seg4, .seg5, .seg6 {
        border-width: 100px 30px 0;
    }
}
