@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Poppins:wght@400;500;600;700;800;900&display=swap');

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

body {
    height: 100vh;
    width: 100vw;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

/* Logo */
.logo {
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 100;
    font-size: 28px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: "Kaushan Script", sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Main container */
main {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Swiper */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Content */
.content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.content .image {
    height: 70%;
    width: 70%;
    margin-top: 100px;
    z-index: 5;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

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

.content .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Background shapes */
.yellow, .blue, .red, .black {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.5s ease;
}

.yellow, .blue, .red {
    left: 0;
    width: 40%;
    z-index: -1;
}

.yellow { background: #EFCA29; }
.blue { background: #00D2FA; }
.red { background: #972826; }

.black {
    right: 0;
    width: 60%;
    background: #1A1A15;
    z-index: -1;
}

/* Title */
.title {
    position: absolute;
    color: #fff;
    padding-bottom: 170px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.big {
    font-weight: 900;
    font-size: clamp(120px, 20vw, 280px);
    z-index: -1;
    position: relative;
    line-height: 0.9;
}

.big span {
    display: inline-block;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    92% { transform: translate(0); }
    93% { transform: translate(-2px, 1px); }
    94% { transform: translate(2px, -1px); }
    95% { transform: translate(-1px, 2px); }
}

.small {
    position: absolute;
    font-size: clamp(30px, 5vw, 60px);
    font-family: "Kaushan Script", sans-serif;
    top: 0;
    left: 10px;
    color: rgba(255, 255, 255, 0.9);
}

/* Social sidebar */
.social {
    position: absolute;
    bottom: 20px;
    left: 40px;
    z-index: 100;
    font-size: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social .bar {
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #fff, transparent);
    margin-bottom: 20px;
}

.social a {
    color: #fff;
    transform: rotate(-90deg);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.social a:hover {
    opacity: 1;
    transform: rotate(-90deg) scale(1.2);
}

/* Specifications */
.specs {
    position: absolute;
    bottom: 40px;
    left: 40%;
    color: #EFCA29;
    font-size: 16px;
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 20;
    gap: 30px;
    flex-wrap: wrap;
}

.specs span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.specs span b {
    font-size: 24px;
    display: block;
    font-weight: 800;
}

.specs button {
    padding: 12px 40px;
    border-radius: 50px;
    border: 2px solid #EFCA29;
    background: none;
    font-family: "Poppins", sans-serif;
    color: #EFCA29;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.specs button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #EFCA29;
    transition: all 0.3s ease;
    z-index: -1;
}

.specs button:hover {
    color: #1A1A15;
}

.specs button:hover::before {
    left: 0;
}

.specs button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.specs button:hover i {
    transform: translateX(5px);
}

/* Color variants */
.red-c {
    color: #d23f3d !important;
    border-color: #ca3634 !important;
}

.red-c button {
    border-color: #d23f3d;
    color: #d23f3d;
}

.red-c button::before {
    background: #d23f3d;
}

.blue-c {
    color: #00D2FA !important;
    border-color: #00D2FA !important;
}

.blue-c button {
    border-color: #00D2FA;
    color: #00D2FA;
}

.blue-c button::before {
    background: #00D2FA;
}

/* Menu button */
.menu {
    position: absolute;
    top: 20px;
    right: 40px;
    z-index: 100;
    font-size: 20px;
    color: #fff;
    height: 50px;
    width: 50px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu:hover {
    border-color: #fff;
    transform: scale(1.1);
}

/* Pagination */
.swiper-pagination {
    position: absolute;
    right: 40px !important;
    top: 50% !important;
    transform: translateY(-50%);
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
}

.swiper-pagination-bullet {
    width: 50px;
    height: 50px;
    background: none;
    color: #fff;
    font-family: "Poppins", sans-serif;
    opacity: 0.5;
    display: grid !important;
    place-content: center;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    font-size: 20px;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .big {
        font-size: 100px;
    }
    
    .specs {
        left: 20%;
        gap: 15px;
    }
    
    .specs button {
        padding: 8px 20px;
    }
    
    .content .image {
        width: 90%;
        height: 50%;
    }
}