/* ---------------------------------------------------
   GLOBAL PAGE STYLING (LIGHT THEME)
--------------------------------------------------- */

body {
    background: #414141;
    font-family: "Courier New", monospace;
    color: #222;
    margin: 0;
    padding: 0;
}

a {
    color: #0000aa;
    text-decoration: none;
}

h1, h2 {
    text-align: center;
}

.box {
    border: 2px solid #000;
    padding: 15px;
    background: #fff;
    max-width: 700px;
    margin: 20px auto;
}

/* ---------------------------------------------------
   HEADER + NAVIGATION
--------------------------------------------------- */

header {
    background-color: #3f3f3f;
    padding: 15px 30px;
    border-bottom: 1px solid #444;
    text-align: center;
}

footer {
  background-color:#ff9900 ;
  padding: 30px;
  text-align: center;
}

header h1 {
    color: #ff9900;
    margin: 0;
}

nav {
    text-align: center;
    margin-top: 10px;
}

nav a {
    color: #000;
    margin: 0 20px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

nav a:hover {
    color: #ff0000;
}

/* Buttons used in navigation and forms */
.nav-button,
.login-container button,
.register-container button,
.new-topic button,
.advent-button {
    background: linear-gradient(to right, #ff9900, #ffb84d);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.nav-button:hover,
.login-container button:hover,
.register-container button:hover,
.new-topic button:hover,
.advent-button:hover {
    transform: scale(1.05);
    background-color: #ff0000;
}

.advent-button img {
    width: 25px;
    height: 25px;
}

/* ---------------------------------------------------
   TORRENT PAGE (DARK THEME)
--------------------------------------------------- */

.torrent-page {
    background: #111;
    color: #eee;
    padding: 20px;
    border-radius: 10px;
    max-width: 700px;
    margin: 20px auto;
}

/* Torrent item container */
.torrent-page .item {
    display: flex;
    align-items: center;
    background: #1b1b1b;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: 0.2s;
}

.torrent-page .item:hover {
    background: #242424;
}

/* Thumbnail */
.torrent-page .item img {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 15px;
}

/* Title */
.torrent-page #smallnaslov {
    margin: 0;
    padding: 0;
}

.torrent-page #smallnaslov a {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}

.torrent-page #smallnaslov a:hover {
    text-decoration: underline;
}

/* Torrent stats */
.torrent-page .info p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #aaa;
}

/*download button */

/* From Uiverse.io by cssbuttons-io */ 
button {
  padding: 1.3em 3em;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}

button:hover {
  background-color: #23c483;
  box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
  color: #fff;
  transform: translateY(-7px);
}

button:active {
  transform: translateY(-1px);
}









#filmi-lin {
  color:#3a7afe;
}

#series-lin {
  color:#ff0000
}

#game-lin {
  color:#ff9900;
}

#mus-line {
  color:yellowgreen;
}



iframe {
  display: block;
  margin: 40px auto;
  border: none;
  max-width: 90%;
}











.left-news {
    position: absolute;
    right: 0;
    top: 100px; /* adjust as needed */
    width: 300px; /* set your desired width */
}


/* NEWS BOX STYLE */
.news-box {
    background: #e6e6e6;
    border: 2px solid #000;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.4);
}

.news-box h3 {
    margin-top: 0;
    color: #ff9900;
}

.news-box p {
    font-size: 14px;
    color: #222;
}


