/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background: #0a0a0a;
    overflow-x: hidden;
}

a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

nav a {
    margin: 0 25px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #a29bfe;
    transform: translateY(-2px);
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 8px;
    margin-left: 30px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.lang-btn:hover {
    background: rgba(108, 92, 231, 0.3);
    border-color: rgba(108, 92, 231, 0.5);
    color: #a29bfe;
}

.lang-btn.active {
    background: rgba(108, 92, 231, 0.4);
    border-color: rgba(108, 92, 231, 0.6);
    color: #a29bfe;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../pictures/background.jpg') center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.6) 0%,
        rgba(26, 26, 26, 0.4) 40%,
        rgba(10, 10, 10, 0.8) 70%,
        rgba(10, 10, 10, 0.95) 85%,
        rgba(10, 10, 10, 1) 100%
    );
    z-index: 1;
}

.hero h1 {
    position: relative;
    z-index: 2;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #a29bfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(162, 155, 254, 0.3);
    animation: slideInUp 1s ease-out;
    letter-spacing: 3px;
}

.hero p {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    animation: slideInUp 1s ease-out 0.3s both;
    text-transform: uppercase;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.3; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Removed gray background from even sections */

/* Smooth fade transition from hero to first section */
#about {
    position: relative;
}

#about::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 1) 0%,
        rgba(10, 10, 10, 0.95) 30%,
        rgba(10, 10, 10, 0.8) 60%,
        rgba(10, 10, 10, 0) 100%
    );
    pointer-events: none;
    z-index: 0;
}

#about > * {
    position: relative;
    z-index: 1;
}

h2 {
    text-align: center;
    margin-bottom: 100px;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #a29bfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 20px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    border-radius: 2px;
}

/* MailIMG Section */
#mailimg {
    padding-top: 120px;
}

.mailimg-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

.mailimg-content-second {
    margin-top: 60px;
}

.mailimg-content-second {
    grid-template-columns: 2fr 1fr;
}

.mailimg-content-second .mailimg-image {
    order: 2;
}

.mailimg-content-second .mailimg-text {
    order: 1;
}

.mailimg-image {
    text-align: center;
    position: relative;
}

.mailimg-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.mailimg-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(108, 92, 231, 0.4);
    border-color: rgba(108, 92, 231, 0.5);
}

.mailimg-text {
    display: flex;
    align-items: center;
}

.mailimg-text p {
    text-align: left;
    line-height: 2;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 0;
}

/* About Section */
#about {
    padding-top: 120px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

.about-content-second {
    margin-top: 60px;
}

.about-content-second {
    grid-template-columns: 2fr 1fr;
}

.about-content-second .about-image {
    order: 2;
}

.about-content-second .about-text {
    order: 1;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.about-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(108, 92, 231, 0.4);
    border-color: rgba(108, 92, 231, 0.5);
}

.about-text {
    display: flex;
    align-items: center;
}

.about-text p {
    text-align: left;
    line-height: 2;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 0;
}

/* Gallery Section */
#gallery {
    padding-top: 120px;
}

.gallery-container {
    position: relative;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(108, 92, 231, 0.5) transparent;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.gallery::-webkit-scrollbar {
    height: 8px;
}

.gallery::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.gallery::-webkit-scrollbar-thumb {
    background: rgba(108, 92, 231, 0.5);
    border-radius: 10px;
}

.gallery::-webkit-scrollbar-thumb:hover {
    background: rgba(108, 92, 231, 0.7);
}

.gallery img {
    flex: 0 0 auto;
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid transparent;
    cursor: pointer;
}

.gallery img:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.4);
    border-color: #6c5ce7;
}

.gallery-scroll-btn {
    position: relative;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    flex-shrink: 0;
}

.gallery-scroll-btn:hover {
    background: rgba(108, 92, 231, 0.3);
    color: #a29bfe;
    transform: scale(1.1);
}

.gallery-scroll-btn:active {
    transform: scale(0.95);
}

.gallery-scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .gallery-container {
        gap: 10px;
    }

    .gallery-scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .gallery img {
        width: 280px;
        height: 280px;
    }

    .mailimg-image img {
	width: 90%;
    	height: auto;
    }
}

@media (max-width: 480px) {
    .gallery img {
        width: 250px;
        height: 250px;
    }
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    color: #a29bfe;
    background: rgba(162, 155, 254, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    user-select: none;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #a29bfe;
    background: rgba(162, 155, 254, 0.2);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 35px;
        width: 50px;
        height: 50px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-content img {
        max-height: 85vh;
    }
}

/* Social Media Section */
#social {
    padding-top: 120px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.social-group-spacer {
    grid-column: 1 / -1;
    height: 60px;
    width: 100%;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 15px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    animation: float 6s ease-in-out infinite;
}

.social-link:nth-child(1) { animation-delay: 0s; }
.social-link:nth-child(2) { animation-delay: 0.5s; }
.social-link:nth-child(3) { animation-delay: 1s; }
.social-link:nth-child(4) { animation-delay: 0.2s; }
.social-link:nth-child(5) { animation-delay: 0.7s; }
.social-link:nth-child(6) { animation-delay: 1.2s; }

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.social-link:hover::before {
    transform: scaleX(1);
}

.social-link:hover {
    transform: translateY(-15px) !important;
    border-color: rgba(108, 92, 231, 0.5);
    animation-play-state: paused;
}

.social-link svg,
.social-link img {
    width: 48px;
    height: 48px;
    transition: all 0.4s ease;
    object-fit: contain;
}

.social-link span {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

/* Instagram */
.social-link.instagram::before {
    background: linear-gradient(90deg, #833ab4, #fd1d1d, #fcb045);
}

.social-link.instagram:hover {
    box-shadow: 0 15px 40px rgba(131, 58, 180, 0.4);
    border-color: rgba(131, 58, 180, 0.5);
}

.social-link.instagram:hover svg {
    color: #833ab4;
    transform: scale(1.1);
}

/* TikTok */
.social-link.tiktok::before {
    background: linear-gradient(90deg, #000000, #ff0050);
}

.social-link.tiktok:hover {
    box-shadow: 0 15px 40px rgba(255, 0, 80, 0.4);
    border-color: rgba(255, 0, 80, 0.5);
}

.social-link.tiktok:hover svg {
    color: #ff0050;
    transform: scale(1.1);
}

/* Spotify */
.social-link.spotify::before {
    background: linear-gradient(90deg, #1db954, #1ed760);
}

.social-link.spotify:hover {
    box-shadow: 0 15px 40px rgba(29, 185, 84, 0.4);
    border-color: rgba(29, 185, 84, 0.5);
}

.social-link.spotify:hover svg {
    color: #1db954;
    transform: scale(1.1);
}

/* YouTube */
.social-link.youtube::before {
    background: linear-gradient(90deg, #ff0000, #ff4444);
}

.social-link.youtube:hover {
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
    border-color: rgba(255, 0, 0, 0.5);
}

.social-link.youtube:hover svg {
    color: #ff0000;
    transform: scale(1.1);
}

/* Facebook */
.social-link.facebook::before {
    background: linear-gradient(90deg, #1877f2, #42a5f5);
}

.social-link.facebook:hover {
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.4);
    border-color: rgba(24, 119, 242, 0.5);
}

.social-link.facebook:hover svg {
    color: #1877f2;
    transform: scale(1.1);
}

/* SoundCloud */
.social-link.soundcloud::before {
    background: linear-gradient(90deg, #ff5500, #ff7700);
}

.social-link.soundcloud:hover {
    box-shadow: 0 15px 40px rgba(255, 85, 0, 0.4);
    border-color: rgba(255, 85, 0, 0.5);
}

.social-link.soundcloud:hover svg,
.social-link.soundcloud:hover img {
    transform: scale(1.1);
}

/* Contact Section */
#contact {
    padding-top: 120px;
    padding-bottom: 120px;
}

#contact form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#contact .g-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

#contact .g-recaptcha > div {
    margin: 0 auto;
}

#contact input,
#contact textarea {
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#contact input::placeholder,
#contact textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#contact input:focus,
#contact textarea:focus {
    outline: none;
    border-color: #6c5ce7;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.2);
}

#contact textarea {
    resize: vertical;
    min-height: 120px;
}

#contact button {
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

#contact button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
    background: linear-gradient(135deg, #5f4fd4 0%, #8b7fd9 100%);
}

#contact button:active {
    transform: translateY(-1px);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer a {
    color: #a29bfe;
    margin: 0 10px;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #6c5ce7;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 15px 0;
    }

    nav a {
        margin: 0 10px;
        font-size: 0.85rem;
    }

    .language-selector {
        margin-left: 15px;
        gap: 5px;
    }

    .lang-btn {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 60px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .about-content-second {
        margin-top: 40px;
    }

    .about-text p {
        text-align: center;
        padding: 25px;
    }

    #contact form {
        padding: 25px;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .social-group-spacer {
        height: 40px;
    }

    .social-link.spotify {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    nav a {
        margin: 0 5px;
        font-size: 0.70rem;
	text-align: center;
    }

    .language-selector {
        margin-left: 10px;
        gap: 4px;
    }

    .lang-btn {
        padding: 3px 8px;
        font-size: 0.7rem;
    }
}

/* Notification Modal */
.notification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.notification-modal.show {
    display: flex !important;
    opacity: 1;
    pointer-events: auto;
}

.notification-content {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(108, 92, 231, 0.4);
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin: auto;
    overflow-y: auto;
}

.notification-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification-modal.success .notification-icon {
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.2) 0%, rgba(29, 185, 84, 0.1) 100%);
    color: #1db954;
    border: 3px solid rgba(29, 185, 84, 0.5);
}

.notification-modal.error .notification-icon {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2) 0%, rgba(255, 0, 0, 0.1) 100%);
    color: #ff4444;
    border: 3px solid rgba(255, 0, 0, 0.5);
}

.notification-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.notification-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.notification-close-btn {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.notification-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
    background: linear-gradient(135deg, #5f4fd4 0%, #8b7fd9 100%);
}

.notification-close-btn:active {
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .notification-content {
        padding: 30px 20px;
        max-width: 90%;
    }

    .notification-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .notification-content h3 {
        font-size: 1.5rem;
    }

    .notification-content p {
        font-size: 1rem;
    }
}
